Increase Thumbnail Image Quality (v3.1.1 and older)
Quote:
Originally Posted by Envy-UK
Have you found anything relating to the quality of the thumbnails?
|
Actually, yes.
In
vbgarage.php:
FIND:
PHP Code:
imagecopyresized($thumb['data'],$thumb['file'],0,0,0,0,$width,$thumb['height'],ImageSX($thumb['file']),ImageSY($thumb['file']));
REPLACE with:
PHP Code:
imagecopyresampled($thumb['data'],$thumb['file'],0,0,0,0,$width,$thumb['height'],ImageSX($thumb['file']),ImageSY($thumb['file']));
That should increase thumbnail quality quite a bit.