Imagick::queryFonts
(PECL imagick 2, PECL imagick 3)
Imagick::queryFonts — Returns the configured fonts
Beschreibung
$pattern
= "*"): arrayReturns the configured fonts.
Parameter-Liste
-
pattern
-
The query pattern
Rückgabewerte
Returns an array containing the configured fonts.
Fehler/Exceptions
Wirft ImagickException bei Fehlern.
Beispiele
Beispiel #1 Imagick::queryFonts()
<?php
$output = '';
$output .= "Fonts that match 'Helvetica*' are:<br/>";
$fontList = \Imagick::queryFonts("Helvetica*");
foreach ($fontList as $fontName) {
$output .= '<li>'. $fontName."</li>";
}
return $output;
?>