3 $sur = new CairoImageSurface(FORMAT_ARGB32
, 192, 16);
4 $con = new CairoContext($sur);
6 $con->set_source_rgb ( 1.0, 1.0, 1.0); /* white */
10 $con->set_source_rgb ( 0, 0, 0); /* black */
12 $con->select_font_face ( "Bitstream Vera Serif",
15 $con->set_font_size ( $TEXT_SIZE);
17 $con->move_to ( 0, $TEXT_SIZE);
18 $con->show_text ( "i-am-serif");
20 $con->select_font_face ( "Bitstream Vera Sans",
23 $con->show_text ( " i-am-sans");
25 $con->select_font_face ( "Bitstream Vera Sans Mono",
28 $con->show_text ( " i-am-mono");
29 $sur->write_to_png("select-font-face-php.png");