服务器中图像的自动水印加法器

时间:2017-05-13 10:39:28

标签: php html css

我的网站是vestock.tk 我是一名摄影师,并计划在我的网站上传我的照片。 但我想要一个代码,它会自动将照片粘贴到我在服务器上传的图像上。

我试过GOOGLE但我找不到解决方案。

我有一个我想要的透明bg图像。 Plz告诉我正确的方法。

由于

严厉的Bansal

1 个答案:

答案 0 :(得分:0)

<?php
$dest = imagecreatefrompng('water_mark.png');
$src = imagecreatefromjpeg('your_image.jpg');

imagealphablending($dest, false);
imagesavealpha($dest, true);

imagecopymerge($dest, $src, 10, 9, 0, 0, 181, 180, 100); //have to play with these numbers for it to work for you, etc.

header('Content-Type: image/png');
imagepng($dest);

imagedestroy($dest);
imagedestroy($src);
?>