如何在一个流中合成多个图像

时间:2015-09-26 05:33:37

标签: node.js stream graphicsmagick compositing

我试图将多个图像合成为一个将作为响应传输的单个流。我在https://github.com/aheckmann/gm使用Node.js和GraphicsMagick for Node。

如果我将两个图像合成到一个流中,它可以正常工作,对于这个例子,它显示了预期的最终合成的两分之二/三分之一。 这是我的代码:

viewcontroller.m

这在Postman中很有用 Have a great day

但是当我尝试合成三张图像时,它并没有按照预期正确填充图片的底部。代码是这样的:

app.get('/call_2image_stream', function(req, res){

    res.writeHead(200, {'Content-Type' : 'image/png'});
    var path = (__dirname + '/test_folder/happy_right.png');
    var path2 = (__dirname + '/test_folder/happy_left.png');
    gm(path)
      .composite(path2)
      .stream('png')
      .pipe(res);
})

我无法弄清楚为什么输出是这样的: not having the best day anymore

1 个答案:

答案 0 :(得分:0)

在这里写出一个很好的答案:https://stackoverflow.com/a/20611669/4447761 向Ryan Wu喊道!

这是我的最终代码

app.get('/final_code', function(req, res){
    res.writeHead(200, {'Content-Type' : 'image/png'});
    gm()
     .in('-page', '+0+0')
     .in(__dirname + '/test_folder/happy_right.png')
     .in('-page', '+0+0') 
     .in(__dirname + '/test_folder/happy_left.png')
     .in('-page', '+0+0') 
     .in(__dirname + '/test_folder/happy_bottom.png')
     .mosaic()
     .stream('png')
     .pipe(res);
})

works!