0

我在 php 中使用 Imagick 来显示图像后面的水印(图像),但不能。它显示在图像的前面

我的代码是:-

$watermark = new Imagick();
$watermark->readImage("watermark.png");  
$wWidth = $watermark->getImageWidth();
$wHeight = $watermark->getImageHeight();
$iWidth = $im->getImageWidth();
$iHeight = $im->getImageHeight();
 if ($iHeight < $wHeight || $iWidth < $wWidth) {
     $watermark->scaleImage($iWidth, $iHeight);
     $wWidth = $watermark->getImageWidth();
        $wHeight = $watermark->getImageHeight();
    }
    $x = ($iWidth - $wWidth) / 2;
    $y = ($iHeight - $wHeight) / 2;
$im->compositeImage($watermark,imagick::COMPOSITE_DEFAULT,$x,$y); 

必须做什么才能使水印(图像)显示在图像后面而不是图像前面。

4

1 回答 1

0

您实际上可能必须编辑水印图像本身以使其几乎完全透明。当图像混合时,没有“前面”或“后面”,更多的是重叠颜色的混合。

如果你让你的水印几乎不透明,那么它会在最终图像中非常微妙地显示出来。

于 2013-08-01T12:30:26.097 回答