PbootCMS上傳圖片被壓縮怎麼解決

黄文Rex發表於2024-08-16

PbootCMS上傳圖片會被壓縮畫素,只需要開啟根目錄config資料夾下的config.php和core資料夾下的convention.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' 
), 

程式碼中的'max_width跟max_height引數調大即可,建議10000即可。 這樣就解決了上傳圖片被壓縮的問題。

相關文章