ノードのgmであるnode.jsを使用して2つの画像をマージしたい。実際、大きな画像の座標 x、y に小さな画像を 1 つ配置したいと考えています。
私はappend()で何か作業をしたことがありますが、最初の画像の上に2番目の画像を置くことはできません
これが追加の私の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);
}
})