我们要修改的文件位于:/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[0].type).replace(/data:.+;base64,/, '');
修改为:
var newdataurl = canvas.toDataURL(s.files[0].type,1.0).replace(/data:.+;base64,/, '');
原创文章,作者:yiyunying,如若转载,请注明出处:https://blog.yiyy.net/19.html
不错
完美解决
我来看看