(PECL gmagick >= Unknown)
Gmagick::queryfonts — Returns the configured fonts
Returns fonts supported by Gmagick.
Diese Funktion hat keine Parameter.
The Gmagick object on success
Wirft bei einem Fehler eine GmagickException.
An example of how to get the fonts available.
<?php
$image = new Gmagick();
$fonts = $image->queryfonts();
foreach($fonts as $font){
echo $font."\n";
}
?>