我想使用node.js和节点的gm合并2个图像。事实上,我想在较大的图像上将一个较小的图像放在坐标x,y上。
我喜欢使用append()但是我不能选择将第二张图片放在第一张图片之上
这是我追加的js代码。
gm('img/vector/test.svg').append('img/base/test.png').write('img/final/test.png', function(err, stdout, stderr, command){
if (err){
console.log('image conversion error!');
console.log(err);
console.log(command);
}else{
console.log('image converted with command :');
console.log(command);
}
})