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