Create image item with coordinates x1,y1.
(self, *args, **kw)
| 3071 | return self._create('bitmap', args, kw) |
| 3072 | |
| 3073 | def create_image(self, *args, **kw): |
| 3074 | """Create image item with coordinates x1,y1.""" |
| 3075 | return self._create('image', args, kw) |
| 3076 | |
| 3077 | def create_line(self, *args, **kw): |
| 3078 | """Create line with coordinates x1,y1,...,xn,yn.""" |
no test coverage detected