PHP » GoLang |
login |
register |
about
|
GoLang Cairo::availableFonts
request it (293)
GoLang replacement for PHP's Cairo::availableFonts
[edit | history]
Cairo::availableFontscairo_available_fonts(PECL cairo >= 0.1.0) Cairo::availableFonts -- cairo_available_fonts — Retrieves the availables font types DescriptionObject oriented style:
public static array Cairo::availableFonts
( void
)
Procedural style:
array cairo_available_fonts
( void
)
Returns an array with the available font backends ParametersThis function has no parameters. Return ValuesA list-type array with all available font backends. Examples
Example #1 Object oriented style
<?php The above example will output something similar to: array(2) { [0]=> string(5) "WIN32" [1]=> string(4) "USER" }
Example #2 Procedural style
<?php The above example will output something similar to: array(2) { [0]=> string(5) "WIN32" [1]=> string(4) "USER" } |
more
Recently updated
more
Most requested
more
Last requests
|