1

我正在使用 Node & Express & Sharp 来:

将图像下载为流 -> 转换为 webp -> 使用转换后的图像响应用户

这段代码完成了这项工作:

import express   from 'express';
import * as url  from 'url';
const sharp = require('sharp');
var request = require('request');

app.get('*', function (req, res1)
{
    let imgPath = url.resolve('http://localhost', req.originalUrl);

    request({
                url     : imgPath,
                encoding: null
            }, function (err, res, bodyBuffer)
            {
                sharp(bodyBuffer)
                    .webp({quality: 90})
                    .toBuffer()
                    .then((myBuffer) =>
                          {
                              res1.writeHead(200, {'Content-Type': 'image/webp'});
                              res1.end(myBuffer, 'binary');
                          }).catch(error=>console.log(error));;
            });

});

app.listen(app.get('port'), function ()
{
    console.log('app running on port', app.get('port'));
});

我必须说代码确实有效(提供了 webp 的图像),但是在提供图像后我确实得到了一个异常:

app running on port 5000
[Error: Input buffer contains unsupported image format]

问题:

为什么我会收到此错误,我该如何解决?

注意
我也尝试过这里建议的解决方案,但没有成功: Cannot pipe, not readable

4

0 回答 0