// 首先我们从 GD 手动创建水印图像
$stamp = imagecreatetruecolor(100,70);
imagefilledrectangle($stamp,99,69,0x0000FF);
imagefilledrectangle($stamp,9,90,60,0xFFFFFF);
imagestring($stamp,5,20,'libGD',0x0000FF);
imagestring($stamp,3,40,'(c) 2007-9',0x0000FF);
$stamp = imagecreatetruecolor(100,70);
imagefilledrectangle($stamp,99,69,0x0000FF);
imagefilledrectangle($stamp,9,90,60,0xFFFFFF);
imagestring($stamp,5,20,'libGD',0x0000FF);
imagestring($stamp,3,40,'(c) 2007-9',0x0000FF);
// 设置水印图像的位置和大小
$marge_right = 10;
$marge_bottom = 10;
$sx = imagesx($stamp);
$sy = imagesy($stamp);
// 以 50% 的透明度合并水印和图像
imagecopymerge($im,$stamp,imagesx($im) - $sx - $marge_right,imagesy($im) - $sy - $marge_bottom,imagesx($stamp),imagesy($stamp),50);
// 将图像保存到文件,并释放内存
imagepng($im,'photo_stamp.png');
imagedestroy($im);
?>
半透明水印:
本示例使用 来合并水印图像和原始图像。 我们可以控制水印的透明度,在本例中是 50% 的透明度。 在实际使用中, 使用半透明水印可以在不影响用户观看图像的前提下进行版权保护。
原文链接:https://www.f2er.com/php/16364.html