Answers for "image height and width pillow"

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
1

python get image size

from PIL import Image

img = Image.open('path/to/image')
width, height = img.size
im.close()
Posted by: Guest on December-20-2020

Code answers related to "image height and width pillow"

Python Answers by Framework

Browse Popular Code Answers by Language