Configure image item as to draw image object at position (x,y) on canvas)
(self, item, pos, image)
| 620 | return self.cv.create_image(0, 0, image=image) |
| 621 | |
| 622 | def _drawimage(self, item, pos, image): |
| 623 | """Configure image item as to draw image object |
| 624 | at position (x,y) on canvas) |
| 625 | """ |
| 626 | x, y = pos |
| 627 | self.cv.coords(item, (x * self.xscale, -y * self.yscale)) |
| 628 | self.cv.itemconfig(item, image=image) |
| 629 | |
| 630 | def _setbgpic(self, item, image): |
| 631 | """Configure image item as to draw image object |
no outgoing calls
no test coverage detected