手机触屏版上传图片质量加强
我们要修改的文件位于:/static/js/mobile/buildfileupload.js修改329和330行:
var maxheight = 500;
var maxwidth = 500;
修改为:
var maxheight = 1000;
var maxwidth = 3000;
修改第372行:
var newdataurl = canvas.toDataURL(s.files.type).replace(/data:.+;base64,/, '');
修改为:
var newdataurl = canvas.toDataURL(s.files.type,1.0).replace(/data:.+;base64,/, '');
————————————————
修改好之后,在后台工具里 清理缓存就可以了
页:
[1]