Create image item with coordinates x1,y1.
(self, *args, **kw)
| 2988 | return self._create('bitmap', args, kw) |
| 2989 | |
| 2990 | def create_image(self, *args, **kw): |
| 2991 | """Create image item with coordinates x1,y1.""" |
| 2992 | return self._create('image', args, kw) |
| 2993 | |
| 2994 | def create_line(self, *args, **kw): |
| 2995 | """Create line with coordinates x1,y1,...,xn,yn.""" |