从 URL 调整和压缩图像并上传到 S3
Resize and compress image from URL and upload to S3
我有一个功能,应该从外部获取图像 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
方法时代码失败。
我从 response.body link
得到的那种输出
我觉得你需要做两处改动,如下:
const body = await got(url).buffer();
和:
const data = await sharp(body)
.resize({ width: 512 })
.jpeg({ quality: 70 })
.toBuffer();
通过这些更改,您的代码对我有用。我从网上下载了一张随机图片,并成功上传到 S3。另外,请确保您拥有最新的 got 和 sharp 软件包。
我有一个功能,应该从外部获取图像 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
方法时代码失败。
我从 response.body link
得到的那种输出我觉得你需要做两处改动,如下:
const body = await got(url).buffer();
和:
const data = await sharp(body)
.resize({ width: 512 })
.jpeg({ quality: 70 })
.toBuffer();
通过这些更改,您的代码对我有用。我从网上下载了一张随机图片,并成功上传到 S3。另外,请确保您拥有最新的 got 和 sharp 软件包。