[cairo-commit] pycairo/test cairo_image_surface_create_for_data.py,
NONE, 1.1
Steve Chaplin
commit at pdx.freedesktop.org
Mon Apr 4 10:19:29 PDT 2005
- Previous message: [cairo-commit] pycairo/cairo pycairo-surface.c,1.13,1.14
- Next message: [cairo-commit] packaging/debian/pycairo/debian changelog, NONE,
1.1 control, NONE, 1.1 copyright, NONE,
1.1 python2.3-cairo.examples, NONE, 1.1 rules, NONE, 1.1
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Committed by: stevech1097
Update of /cvs/cairo/pycairo/test
In directory gabe:/tmp/cvs-serv26892/test
Added Files:
cairo_image_surface_create_for_data.py
Log Message:
SC 2005/04/05
--- NEW FILE: cairo_image_surface_create_for_data.py ---
#!/usr/bin/env python
import array
import math
import cairo
WIDTH, HEIGHT = 256, 256
data = array.array('c', 'a' * WIDTH * HEIGHT * 4)
stride = WIDTH * 4
surface = cairo.Surface.create_for_data(data, cairo.FORMAT_ARGB32,
WIDTH, HEIGHT, stride);
ctx = cairo.Context()
ctx.set_target_surface(surface)
ctx.scale (WIDTH/1.0, HEIGHT/1.0)
pat = cairo.Pattern.create_linear(0.0, 0.0, 0.0, 1.0)
pat.add_color_stop (1, 0, 0, 0, 1)
pat.add_color_stop (0, 1, 1, 1, 1)
ctx.rectangle (0,0,1,1)
ctx.set_pattern (pat)
ctx.fill ()
pat = cairo.Pattern.create_radial (0.45, 0.4, 0.1,
0.4, 0.4, 0.5)
pat.add_color_stop (0, 1, 1, 1, 1)
pat.add_color_stop (1, 0, 0, 0, 1)
ctx.set_pattern (pat)
ctx.arc (0.5, 0.5, 0.3, 0, 2 * math.pi)
ctx.fill ()
try:
fileObject = file('gradient.png', 'wb')
except IOError, exc:
raise SystemExit("%s: %s" % (exc.filename, exc.strerror))
surface.write_png(fileObject)
- Previous message: [cairo-commit] pycairo/cairo pycairo-surface.c,1.13,1.14
- Next message: [cairo-commit] packaging/debian/pycairo/debian changelog, NONE,
1.1 control, NONE, 1.1 copyright, NONE,
1.1 python2.3-cairo.examples, NONE, 1.1 rules, NONE, 1.1
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the cairo-commit
mailing list