打開后臺(tái)目錄/dede/imagecut.php文件
找到
imagecopyresized($thumb, $source, 0, 0, 0, 0 , $newwidth, $newheight, $imgw, $imgh);
把它給換成
imagecopyresampled($thumb, $source, 0, 0, 0, 0 , $newwidth, $newheight, $imgw, $imgh);
以后出現(xiàn)同樣的事情的時(shí)候記住這樣的規(guī)律:
1、imagecopyresized -- 處理速度快,但模糊;
2、imagecopyresampled -- 處理速度慢,需要重新采樣,但清晰。