图像魔法创建三角形

时间:2016-09-28 11:58:47

标签: image imagemagick imagick

如何使用image magick创建一个看起来像这样的三角形:

enter image description here

和这一个

enter image description here

我尝试了以下命令,但它无法正常工作,

convert -size 100x100 xc:black -fill blue -stroke black -draw "path 'M 25,60 L 25,10 L 70,10 L 20,55 Z' " output.png

enter image description here

1 个答案:

答案 0 :(得分:1)

像这样:

convert -size 100x100 xc:black -fill skyblue -stroke black -draw "path 'M 10,50 L 90,10 L 90,90 Z' " output.png

enter image description here

使用-flop创建另一个:

convert output.png -flop output2.png

enter image description here