上传栏目缩略图,pbootcms模板 宽度变成1000像素
2024-09-20 01:01:11
解决方案:打开文件:config/config.php,大约42行。如下
// 上传配置 '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' ), |
将以上1000改为1920即可。
max_height是指图片的高度,如果您的图片高度超过此尺寸,请自行修改最大尺寸。