Discuz! X3.4触屏版上传图片尺寸修改及图像质量增强教程

discuz教程
Discuz! X3.4的触屏版是应用的html5 canvas接口进行处理图片的。

我们要修改的文件位于:/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,/, '');

标签: