tags:

views:

725

answers:

3

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

+2  A: 

Use PIL's resize method manually:

image = image.resize(x, y, Image.ANTIALIAS)

Followed by the save method

quality_val = 90
image.save(filename, 'JPEG', quality=quality_val)

Take a look at the source for models.py from Photologue to see how they do it.

Dominic Rodger
Thanks, thats just exactly what I was looking for...Just an addition:The quality option is a kwarg so has to be passed as quality=quality
bigmac
@bigmac - thanks, edited in!
Dominic Rodger
Also note that if your original picture is `indexed`, in most cases it will increase the quality of the output if you convert it to `RGB` or `RGBA` before calling `.resize()`.
Attila Oláh
+6  A: 

ANTIALIAS is in no way comparable to the "85" quality level. The ANTIALIAS parameter tells the thumbnail method what algorithm to use for resampling pixels from one size to another. For example, if I have a 3x3 image that looks like this:

2 2 2
2 0 2
2 2 2

and I resize it to 2x2, one algorithm might give me:

2 2
2 2

because most of the pixels nearby are 2s, while another might give me:

1 1
1 1

in order to take into account the 0 in the middle. But you still haven't begun to deal with compression, and won't until you save the image. Which is to say that in thumbnailing, you aren't dealing with gradations of quality, but with discrete algorithms for resampling. So no, you can't get finer control here.

If you save to a format with lossy compression, that's the place to specify levels of quality.

jcdyer
+1, Excellent way to explain it
Nadia Alramli
That's a real good explaination. Cheers...
bigmac
Thanks all. Glad it was helpful
jcdyer
A: 

Don't confuse rescaling and compression.

For the best quality you have to use both. See the following code:

image = Image.open(filename)
image.thumbnail((x, y), img.ANTIALIAS)
image.save(filename, quality=100)

In this way I have very fine thumbs in my programs.

DenisKolodin