我的背景图像不会是直的垂直形状,想想 3d 封面,它会有一些斜坡形状。我想将上面的图像与背景图像的坐标相匹配。有什么方法可以定义我的上图的top-left、top-right、bottom-left和bottom-right?
var fs = require('fs'),gm = require('gm').subClass({imageMagick:true});
gm('background.png')
.command('composite')
.in('-page', '0+0')
.in('front.png')
.write('output.png', function(err) {
if(!err) console.log("Written composite image.");
});