Python tkinter obtient la taille de l'image

img = Image.open("path\\to\\image.jpg")
tkimage = ImageTk.PhotoImage(img)

h = tkimage.height()
w = tkimage.width()
print(h)
print(w)
Nervous Nightingale