I've been having trouble trying to get PIL to nicely downsample images. The goal, in this case, is for my website to automagically downsample->cache the original image file whenever a different size is required, thus removing the pain of maintaining multiple versions of the same image. However, I have not had any luck. I've tried:

image.thumbnail((width, height), Image.ANTIALIAS)
image.save(newSource)

and

image.resize((width, height), Image.ANTIALIAS).save(newSource)

and

ImageOps.fit(image, (width, height), Image.ANTIALIAS, (0, 0)).save(newSource)

and all of them seem to perform a nearest-neighbout downsample, rather than averaging over the pixels as it should Hence it turns images like

http://www.techcreation.sg/media/projects//software/Java%20Games/images/Tanks3D%20Full.png

to

http://www.techcreation.sg/media/temp/0x5780b20fe2fd0ed/Tanks3D.png

which isn't very nice. Has anyone else bumped into this issue?

link|improve this question

80% accept rate
feedback

1 Answer

up vote 3 down vote accepted

That image is an indexed-color (palette or P mode) image. There are a very limited number of colors to work with and there's not much chance that a pixel from the resized image will be in the palette, since it will need a lot of in-between colors. So it always uses nearest-neighbor mode when resizing; it's really the only way to keep the same palette.

This behavior is the same as in Adobe Photoshop.

You want to convert to RGB mode first and resize it, then go back to palette mode before saving, if desired. (Actually I would just save it in RGB mode, and then turn PNGCrush loose on the folder of resized images.)

link|improve this answer
How do you tell if the image is indexed colors? I know GIFs are always indexed, but I thought PNGs were just like jpegs with lossless compression, and thus used RGB like anyone else. – Li Haoyi Oct 29 '11 at 2:55
1  
PNG can be 8-bit indexed color or 24-bit RGB true color. The one you posted is indexed. The image's mode in PIL should be "P" in this case. – kindall Oct 29 '11 at 3:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.