Answers for "get width and height of image using pillow pyth"

8

pil get image size

from PIL import Image

im = Image.open('whatever.png')
width, height = im.size
Posted by: Guest on April-01-2020

Code answers related to "get width and height of image using pillow pyth"

Python Answers by Framework

Browse Popular Code Answers by Language