我正在寻找类似于imagemagick的'convert -alpha off'命令的功能,如何使用gm节点模块实现相同功能?我不知道使用他们的文档。
答案 0 :(得分:1)
使用 gm 节点模块,您可以通过以下方式使用-alpha
选项(尚未在documentation中使用):
gm('img.png')
.options({ imageMagick: true }) // enable ImageMagick
.alpha('Off')
.write("out.png", function (err) {
if (err) console.log(err)
})
使用现在过时的+matte
选项,您也可以达到相同的效果。
此选项将在图像上turn off透明通道。
gm('img.png')
.out("+matte")
.write("out.png", function (err) {
if (err) console.log(err)
})