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'
    ),