我正在尝试与此处描述的相同http://www.imagemagick.org/Usage/advanced/#reflections
我在 Windows 上使用 imagemagick,我使用的命令是这样的 -
convert test3.jpg -alpha on -virtual-pixel transparent -clone 0 +distort Perspective "0,0,100,50 0,394,100,344 300,394,300,394 394,0,394,0" -clone 0 -channel A -evaluate multiply .35 +channel +distort Perspective "0,0,100,-50 0,394,100,344 300,394,300,394 394,0,394,0" -delete 0 +swap -background none -layers merge +filter -size "594x500^!" xc:none +swap -gravity North -geometry +0+5 -composite reflect_distort_new.jpg
实际图像是
我得到的结果是这样的 -
我想知道是否有人可以帮助我解决以下问题-
- 我想按照示例中的说明添加反射,但它没有出现在我的命令行中。我从 -clone 命令中删除了括号,因为它在 Windows 上给出错误。
- 如何删除那里添加的黑色背景?
- 由于生成的图像上有边缘,如何应用抗锯齿。