70
如何使用sips
,imagemagic
或其他工具通過命令行將圖像轉換爲黑白(灰度)?如何通過命令行將圖像轉換爲灰度?
如何使用sips
,imagemagic
或其他工具通過命令行將圖像轉換爲黑白(灰度)?如何通過命令行將圖像轉換爲灰度?
如果您已經安裝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
。
使用imagemagick
(convert
)的-monochrome
或-colorspace gray
選項之一。