我使用下面的代码来创建宝丽来效果,但它真的很分散注意力,周围没有任何透明效果。
<?php
/* Create the object */
$image = new Imagick('wood.png');
/* Set the opacity */
$image->polaroidImage(new ImagickDraw(), 25);
/* output the image */
header('Content-type: image/png');
echo $image;
?>
我得到像http://photoapp.biz/polaroid/test.php这样的结果
原始图像是http://photoapp.biz/polaroid/wood.png
会有什么问题?这发生在我尝试过的几乎所有 10 张图像中。
例子: