我很难使用graphicmagic从nodejs返回图像。浏览器挂在流上。
我已经引用了 NodeJS gm resize and pipe to response,但我仍然无法使其工作。
gm = require('gm');
app.get('/text', function (req, res)
{
gm(200, 400, "#ddff99f3")
.drawText(10, 50, "from scratch")
.stream('png', function (err, stdout, stderr) {
stdout.pipe(res);
});
});