如何在bash / console中使用ImageMagick从图像中删除蓝色通道?

时间:2014-06-15 00:25:03

标签: image-processing imagemagick

如何在bash或Linux的控制台中使用ImageMagick从图像中删除蓝色通道?我无法理解ImageMagick的语法。

1 个答案:

答案 0 :(得分:2)

删除指定的频道会在Color Basics documentation的“归零颜色频道”部分中介绍。

# Evaluate
convert source.jpg -channel Blue -evaluate set 0 +channel out.jpg

...或

# FX zeroing
convert source.jpg -channel Blue -fx 0 +channel out.jpg

...或

# Separate & combine other channels
convert source.jpg -channel Red,Green -separate \
        -background black -combine +channel out.jpg