Questions and postings pertaining to the development of ImageMagick, feature enhancements, and ImageMagick internals. ImageMagick source code and algorithms are discussed here. Usage questions which are too arcane for the normal user list should also be posted here.
when i convert a jpg file with thumbnail, the result quality setting resulting to fuzzy image, and if i set quality manually the result looks good.
so, i want to know how to get a suitable quality value when convert?
thanks.
remain is the image i test and how to reproduct it:
ImageMagick preserves the quality setting if it can. Normally that's appropriate, but when the image is severely downscaled as you have done, the low quality becomes noticeable. The fix is to do what you have done, namely specify a higher quality (90 should be enough; it's half the filesize and visually indistinguishable to me).
glennrp wrote:ImageMagick preserves the quality setting if it can. Normally that's appropriate, but when the image is severely downscaled as you have done, the low quality becomes noticeable. The fix is to do what you have done, namely specify a higher quality (90 should be enough; it's half the filesize and visually indistinguishable to me).
I use a larger quality value, and let the value in the range [origin, origin*sqrt(original_size/result_size)] when the image is downscaled. For my program call convert not myself and i want get more smaller images as it can. thank you.