剪贴簿.webp不转换图像Web格式

时间:2018-07-11 13:07:03

标签: node.js aws-lambda image-resizing webp sharp

我想将图像转换为scrap的webp格式。 我的代码是

return Sharp(file.Body)
            .resize(_crop.width)
            .quality(80)
            .webp()
            .toBuffer()
            .then(_buffer => {
                return { 
                    config: _crop,
                    buffer: _buffer
                }
            })

上传代码为

return  S3.putObject({
                Body: _cropFile.buffer,
                Bucket: dstBucket,
                ContentType: 'image/webp,
                Key: dstKey + fileName
            }).promise()   

但是我的图像仍然是jpg。我要在webp扩展程序中使用它们

0 个答案:

没有答案