PbootCMS缩略图上传图片被截取变模糊的解决方法

  1. 打开 /config/config.php 文件,在第40行找到:
    // 缩略图配置
    'ico' => array(
        'max_width' => '2000',
        'max_height' => '1000'
    ),
  2. 调整 max_width 和 max_height 的数值,例如:
    'ico' => array(
        'max_width' => '1920',
        'max_height' => '1080'
    ),

     

posted @ 2024-12-19 14:35  黄文Rex  阅读(12)  评论(0)    收藏  举报