04-04-26, 05:36 PM
(04-04-26, 05:30 PM)nnnjk كتب : اسف على التأخير
جربت الكود الاخير نقل الصوره من صحيفة المرصد ولم يختمها
استبدل دالة الختم فقط
PHP كود :
function AddWatermark($imagePath, $text) {
$data = @file_get_contents($imagePath);
if (!$data) return;
$img = @imagecreatefromstring($data);
if (!$img) {
$tmp = @imagecreate(800, 600);
if (!$tmp) return;
$bg = imagecolorallocate($tmp, 0, 0, 0);
imagefill($tmp, 0, 0, $bg);
imagejpeg($tmp, $imagePath, 90);
imagedestroy($tmp);
$img = @imagecreatefromjpeg($imagePath);
if (!$img) return;
}
$width = imagesx($img);
$height = imagesy($img);
$color = imagecolorallocatealpha($img, 255, 255, 255, 50);
$x = $width - 120;
$y = $height - 15;
imagestring($img, 3, $x, $y, $text, $color);
imagejpeg($img, $imagePath, 90);
imagedestroy($img);
}


![[صورة مرفقة: 177461173141861.gif]](https://up6.cc/2026/03/177461173141861.gif)