goocanvas.Image — An Image item.
|
goocanvas.Image
represents an image item. It is a subclass of
goocanvas.ItemSimple
and so inherits all of the style properties such as "operator" and "pointer-events".
It also implements the goocanvas.Item
interface, so you can use the goocanvas.Item
functions such as goocanvas.Item.raise_()
and goocanvas.Item.rotate()
goocanvas.Image(properties
=None)
| A comma separated list of properties. |
Returns: | A new
goocanvas.Image
|
Creates a new canvas image item.
Here's an example showing how to create an image at (100.0, 100.0), using the given pixbuf at its natural width and height:
image = goocanvas.Image(pixbuf=pixbuf, x=100, y=100)