MCPcopy Index your code
hub / github.com/python/cpython / create_image

Method create_image

Lib/tkinter/__init__.py:3073–3075  ·  view source on GitHub ↗

Create image item with coordinates x1,y1.

(self, *args, **kw)

Source from the content-addressed store, hash-verified

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."""

Callers 3

_createimageMethod · 0.80
drawMethod · 0.80
drawiconMethod · 0.80

Calls 1

_createMethod · 0.95

Tested by

no test coverage detected