我编写了一个简单的图像处理服务,它在来自 http 响应流的图像上使用节点 gm。如果我使用 nodejs 的默认传输编码:分块,一切正常。但是,一旦我尝试添加内容长度实现,nodejs 就会挂起响应,或者我得到内容长度不匹配错误。
这是相关代码的要点(由于示例,变量已被省略):
var image = gm(response);
// gm getter used to get origin properties of image
image.identify({bufferStream: true}, function(error, value){
this.setFormat(imageFormat)
.compress(compression)
.resize(width,height);
// instead of default transfer-encoding: chunked, calculate content-length
this.toBuffer(function(err, buffer){
console.log(buffer.length);
res.setHeader('Content-Length', buffer.length);
gm(buffer).stream(function (stError, stdout, stderr){
stdout.pipe(res);
});
});
});
这将吐出所需的图像和看起来正确的内容长度,但浏览器会挂起,表明存在一些不匹配或其他错误。我正在使用节点 gm 1.9.0。
我在 nodejs gm content-length implementation 上看到过类似的帖子,但我还没有看到有人发布这个确切的问题。
提前致谢。