织梦后台上传图片裁剪之后图片被模糊

打开后台目录/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 -- 处理速度慢,需要重新采样,但清晰。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wsfzgy.html