Largeur et hauteur de l'image PIL

image = PIL.Image.open("sample.png")
width, height = image.size
Magnificent Moth