0

我的应用需要大量不同尺寸的白色占位符 PNG,我无法手动创建。

因此,我为我构建了一个服务,使用pngjs. 这工作正常。现在我在想将结果缓存在磁盘上可能是个好主意,但我不知道如何重用我已经通过管道传输到服务器响应中的图像内容(因为我可能对管道缺乏正确的理解)。

我的代码如下所示:

app.get('/placeholder/:width/:height', function(req, res){

  var fileLocation = __dirname + '/static/img/placeholder/' + req.params.width + 'x' + req.params.height + '.png';

  fs.readFile(fileLocation, function(err, file){

    if (file){

      res.sendfile(fileLocation);

    } else {

      var png = new PNG({
        width: parseInt(req.params.width, 10),
        height: parseInt(req.params.height, 10),
        filterType: -1
      });

      // image creation going on..

      //now all I get working is either doing:
      png.pack().pipe(res);
      //or
      png.pack().pipe(fs.createWriteStream(fileLocation));

    }

  });

});

但我想做的是使用png.pack()'s 输出作为 req 的响应发送并同时写入磁盘。我尝试了一些类似的东西:

var output = png.pack();
output.pipe(fs.createWriteStream(fileLocation));

res.setHeader('Content-Type', 'image/png');
res.send(output, 'binary');

但它似乎无法正常工作。

4

1 回答 1

2

您可以通过管道传输到多个流!

var output = png.pack()
output.pipe(fs.createWriteStream(fileLocation))
res.setHeader('Content-Type', 'image/png')
output.pipe(res)
于 2013-11-11T09:26:33.280 回答