我正在使用graphicsmagick(按照说明,从技术上讲,它被归类为imagemagick)来创建两个图像的蒙太奇。如果我尝试获取尺寸,它将为我提供原始单个图像的尺寸,而不是蒙太奇。如何获得蒙太奇的大小?
const gm = require('gm').subClass({ imageMagick: true })
const image = gm(path1).montage(path2)
image.size((err, size) => {
// size here is only of one image, not montage???
})
从理论上讲,我可以自己查看每个图像的大小来自己计算它,但是我也使用.geometry()
并使用了一些不同的规则,这会很麻烦。