Hi, thanks for taking time to read my question.
I am working on PIL and need to know if the image quality can be adjusted while resizing or thumbnailing an image. From what I have known is the default quality is set to 85. Can this parameter be tweaked during resizing?
I am currently using the following code:
image = Image.open(filename)
image.thumbnail((x, y), img.ANTIALIAS)
The ANTIALIAS
parameter presumably gives the best quality. I need to know if we can get more granularity on the quality option.
Thanks