如何使用GraphicsMagick来否定图片的alpha通道

时间:2015-05-20 00:09:12

标签: imagemagick graphicsmagick

我想用透明背景反转图像,即来自

enter image description here,透明背景

enter image description here,透明"我们"

在ImageMagick中,我们可以通过

执行此操作

convert 1cut.png -channel a -negate +channel 1cut_nega.png

http://www.imagemagick.org/discourse-server/viewtopic.php?t=18842

中所述

GraphicsMagick中的等效命令是什么?

如果我使用$ gm convert -channel opacity -negate +channel example/we.png output/we.png,我会得到一个白色"我们"而不是透明"我们"

1 个答案:

答案 0 :(得分:2)

我认为这就是你想要的:

gm convert 61I23.png -operator matte negate 1 result.png