summaryrefslogtreecommitdiff
path: root/test/surface_create_for_stream.py
blob: da543f2cf0559f9d7f64e44a8985a140aa272ddb (plain)
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
74
75
76
77
78
79
80
81
#!/usr/bin/env python
"""
Test PDF/PS/SVG constructors (using streams)
"""

import cStringIO
import gc
import math
import sys
import StringIO

import cairo


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


# a selection of possible args to surface.write_to_png()
#fo = '/tmp/f.ps'
fo = file('/tmp/f.svg', 'wb')
#fo = StringIO.StringIO()
#fo = cStringIO.StringIO()
#fo = sys.stdout
#fo = C()

#fo.close()  # this should cause: ValueError: I/O operation on closed file

WIDTH, HEIGHT  = 256, 256

#surface = cairo.PDFSurface(fo, WIDTH, HEIGHT)
#surface = cairo.PSSurface(fo, WIDTH, HEIGHT)
surface = cairo.SVGSurface(fo, WIDTH, HEIGHT)

#sys.stdout.write ('1\n'); sys.stdout.flush()
ctx = cairo.Context(surface)

#del fo  # test that 'fo' is referenced to keep it alive
#gc.collect()

#fo.close()  # this should cause: ValueError: I/O operation on closed file

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()

ctx.show_page()
surface.finish()

# for testing StringIO: get data and write to file
#string = fo.getvalue()
#f2 = file('/tmp/f.ps', 'wb')
#f2.write(string)
#f2.close()