我在 node.js 中使用 sharp.js 进行图像处理
我的代码
sharp(path)
.toFormat('jpeg')
.toBuffer((err, data, info) => {
fs.writeFile(temp, buffer, { flag: 'w' }, function() {
response.sendFile(temp);
});
});
这里 fs 中的 temp 表示“路径” var temp= imageDir + request.params.id;
(http://localhost:2000/images/we.png)
将图像上传为 png 格式或任何其他格式
将该图像转换为
JPEG
使用.toFormat('jpeg')
并发送到缓冲区- 想将该图像从缓冲区保存到