SyntaxFix
Write A Post
Hire A Developer
Questions
As Dave Webb said:
Here is my working code snippet printing the pixel colours from an image: import os, sys import Image im = Image.open("image.jpg") x = 3 y = 4 pix = im.load() print pix[x,y]
Here is my working code snippet printing the pixel colours from an image:
import os, sys import Image im = Image.open("image.jpg") x = 3 y = 4 pix = im.load() print pix[x,y]