
12-22-2005, 06:12 PM
|
|
|
Join Date: Dec 2005
Location: Germany
Posts: 70
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by calorie
When JPG thumbs are made, the PhotoPlog JPG Thumb Quality setting is used.
When images are then called for display in PhotoPlog's file.php file, the following is used to avoid double reduction:
Code:
@imagejpeg($photoplog_img_feed,'',100);
However, if you want, in PhotoPlog's file.php file, you can change the above line to the following to use the setting:
Code:
@imagejpeg($photoplog_img_feed,'',$vbulletin->options['photoplog_jpg_quality']);
|
Nice, it works perfect.. Please made it in next version same.
|