1. 程式人生 > >PHPCMS V9縮圖模糊解決方法

PHPCMS V9縮圖模糊解決方法

<span style="font-size:14px;">
</span>
檔案路徑:phpcms/libs/classes/image.class.php 114-115line


註釋:

<span style="color: rgb(51, 51, 51); font-family: 'Courier New', Courier, monospace; line-height: 22px; background-color: rgb(237, 234, 213);">else</span><br style="color: rgb(51, 51, 51); font-family: 'Courier New', Courier, monospace; line-height: 22px;" /><span style="color: rgb(51, 51, 51); font-family: 'Courier New', Courier, monospace; line-height: 22px; background-color: rgb(237, 234, 213);">   imagecopyresized($thumbimg, $srcimg, 0, 0, $psrc_x, $psrc_y, $width, $height,  $srcwidth, $srcheight);</span>

將123行

<span style="font-size:14px;">$imagefun($thumbimg, $filename);</span>


修改為:

<span style="font-size:14px;">$imagefun($thumbimg, $filename,100);</span>


注:100為質量值(1-100)

個人筆記