我想将图像转换为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扩展程序中使用它们