def test_creation(self):
     """ Simply create and destroy multiple objects.  This silly
         test crashed when we transitioned from Numeric 23.1 to 23.8.
         That problem is fixed now.
     """
     for i in range(10):
         gc = GraphicsContextSystem((100, 100), "rgba32")
         del gc
Exemplo n.º 2
0
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!
import sys

from kiva import agg

gc = agg.GraphicsContextArray((100, 100))
gc.move_to(0, 0)
gc.line_to(100, 100)
gc.stroke_path()

gc.save("bob.bmp")
gc.save("bob.jpg")

gc.convert_pixel_format("rgb24")
gc.save("bob1.bmp")

if sys.platform == "win32":
    from kiva.agg import GraphicsContextSystem

    gc = GraphicsContextSystem((100, 100))
    gc.move_to(0, 0)
    gc.line_to(100, 100)
    gc.stroke_path()
    gc.save("bob2.bmp")
    gc.convert_pixel_format("rgb24")
    gc.save("bob3.bmp")