Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 789a4dca4953f037223e830336ef4af3 > files > 1092

python-enthought-enable-3.2.0-2mdv2010.0.i586.rpm

from enthought.kiva import constants
from enthought.kiva.backend_image import GraphicsContext

gc = GraphicsContext((100,100))

gc.clear()
gc.set_line_cap(constants.CAP_SQUARE)
gc.set_line_join(constants.JOIN_MITER)
gc.set_stroke_color((1,0,0))
gc.set_fill_color((0,0,1))
gc.rect(0, 0, 30, 30)
gc.draw_path()

gc.save("simple.bmp")