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 contiene ningún parámetro.
El objeto Gmagick si se tuvo éxito
Emite una excepción 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";
}
?>