Listing pixel values from a PIL image returns a list of tuples containing the RGB values of each pixel in the image.
Solution for How to list pixel values from a PIL image in Python : You can use PIL.Image.Image.getdata() to list pixel values Call PIL.Image.Image.getdata() to get a sequence containing the pixel values in PIL.Image.Image. Call list(sequence) to convert the previous result sequence to a list.