Gmagick::queryfonts
(PECL gmagick >= Unknown)
Gmagick::queryfonts — 設定したフォントを返す
パラメータ
この関数にはパラメータはありません。
戻り値
成功した場合に Gmagick オブジェクトを返します。
エラー / 例外
エラー時に GmagickException をスローします。
+add a note
User Contributed Notes 1 note
Mathew Oransky ¶
15 years ago
An example of how to get the fonts available.
<?php
$image = new Gmagick();
$fonts = $image->queryfonts();
foreach($fonts as $font){
echo $font."\n";
}
?>