blendish: cosmetix
[iv.d.git] / cairo_samples / cairo_test00.d
blobf88a3bb02c5bcb6ea02fcbe0a3ead896c52d72d7
1 import iv.cairo;
3 void main () {
4 cairo_surface_t* surface = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, 240, 80);
5 cairo_t* cr = cairo_create(surface);
7 cairo_select_font_face(cr, "serif", CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_BOLD);
8 cairo_set_font_size(cr, 32.0);
9 cairo_set_source_rgb(cr, 0.0, 0.0, 1.0);
10 cairo_move_to(cr, 10.0, 50.0);
11 cairo_show_text(cr, "Hello, world");
13 cairo_destroy(cr);
14 cairo_surface_write_to_png(surface, "hello.png");
15 cairo_surface_destroy(surface);