summary refs log tree commit diff stats
path: root/examples/cairoex.nim
diff options
context:
space:
mode:
authorZahary Karadjov <zahary@gmail.com>2013-12-09 00:26:04 +0200
committerZahary Karadjov <zahary@gmail.com>2013-12-09 00:26:04 +0200
commit95a6e01ea8f7409e205455c42a3db9b399b3e353 (patch)
treef7e3270dd7e631365f1b4ab777464320f6a6352b /examples/cairoex.nim
parentde3b7cd413e02498c0ee5554f55f9c92d2baa9ab (diff)
parent7e9f158494315abff712110a23f1d5ceb3df4206 (diff)
downloadNim-95a6e01ea8f7409e205455c42a3db9b399b3e353.tar.gz
Merge branch 'master' of github.com:Araq/Nimrod into upstream
Diffstat (limited to 'examples/cairoex.nim')
-rw-r--r--examples/cairoex.nim15
1 files changed, 0 insertions, 15 deletions
diff --git a/examples/cairoex.nim b/examples/cairoex.nim
deleted file mode 100644
index 492428705..000000000
--- a/examples/cairoex.nim
+++ /dev/null
@@ -1,15 +0,0 @@
-import cairo
-
-var surface = image_surface_create(FORMAT_ARGB32, 240, 80)
-var cr = create(surface)
-
-select_font_face(cr, "serif", FONT_SLANT_NORMAL, 
-                              FONT_WEIGHT_BOLD)
-set_font_size(cr, 32.0)
-set_source_rgb(cr, 0.0, 0.0, 1.0)
-move_to(cr, 10.0, 50.0)
-show_text(cr, "Hello, world")
-destroy(cr)
-discard write_to_png(surface, "hello.png")
-destroy(surface)
-