1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
#!/usr/bin/env python
"""
Test Surface.write_to_png()
"""
import cStringIO
import math
import sys
import StringIO
import cairo
if not (cairo.HAS_IMAGE_SURFACE and cairo.HAS_PNG_FUNCTIONS):
raise SystemExit ('cairo was not compiled with ImageSurface and PNG support')
class C(object):
"""a file-like object (for testing), it simulates sys.stdout
"""
def __init__(self):
self.closed = False
def write(self, s):
"""just echo to stdout, without newlines"""
if self.closed:
raise ValueError("I/O operation on closed file")
sys.stdout.write(s)
def close(self):
self.closed = True
WIDTH, HEIGHT = 256, 256
surface = cairo.ImageSurface(cairo.FORMAT_ARGB32, WIDTH, HEIGHT)
ctx = cairo.Context(surface)
ctx.scale(WIDTH/1.0, HEIGHT/1.0)
pat = cairo.LinearGradient(0.0, 0.0, 0.0, 1.0)
pat.add_color_stop_rgba(1, 0, 0, 0, 1)
pat.add_color_stop_rgba(0, 1, 1, 1, 1)
ctx.rectangle(0,0,1,1)
ctx.set_source(pat)
ctx.fill()
pat = cairo.RadialGradient(0.45, 0.4, 0.1,
0.4, 0.4, 0.5)
pat.add_color_stop_rgba(0, 1, 1, 1, 1)
pat.add_color_stop_rgba(1, 0, 0, 0, 1)
ctx.set_source(pat)
ctx.arc(0.5, 0.5, 0.3, 0, 2 * math.pi)
ctx.fill()
# a selection of possible args to surface.write_to_png()
#fo = '/tmp/f.png'
fo = file('/tmp/f.png', 'wb')
#fo = StringIO.StringIO()
#fo = cStringIO.StringIO()
#fo = sys.stdout
#fo = C()
#fo.close() # this should cause: ValueError: I/O operation on closed file
surface.write_to_png(fo)
# for testing StringIO: get data and write to file
#string = fo.getvalue()
#f2 = file('/tmp/f.png', 'wb')
#f2.write(string)
#f2.close()
|