我想使用 node.js 合并 2 个图像,一个 gm for node。事实上,我想将一个较小的图像放在一个较大图像上的坐标 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);
}
})