我有一段代码在上传照片的右下角添加水印。但是,水印不会像我想要的那样根据上传的照片改变大小。我想按百分比计算它的比例,所以水印总是上传照片的 10% 并放在右下角。如何才能做到这一点?
这是我的代码:
// Load the stamp and the photo to apply the watermark to
$stamp = imagecreatefromgif('../images/watermark.gif');
$marge_right = 5;
$marge_bottom = 5;
$sx = imagesx($stamp);
$sy = imagesy($stamp);
$im = imagecreatefromjpeg($file_tmp)
imagecopymerge($im, $stamp, imagesx($im) - $sx - $marge_right,
imagesy($im) - $sy - $marge_bottom, 0, 0, imagesx($stamp), imagesy($stamp), 30);