ImageMagick Snippets
NB: The convert command is deprecated in IMv7, use “magick” instead of “convert” or “magick convert”
inspo sites:
Rotate a tiled image 45 degrees#
Better results with square images, of course. The 45
is the degree amount.
magick in.png -matte -virtual-pixel tile +distort ScaleRotateTranslate '1 1 45' out.png
Stack images vertically#
magick 1.jpg 2.jpg 3.jpg -gravity center -append out.jpg
Create a solid color image#
magick -size 100x100 "xc:#cccccc" out.png