How can I convert an image to grayscale via the command line?

cwd picture cwd · Oct 10, 2011 · Viewed 55.4k times · Source

How can I use sips, imagemagic, or another tool to convert an image to black and white (grayscale) via the command line?

Answer

mark picture mark · Oct 10, 2011

If you have imagemagick installed,

convert source.jpg -colorspace Gray destination.jpg (true grayscale only)
convert source.jpg -monochrome destination.jpg (true black and white)
convert source.jpg -separate destination.jpg (separate into gray channels)

If you don't care about losing the original file: mogrify -colorspace Gray file.