I\'m drawing a bunch of rectangles to the siaply screen, and I\'m wondering how I would go about reading the rgb color at a certain pixel location? For example, I want to ge
http://www.pygame.org/docs/ref/surface.html#Surface.get_at
Surface.get_at((x, y)): return Color
Return a copy of the RGBA Color value at the given pixel. If the Surface has no per pixel alpha, then the alpha value will always be 255 (opaque). If the pixel position is outside the area of the Surface an IndexError exception will be raised.