Python Identifier le mode Image

from PIL import Image

rgbImage = Image.open("flower.jpg")
print(rgbImage.mode)
Robert Dorrigan