An example of how to get the fonts available.
<?php
$image = new Gmagick();
$fonts = $image->queryfonts();
foreach($fonts as $font){
echo $font."\n";
}
?>
(PECL gmagick >= Unknown)
Gmagick::queryfonts — Devuelve las fuentes configuradas
Devuelve las fuentes soportadas por Gmagick.
Esta función no tiene parámetros.
El objeto Gmagick si se tuvo éxito
Arroja un GmagickException en caso de error.
An example of how to get the fonts available.
<?php
$image = new Gmagick();
$fonts = $image->queryfonts();
foreach($fonts as $font){
echo $font."\n";
}
?>