PbootCms上传图片变模糊、上传图片尺寸受限的解决方案(1)

COS、CDN
  • 场景复现:上传的图片被压缩,变得模糊。
  • 解决方法
    • 打开文件:config/config.php
    • 修改 max_width 和 max_height 的数值:
      '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' => '1000' ),
COS、CDN
热门