Thank you for your donation!


Cloudsmith graciously provides open-source package management and distribution for our project.


Idea: Thumbnail Image Quality
#4
Hi,

If you know some Linux SSH try modifying the code block below for pixel ratio == 2 in the file /var/www/command/thmcache.php, then regenerate the thumbnail cache. If you find a combination of width and quality that improves your covers then post the settings.

$thm_w is the width of the thumbnail image
$thm_q is the jpeg quality factor which ranges from 0 (worst quality, smaller file) to 100 (best quality, biggest file). The default is the default IJG quality value (about 75).

The approach used in thmcache.php for higher resolution thumbnails is to find an image size and quality setting that produces an acceptable image while minimizing file size. The need to minimize file size is present because populating the Album Cover panel is an I-O intensive operation. Smaller files = faster performance.

Code:
if ($pixel_ratio == 2 && $hires_thm == 'Yes') {
    $thm_w = 200;
    $thm_q = 75;
}
elseif ($pixel_ratio >= 3 && $hires_thm == 'Yes') {
    $thm_w = 400;
    $thm_q = 50;
}
else {
    $thm_w = 100;
    $thm_q = 75;
}

-Tim
Enjoy the Music!
moodeaudio.org | Mastodon Feed | GitHub
Reply


Messages In This Thread
Thumbnail Image Quality - by christopherr - 11-03-2018, 03:41 PM
RE: Thumbnail Image Quality - by Tim Curtis - 11-03-2018, 04:15 PM
RE: Thumbnail Image Quality - by christopherr - 11-03-2018, 06:13 PM
RE: Thumbnail Image Quality - by Tim Curtis - 11-03-2018, 07:47 PM
RE: Thumbnail Image Quality - by christopherr - 11-04-2018, 01:47 AM
RE: Thumbnail Image Quality - by codiac - 11-15-2019, 09:48 AM
RE: Thumbnail Image Quality - by Tim Curtis - 11-04-2018, 02:08 AM
RE: Thumbnail Image Quality - by christopherr - 11-04-2018, 03:06 AM
RE: Thumbnail Image Quality - by Tim Curtis - 11-04-2018, 03:20 AM
RE: Thumbnail Image Quality - by christopherr - 11-04-2018, 04:31 PM
RE: Thumbnail Image Quality - by Tim Curtis - 11-04-2018, 04:57 PM
RE: Thumbnail Image Quality - by christopherr - 11-04-2018, 08:09 PM
RE: Thumbnail Image Quality - by Tim Curtis - 11-04-2018, 10:28 PM
RE: Thumbnail Image Quality - by christopherr - 11-05-2018, 04:04 PM
RE: Thumbnail Image Quality - by christopherr - 11-05-2018, 04:14 PM
RE: Thumbnail Image Quality - by TheOldPresbyope - 11-05-2018, 04:22 PM
RE: Thumbnail Image Quality - by christopherr - 11-05-2018, 04:16 PM
RE: Thumbnail Image Quality - by christopherr - 11-05-2018, 04:25 PM
RE: Thumbnail Image Quality - by TheOldPresbyope - 11-05-2018, 04:39 PM
RE: Thumbnail Image Quality - by Tim Curtis - 11-05-2018, 06:34 PM
RE: Thumbnail Image Quality - by swizzle - 11-05-2018, 07:55 PM
RE: Thumbnail Image Quality - by Tim Curtis - 11-05-2018, 08:27 PM
RE: Thumbnail Image Quality - by christopherr - 11-06-2018, 02:34 PM
RE: Thumbnail Image Quality - by BryceJ - 11-07-2018, 03:59 AM
RE: Thumbnail Image Quality - by swizzle - 11-07-2018, 09:27 PM
RE: Thumbnail Image Quality - by BryceJ - 11-07-2018, 11:48 PM
RE: Thumbnail Image Quality - by Tim Curtis - 11-07-2018, 11:56 PM
RE: Thumbnail Image Quality - by BryceJ - 11-08-2018, 12:36 AM
RE: Thumbnail Image Quality - by Tim Curtis - 11-08-2018, 01:10 AM
RE: Thumbnail Image Quality - by BryceJ - 11-08-2018, 02:06 AM
RE: Thumbnail Image Quality - by BryceJ - 11-08-2018, 02:56 AM
RE: Thumbnail Image Quality - by Tim Curtis - 11-08-2018, 03:08 AM
RE: Thumbnail Image Quality - by BryceJ - 11-08-2018, 03:46 AM
RE: Thumbnail Image Quality - by Tim Curtis - 11-08-2018, 02:55 PM
RE: Thumbnail Image Quality - by swizzle - 11-09-2018, 12:22 AM
RE: Thumbnail Image Quality - by BryceJ - 11-09-2018, 01:19 AM
RE: Thumbnail Image Quality - by codiac - 11-15-2019, 09:58 AM
RE: Thumbnail Image Quality - by Tim Curtis - 11-08-2018, 07:38 PM
RE: Thumbnail Image Quality - by Tim Curtis - 11-09-2018, 02:43 AM
RE: Thumbnail Image Quality - by BryceJ - 11-09-2018, 08:15 AM
RE: Thumbnail Image Quality - by Tim Curtis - 11-09-2018, 02:08 PM

Forum Jump: