节点以较低的质量保存图像

时间:2016-06-09 12:49:31

标签: node.js image-resizing

这段代码:

var img = req.body.img;
var data = img.replace(/^data:image\/\w+;base64,/, "");
var buf = new Buffer(data, 'base64');
var nomeFile = Date.now()+"-"+req.session.documentoAperto+".png"

fs.writeFile('/root/appsistMe/public/AppMeFile/Utenti/'+req.session.nome+'/'+req.session.documentoAperto+'/'+nomeFile, buf);

我保存客户端的img发送。 问题是保存的图像比客户端发送的图像重得多。 有办法减少保存图像的重量吗?

0 个答案:

没有答案