- 積分
- 33381
- 金幣
- 1389 個
- 社區(qū)幣
- 2000 元
管理員
- 貢獻
- 2074 點
- 金幣
- 1389 個
|
打開:static/js/mobile/buildfileupload.js
刪除下邊代碼,后臺和瀏覽器更新緩存即可- if(imgwidth/imgheight <= canvaswidth/canvasheight && imgheight >= canvasheight) {
- newheight = canvasheight;
- newwidth = Math.ceil(canvasheight/imgheight*imgwidth);
- } else if(imgwidth/imgheight > canvaswidth/canvasheight && imgwidth >= canvaswidth) {
- newwidth = canvaswidth;
- newheight = Math.ceil(canvaswidth/imgwidth*imgheight);
- }
復制代碼
注意,手機圖片像素大,GD庫可能無法處理導致上傳失敗,所以,可以考慮提高最大高度和寬度的限制,而不一定傳原圖,教程如下(未進行上邊的刪除的情況下)
打開:static/js/mobile/buildfileupload.js
找到
- var maxheight = 500;
- var maxwidth = 500;
復制代碼 調(diào)大數(shù)字
|
|