PbootCMS上传图片压缩了

PbootCMS

打开\config\config.php,找到

// 上传配置'upload' => array(    'format' => 'jpg,jpeg,png,gif,xls,xlsx,doc,docx,ppt,pptx,rar,zip,pdf,txt,mp4,avi,flv,rmvb,mp3,otf,ttf',    'max_width' => '1920',    'max_height' => ''),// 缩略图配置'ico' => array(    'max_width' => '1000',    'max_height' => '1000'),

根据自身的需求把上面的数值改大,例如缩略图尺寸1920px*2480px这种超长的,可以修改成

// 上传配置'upload' => array(    'format' => 'jpg,jpeg,png,gif,xls,xlsx,doc,docx,ppt,pptx,rar,zip,pdf,txt,mp4,avi,flv,rmvb,mp3,otf,ttf',    'max_width' => '1920',    'max_height' => ''),// 缩略图配置'ico' => array(    'max_width' => '1920',    'max_height' => '10000'),

也许您对下面的内容还感兴趣: