图像水印不起作用

时间:2013-10-30 10:54:24

标签: php image watermark

我正在尝试为上传的图片添加水印。 不幸的是,我收到了这个错误:'

  

警告:imagecreatefromjpeg(upload / ##。jpg):无法打开流:否   

中的此类文件或目录

我正在使用php.net中的代码进行一些更改:

  // Load the stamp and the photo to apply the watermark to
$stamp = imagecreatefrompng('logo.png');
$im = imagecreatefromjpeg($image);

// Set the margins for the stamp and get the height/width of the stamp image
$marge_right = 10;
$marge_bottom = 10;
$sx = imagesx($stamp);
$sy = imagesy($stamp);

// Copy the stamp image onto our photo using the margin offsets and the photo 
// width to calculate positioning of the stamp. 
imagecopy($im, $stamp, imagesx($im) - $sx - $marge_right, imagesy($im) - $sy - $marge_bottom, 0, 0, imagesx($stamp), imagesy($stamp));

// Output and free memory
header('Content-type: image/png');
imagepng($im);
imagedestroy($im);
?>

2 个答案:

答案 0 :(得分:0)

您可以使用我创建的textPainter类来在图像上打印文本: https://github.com/alvarotrigo/PHP-Backend/tree/master/textPainter

Living demo

答案 1 :(得分:0)

我觉得你传递了错误的图像路径$im = imagecreatefromjpeg($image);。检查$ image的值并进行测试,将两个映像复制到同一目录中并运行脚本。