HOME/Articles/

pil example ImageResize (snippet)

Article Outline

Python pil example 'ImageResize'

Modules used in program:

  • import os
  • import PIL

python ImageResize

Python pil example: ImageResize

import PIL
import os
from PIL import Image

basewidth = 1000

for f in os.listdir('./lrg'):
    img = Image.open('./lrg/' + f)
    wpercent = (basewidth / float(img.size[0]))
    hsize = int((float(img.size[1]) * float(wpercent)))
    img = img.resize((basewidth, hsize), PIL.Image.ANTIALIAS)
    img.save('./sml/' + f)