©
本文档使用
php.cn手册 发布
(PECL gmagick >= Unknown)
Gmagick::queryfonts — Returns the configured fonts
$pattern
= "*"
] )Returns fonts supported by Gmagick.
此函数没有参数。
The Gmagick object on success
错误时抛出 GmagickException。
[#1] Mathew Oransky [2009-11-02 18:39:23]
An example of how to get the fonts available.
<?php
$image = new Gmagick();
$fonts = $image->queryfonts();
foreach($fonts as $font){
echo $font."\n";
}
?>