PHP » GoLang |
login |
register |
about
|
GoLang Cairo::availableSurfaces
request it (591)
GoLang replacement for PHP's Cairo::availableSurfaces
[edit | history]
Cairo::availableSurfacescairo_available_surfaces(PECL cairo >= 0.1.0) Cairo::availableSurfaces -- cairo_available_surfaces — Retrieves all available surfaces DescriptionObject oriented style (method):
public static array Cairo::availableSurfaces
( void
)
Procedural style:
array cairo_available_surfaces
( void
)
Returns an array with the available surface backends ParametersThis function has no parameters. Return ValuesA list-type array with all available surface backends. Examples
Example #1 Object oriented style
<?phpThe 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
<?phpThe 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"
}
|
more
Most requested
more
Last requests
|