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% {in} {out}
# convert to black and white
convert -type Grayscale {in} {out}
convert -monochrome {in} {out}
# invert colours
convert -negate in out
convert -rotate {in} {out}
# make the given colour (e.g. here white) transparent
convert -transparent white {in} {out}

Leave a Reply