JJZolx wrote:
> When a previous developer reworked the code that did coverart thumbnail
> resizing, the thumbnails became slightly, but noticeably, lower in
> quality. It would be nice to have a performance pref to designate the
> quality level. No doubt there's a size penalty, and probably also a time
> penalty involved when increasing the quality metric, so keep the default
> level at its current setting.
This would probably be causing some loss in quality in smaller images
(S::Utils::GDResizer around line 270):
Code:
--------------------
# Don't use source artwork < 100, as this results in blurry
images
if ( !$args{original} || ($args{width} >= 100 && $args{height}
>= 100) ) {
$args{original} = $resized_ref;
}
--------------------
These lines would cause the resized to use the previously resized image
as the source for the next smaller icon. Eg. if the scanner pre-cached
150px versions, it would take that image instead of your 2000px version
to pre-cache the 50px icon.
In order to check whether you can get better quality you could change
the 100 in the condition to eg. 1000. Or remove the second part of the
condition after the ||.
Michael
http://www.herger.net/slim-plugins - MusicArtistInfo, MusicInfoSCR,
Smart Mix
------------------------------------------------------------------------
mherger's Profile: http://forums.slimdevices.com/member.php?userid=50
View this thread: http://forums.slimdevices.com/showthread.php?t=101248
_______________________________________________
beta mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/beta