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 — Returns the configured fonts
此函数没有参数。
The Gmagick object on success
错误时抛出 GmagickException。
An example of how to get the fonts available.
<?php
$image = new Gmagick();
$fonts = $image->queryfonts();
foreach($fonts as $font){
echo $font."\n";
}
?>