Query: cairo_available_fonts
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
CAIRO_AVAILABLE_FONTS(3) 1 CAIRO_AVAILABLE_FONTS(3) Cairo::availableFonts - Retrieves the availables font types Object oriented style:SYNOPSISpublicstatic array Cairo::availableFonts (void )DESCRIPTIONProcedural style: array cairo_available_fonts (void ) Returns an array with the available font backendsPARAMETERSThis function has no parameters.RETURN VALUESA list-type array with all available font backends.EXAMPLESExample #1 Object oriented style <?php /* Object Oriented Style */ var_dump(Cairo::availableFonts()); ?> The above example will output something similar to: array(2) { [0]=> string(5) "WIN32" [1]=> string(4) "USER" } Example #2 Procedural style <?php /* Procedural style */ var_dump(cairo_available_fonts()); ?> The above example will output something similar to: array(2) { [0]=> string(5) "WIN32" [1]=> string(4) "USER" }SEE ALSOCairo::availableSurfaces. PHP Documentation Group CAIRO_AVAILABLE_FONTS(3)
| Related Man Pages | 
|---|
| cairo_available_surfaces(3) - php | 
| cairo_clip_rectangle_list(3) - php | 
| cairo_fill_preserve(3) - php | 
| cairo_font_face_status(3) - php | 
| stomp_error(3) - php | 
| Similar Topics in the Unix Linux Community | 
|---|
| Cairo 1.4.14 (Default branch) | 
| Cairo 1.6.4 (Default branch) | 
| Cairo 1.8.4 (Default branch) | 
| Cairo 1.8.6 (Default branch) | 
| Cairo Composite Manager 0.2.2 (Default branch) |