CairoFontFace
PHP Manual

CairoFontFace::getType

(PECL cairo >= 0.1.0)

CairoFontFace::getTypeRetrieves the font face type

Descrizione

public int CairoFontFace::getType ( void )

This function returns the type of the backend used to create a font face. See CairoFontType class constants for available types.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

A font type that can be any one defined in CairoFontType

Esempi

Example #1 CairoFontFace::getType() example

<?php

// Creates the font face
$fontface = new CairoToyFontFace('sans-serif');

// Get the font face type
var_dump($fontface->getType());

?>

Il precedente esempio visualizzerĂ  qualcosa simile a:

int(0)

Vedere anche:


CairoFontFace
PHP Manual