我想编写PHP / ImageMagic脚本以生成给定图像的“阴影”。就像在这个例子中一样(在GFXeditor中手动完成):
original shadow
alt text http://uppix.net/d/a/f/dc82fce795fc4af20170080b09c9a.png ==> alt text http://uppix.net/8/9/9/b1e9df4b2858c40081771961e028d.png
注意:所有原始图像都将在白色背景上,如示例所示。
我查看了ImageMagic文档,但我还没有找到任何有用的东西。有谁知道它是否可以在PHP / ImageMagic中完成?如果是这样的话?
答案 0 :(得分:4)
将convert
与-threshold
选项一起使用?
Imagick::thresholdImage
?
我想知道它是不是像面具而不是阴影? In the context of IM, shadow 看起来像图像的模糊副本。
答案 1 :(得分:2)
尝试ImageMagick示例中的edge detection章节。