在ckediter 和 ckfinder中達到縮圖的功能



在ckediter中 要達到圖檔上傳需要搭配 ckfinder這個外掛模組來實現。
其實,在ckfinder中不只是提供上傳這麼簡單,他同時也可以達到縮圖的動作,只要在ckfinder的根目錄/底下找到
config.php這個檔案
找到這段
$config['Thumbnails'] = Array(
'url' => $baseUrl . '_thumbs',
'directory' => $baseDir . '_thumbs',
'enabled' => true,
'directAccess' => false,
'maxWidth' => 100,
'maxHeight' => 100,
'bmpSupported' => false,
'quality' => 80);
其中,'enabled' => true,就表示縮圖功能有被打開,這時候就要再來去看一下
$config['Images'] = Array(
'maxWidth' => 1000,
'maxHeight' => 1000,
'quality' => 100);
這三個屬性分別代表最大容許的寬、高、縮圖品質。只要在這邊去做細部調整就可以啦

相關文章:
html線上所見即得編輯器套件 懶人包

留言