mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-07-21 20:51:09 +02:00
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@74164 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
14 lines
270 B
Python
14 lines
270 B
Python
snippet_normalize (cr, width, height)
|
|
|
|
cr.arc (0.5, 0.5, 0.3, 0, 2*M_PI)
|
|
cr.clip ()
|
|
|
|
image = cairo.ImageSurface.create_from_png ("data/romedalen.png")
|
|
w = image.get_width()
|
|
h = image.get_height()
|
|
|
|
cr.scale (1.0/w, 1.0/h)
|
|
|
|
cr.set_source_surface (image, 0, 0)
|
|
cr.paint ()
|