Cairo::availableFontscairo_available_fontsRetrieves the availables font types BeschreibungObjektorientierter Stil:
public static array Cairo::availableFonts
( void
)
Prozeduraler Stil:
array cairo_available_fonts
( void
)
Returns an array with the available font backends Parameter-ListeDiese Funktion hat keine Parameter. RückgabewerteA list-type array with all available font backends. Beispiele
Beispiel #1 Objektorientierter Stil
<?phpDas oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
array(2) {
[0]=>
string(5) "WIN32"
[1]=>
string(4) "USER"
}
Beispiel #2 Prozeduraler Stil
<?phpDas oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
array(2) {
[0]=>
string(5) "WIN32"
[1]=>
string(4) "USER"
}
Siehe auch
|