Answers for "pil image dimensions"

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
2

PIL image example

>>> from PIL import Image
>>> im = Image.open("image.jpg")
>>> im.show()
Posted by: Guest on June-12-2020
0

pil python image

from PIL import Image
im = Image.open("bride.jpg")
im.rotate(45).show()
Posted by: Guest on March-23-2021

Python Answers by Framework

Browse Popular Code Answers by Language