Return the color (red, green, blue) of the pixel at X,Y.
(self, x, y)
| 4530 | self.tk.call(self.name, 'copy', sourceImage, *options) |
| 4531 | |
| 4532 | def get(self, x, y): |
| 4533 | """Return the color (red, green, blue) of the pixel at X,Y.""" |
| 4534 | return self.tk.call(self.name, 'get', x, y) |
| 4535 | |
| 4536 | def put(self, data, to=None): |
| 4537 | """Put row formatted colors to image starting from |