
04-15-2004, 11:03 AM
|
|
|
Join Date: Oct 2002
Location: In a fishbowl
Posts: 301
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by magnus
Increase Thumbnail Image Quality (v3.1.1 and older)
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. 
|
Yet another nice fix.  Makes quite a difference!
|