我有四张256x256像素:a.jpg,b.jpg,c.jpg和d.jpg。我想将它们合并在一起以产生2x2马赛克图像。生成的图像也应为256x256像素。
像这样:
+---+---+
| a | b |
+---+---+
| c | d |
+---+---+
使用普通的GraphicsMagick和命令行,可以使用
完成gm convert -background black \
-page +0+0 a.jpg \
-page +256+0 b.jpg \
-page +0+256 c.jpg \
-page +256+256 d.jpg \
-minify \
-mosaic output.jpg
但问题是,如何使用GraphicsMagick within Node.js?
执行此操作gm('a.jpg')
.append('b.jpg')
.append('c.jpg')
.append('d.jpg')
.write('output.jpg', function (err) {})
// Produces 1x4 mosaic with dimensions 256x1024 px, not what I wanted
答案 0 :(得分:32)
找到解决方案!似乎gm
的公共API没有为我需要的东西提供任何正确的方法。解决方案是使用不那么公开的.in
方法,这样就可以插入自定义的GraphicsMagick参数。
以下代码包含四个256x256图像,在512x512画布上将它们合并为2x2网格,使用快速线性插值将大小减半为256x256,并将结果保存到output.jpg。
var gm = require('gm');
// a b c d -> ab
// cd
gm()
.in('-page', '+0+0') // Custom place for each of the images
.in('a.jpg')
.in('-page', '+256+0')
.in('b.jpg')
.in('-page', '+0+256')
.in('c.jpg')
.in('-page', '+256+256')
.in('d.jpg')
.minify() // Halves the size, 512x512 -> 256x256
.mosaic() // Merges the images as a matrix
.write('output.jpg', function (err) {
if (err) console.log(err);
});