我想使用锐利的格式上传文件;但是调整大小对toBuffer无效。
这是我的代码:
sharp(req.file.path)
.resize(20,20).toFormat('jpeg')
.toBuffer(function (err,info) {
})
但是,如果我与toFile一起使用,效果很好。
sharp(req.file.path)
.resize(20,20)
.toFile("ss.jpg",function (err,info) {
})