PbootCMS模板上傳欄目縮圖變成1000畫素的寬度

黄文Rex發表於2024-11-27
  • 解決方法
    • 開啟檔案: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' => '1920', // 將1000改為1920
          'max_height' => '1000'
      ),

相關文章