summaryrefslogtreecommitdiffstats
path: root/reader/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'reader/test.py')
-rwxr-xr-xreader/test.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/reader/test.py b/reader/test.py
deleted file mode 100755
index b260314..0000000
--- a/reader/test.py
+++ /dev/null
@@ -1,15 +0,0 @@
1#!/usr/bin/python
2
3import cairo
4
5if __name__ == '__main__':
6 surface = cairo.ImageSurface(cairo.FORMAT_ARGB32, 500, 500)
7 ctx = cairo.Context(surface)
8 ctx.move_to(10, 10)
9 ctx.line_to(-100, 10)
10 ctx.set_line_width(2)
11
12 ctx.move_to(10, 10)
13 ctx.line_to(20, 10)
14 ctx.stroke()
15 surface.write_to_png('test.png')