Query: cairo_available_surfaces
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
CAIRO_AVAILABLE_SURFACES(3) 1 CAIRO_AVAILABLE_SURFACES(3) Cairo::availableSurfaces - Retrieves all available surfaces Object oriented style (method):SYNOPSISpublicstatic array Cairo::availableSurfaces (void )DESCRIPTIONProcedural style: array cairo_available_surfaces (void ) Returns an array with the available surface backendsPARAMETERSThis function has no parameters.RETURN VALUESA list-type array with all available surface backends.EXAMPLESExample #1 Object oriented style <?php /* Object Oriented style */ var_dump(Cairo::availableSurfaces()); ?> The above example will output something similar to: array(6) { [0]=> string(5) "IMAGE" [1]=> string(3) "PNG" [2]=> string(3) "PDF" [3]=> string(2) "PS" [4]=> string(3) "SVG" [5]=> string(5) "WIN32" } Example #2 Procedural style <?php /* Procedural style */ var_dump(cairo_available_surfaces()); ?> The above example will output something similar to: array(6) { [0]=> string(5) "IMAGE" [1]=> string(3) "PNG" [2]=> string(3) "PDF" [3]=> string(2) "PS" [4]=> string(3) "SVG" [5]=> string(5) "WIN32" }SEE ALSOCairo::availableFonts. PHP Documentation Group CAIRO_AVAILABLE_SURFACES(3)
Related Man Pages |
---|
numfmt_create(3) - php |
datetime.modify(3) - php |
maxdb_error(3) - php |
cairo_clip_rectangle_list(3) - php |
mysqli_error_list(3) - php |
Similar Topics in the Unix Linux Community |
---|
Cairo 1.7.6 (Default branch) |
Cairo 1.8.2 (Default branch) |
Cairo 1.8.4 (Default branch) |
XOOPS 2.3.1 (Default branch) |
Cairo 1.8.6 (Default branch) |