如何通过命令行将图像转换为灰度?

如何使用sipsimagemagic或其他工具通过命令行将图像转换为黑白(灰度)?

如果你安装了imagemagick

 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) 

如果你不在意丢失原始文件: mogrify -colorspace Gray file

imagemagickconvert )使用: -monochrome-colorspace gray选项之一。