Python – How to get the picture size with PIL

imagepythonpython-imaging-library

How do I get a size of a pictures sides with PIL or any other Python library?

Best Answer

from PIL import Image

im = Image.open('whatever.png')
width, height = im.size

According to the documentation.