打开后台目录/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);
以后出现同样的事情的时候记住这样的规律:
1、imagecopyresized -- 处理速度快,但模糊;
2、imagecopyresampled -- 处理速度慢,需要重新采样,但清晰。