我有一个函数,应该从外部URL获取图像,用sharp优化它,然后将图像上传到S3。
但是我似乎不能很快地调整大小和压缩。
下面是我当前的代码:
const got = require('got');
const sharp = require('sharp');
const AWS = require('aws-sdk');
const s3 = new AWS.S3({
credentials,
});
async function uploadFile(url) {
// Get file
const response = await got(url, { responseType: 'buffer' });
// Resize, compress and convert image before upload
const { data, info } = await sharp(response.body)
.resize({ width: 512 })
.jpeg({ quality: 70 })
.toBuffer();
console.log('data:', data);
const uploadedFile = await s3
.upload({
Bucket: bucket,
Key: 'filename.jpg',
Body: data,
ContentType: 'image/jpeg',
})
.promise();
console.log('uploadedFile:', uploadedFile);
}
错误我得到:Input file is missing
调用sharp
方法时代码失败
我从响应中得到的输出类型。身体链接
我认为你需要做以下两点修改:
const body = await got(url).buffer();
:
const data = await sharp(body)
.resize({ width: 512 })
.jpeg({ quality: 70 })
.toBuffer();
有了这些修改,你的代码就可以为我工作了。我从网上随机下载了一张图片,并成功上传到S3。此外,请确保您有最新的get和sharp软件包。