Imagemagick convert notes
January 12th, 2009
Helping myself remember how to do common things using imagemagick’s (excellent but many-optioned) convert utility.
convert -scale 10% x y
convert -type Grayscale x y
convert -monochrome x y
# invert colours
convert -negate in out
convert -rotate x y

Leave a Reply