如何使用GraphicsMagick对图片的alpha通道取反
How to use GraphicsMagick to negate the alpha channel of a picture
我想反转具有透明背景的图像,即来自
,透明背景
到
,透明"We"
在 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
,我得到的是白色 "We" 而不是透明的 "We"
我想这就是你想要的:
gm convert 61I23.png -operator matte negate 1 result.png
我想反转具有透明背景的图像,即来自
到
在 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
,我得到的是白色 "We" 而不是透明的 "We"
我想这就是你想要的:
gm convert 61I23.png -operator matte negate 1 result.png