2012-05-30, 02:57:58
szmigielDESIGN Wrote:Did I miss anything or is I18N Gallery providing a lower quality thumbnail output (JPEG quality) by default? Is there a way to manually change it?
Yes, the thumbnails or reduced size versions of the images are always created as JPEG (quality 85), as it is sufficient for most use cases.
If you want to change this, you can change the following lines (61, 103) in plugins/i18n_gallery/browser/pic.php:
Code:
...
$outfile = substr($outfile, 0, strrpos($outfile,'.')) . '.jpg';
...
imagejpeg($dst, $thumbdir.$outfile, 85);
...