Set the transparency of the pixel at x,y.
(self, x, y, boolean)
| 4660 | self.name, 'transparency', 'get', x, y)) |
| 4661 | |
| 4662 | def transparency_set(self, x, y, boolean): |
| 4663 | """Set the transparency of the pixel at x,y.""" |
| 4664 | self.tk.call(self.name, 'transparency', 'set', x, y, boolean) |
| 4665 | |
| 4666 | |
| 4667 | class BitmapImage(Image): |