Cairo::availableSurfacescairo_available_surfacesRetrieves all available surfaces BeschreibungObjektorientierter Stil (method):
public static array Cairo::availableSurfaces
( void
)
Prozeduraler Stil:
array cairo_available_surfaces
( void
)
Returns an array with the available surface backends Parameter-ListeDiese Funktion hat keine Parameter. RückgabewerteA list-type array with all available surface backends. Beispiele
Beispiel #1 Objektorientierter Stil
<?phpDas oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
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"
}
Beispiel #2 Prozeduraler Stil
<?phpDas oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
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"
}
Siehe auch
|