Return the width of the image.
(self)
| 4396 | return self.tk.call('image', 'type', self.name) |
| 4397 | |
| 4398 | def width(self): |
| 4399 | """Return the width of the image.""" |
| 4400 | return self.tk.getint( |
| 4401 | self.tk.call('image', 'width', self.name)) |
| 4402 | |
| 4403 | |
| 4404 | class PhotoImage(Image): |