get image width and height python pil code example
Example: pil get image size
from PIL import Image
im = Image.open('whatever.png')
width, height = im.size
from PIL import Image
im = Image.open('whatever.png')
width, height = im.size