PHP Doku:: Retrieves the availables font types - cairo.availablefonts.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzBildverarbeitung und -generierungCairoThe Cairo classCairo::availableFonts -- cairo_available_fonts

Ein Service von Reinhard Neidl - Webprogrammierung.

The Cairo class

<<The Cairo class

Cairo::availableSurfaces -- cairo_available_surfaces>>

Cairo::availableFonts

cairo_available_fonts

(PECL cairo >= 0.1.0)

Cairo::availableFonts -- cairo_available_fontsRetrieves the availables font types

Beschreibung

Object oriented style:

public static array Cairo::availableFonts ( void )

Procedural style:

array cairo_available_fonts ( void )

Returns an array with the available font backends

Parameter-Liste

Diese Funktion hat keine Parameter.

Rückgabewerte

A list-type array with all available font backends.

Beispiele

Beispiel #1 Object oriented style

<?php

/* Object Oriented Style */
var_dump(Cairo::availableFonts());

?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

array(2) {
  [0]=>
  string(5) "WIN32"
  [1]=>
  string(4) "USER"
}

Beispiel #2 Procedural style

<?php

/* Procedural style */
var_dump(cairo_available_fonts());

?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

array(2) {
  [0]=>
  string(5) "WIN32"
  [1]=>
  string(4) "USER"
}

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)