如何在Imagick PHP中将水印放在右侧?

时间:2015-01-29 15:24:09

标签: php imagick

如何在底部右侧放置水印标签?我使用 Imagick php函数。

$image->compositeImage($watermark, imagick::COMPOSITE_OVER, 20, 20);

我需要改变什么样的参数?

1 个答案:

答案 0 :(得分:1)

修改

Full explenation

// 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);