Skip to content Skip to sidebar Skip to footer

Create Thumbnail Images For Jpegs With Python

As the title says i am looking for a way convert a huge number of images into thumbnails of different sizes , How do i go about doing this in python

Solution 1:

See: http://www.pythonware.com/products/pil/index.htm

import os, sys
import Image

size = 128, 128

for infile in sys.argv[1:]:
    outfile = os.path.splitext(infile)[0] + ".thumbnail"
    if infile != outfile:
        try:
            im = Image.open(infile)
            im.thumbnail(size)
            im.save(outfile, "JPEG")
        except IOError:
            print "cannot create thumbnail for", infile

Post a Comment for "Create Thumbnail Images For Jpegs With Python"