2 $sur = new CairoImageSurface(FORMAT_ARGB32
, 300, 16);
3 $con = new CairoContext($sur);
5 $con->set_source_rgb ( 1.0, 1.0, 1.0); /* white */
9 $con->select_font_face ( "Bitstream Vera Sans",
12 $con->set_font_size (12);
14 $con->set_source_rgb ( 0, 0, 0); /* black */
16 $con->move_to ( 0, 12);
17 $con->show_text ( "Hello from the ");
18 $con->show_text ( "show-text-current-point-php");
19 $con->show_text ( " test.");
20 $sur->write_to_png("show-text-current-point-php.png");