HOME/Articles/

pil example check pil (snippet)

Article Outline

Python pil example 'check pil'

Functions in program:

  • def check_pil(filename):

python check pil

Python pil example: check pil

def check_pil(filename):
    from PIL import Image
    f = open(filename, 'r')
    img = Image.open(f)
    img.load()
    if hasattr(f, 'reset'):
        f.reset()
    img = Image.open(f)
    img.verify()