from PIL import Image MonImage=Image.open("tux_yoda.jpg") print(MonImage.size) #on affiche la taille de l'image print(MonImage.getpixel((45,40))) #On récupère et on affiche l'information (R,G,B) du pixel de coordonnées (45,40) MonImage.show() #On affiche l'image contenue dans la variable MonImage