downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

Cairo::availableSurfaces> <Cairo
[edit] Last updated: Fri, 17 May 2013

view this page in

Cairo::availableFonts

cairo_available_fonts

(PECL cairo >= 0.1.0)

Cairo::availableFonts -- cairo_available_fontsRécupère tous les types de police disponibles

Description

Style orienté objet :

public static array Cairo::availableFonts ( void )

Style procédural :

array cairo_available_fonts ( void )

Récupère tous les types de police disponibles.

Liste de paramètres

Cette fonction ne contient aucun paramètre.

Valeurs de retour

Un tableau contenant tous les types de police disponibles.

Exemples

Exemple #1 Style orienté objet

<?php

var_dump
(Cairo::availableFonts());

?>

L'exemple ci-dessus va afficher quelque chose de similaire à :

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

Exemple #2 Style procédural

<?php

var_dump
(cairo_available_fonts());

?>

L'exemple ci-dessus va afficher quelque chose de similaire à :

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

Voir aussi



add a note add a note User Contributed Notes Cairo::availableFonts - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites