如何在底部右侧放置水印标签?我使用 Imagick php函数。
$image->compositeImage($watermark, imagick::COMPOSITE_OVER, 20, 20);
我需要改变什么样的参数?
答案 0 :(得分:1)
修改强>
// Calculate coordinates of top left corner
// of the sprite inside of the image
// "- 10" stands for offset to image border
$left = $imageWidth - $spriteWidth - 10;
$top = $imageHeight - $spriteHeight - 10;
$image->compositeImage($sprite,
Imagick::COMPOSITE_DEFAULT,
$left, $top);