I'm building a photo gallery in Python and want to be able to quickly generate thumbnails for the high resolution images.

What's the fastest way to generate high quality thumbnails for a variety of image sources?

Should I be using an external library like imagemagick, or is there an efficient internal way to do this?

The dimensions of the resized images will be (max size):

120x120
720x720
1600x1600

Quality is an issue, as I want to preserve as many of the original colors as possible and minimize compression artifacts.

Thanks.

link|improve this question

72% accept rate
feedback

2 Answers

up vote 1 down vote accepted

You want PIL it does this with ease

import Image
sizes = [(120,120), (720,720), (1600,1600)]
files = ['a.jpg','b.jpg','c.jpg']

for image in files:
    for size in sizes:
      Image.open(image).thumbnail(size).save("thumbnail_%s" % image)

If you desperately need speed. Then thread it, multiprocess it or get another language.

link|improve this answer
feedback

If you are already familiar with imagemagick, why not stick with the python-bindings?

PythonMagick

link|improve this answer
Thanks -- is this faster than some of the builtin Python methods? – ensnare Dec 25 '11 at 20:19
Which builtin methods? If you mean PIL, i can't say for sure, but ImageMagick is more the swiss-army-knife then a racing horse. Nevertheless i could never complain about the performance, but just relish the incredible features. I don't know about any other library with similar capabilities. – Don Question Dec 25 '11 at 22:31
feedback

Your Answer

 
or
required, but never shown

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