我已经安装了gm节点包,我需要能够复制图像的一部分。我不确定是否可以使用这个包来做。
在PHP中看起来我想要的功能是imagecopy
这与我到目前为止差不多:
var im = gm.subClass({imageMagick: true});
im(source)
.crop(coords.w, coords.h)
.write(projectRootServer + 'forrestregion.png', function(err){
if (err) return console.dir(arguments)
console.log(this.outname + ' created :: ' + arguments[3])
})
我认为.region函数可以完成这项工作,但它看起来不像。
有人可以建议解决这个问题吗?