0

我编写了一个简单的图像处理服务,它在来自 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 上看到过类似的帖子,但我还没有看到有人发布这个确切的问题。

提前致谢。

4

1 回答 1

0

我最终改变了我的方法。我没有使用 this.toBuffer(),而是使用 this.write(fileName, callback) 将新文件保存到磁盘,然后使用 fs.createReadStream(fileName) 读取它并将其传送到响应。就像是:

var filePath = './output/' + req.param('id') +'.' + imageFormat;
this.write(filePath, function (writeErr) {
  var stat = fs.statSync(filePath);                         
  res.writeHead(200, {
    'Content-Type': 'image/' + imageFormat,
    'Content-Length': stat.size
  });

  var readStream = fs.createReadStream(filePath);
  readStream.pipe(res);

  // async delete the file from filesystem
  ...
});

您最终会获得所有需要的标头,包括返回给客户端的新内容长度。

于 2013-07-31T19:22:37.877 回答