1
You can use a library like Pillow to do so:
from PIL import Image
image=Image.open(filepath)
image.size # (width,height) tuple
image.format # (keeps the image format)
You can find more information at the official documentation:
Source:stackexchange.com