Gmagick
在线手册:中文 英文
PHP手册

Gmagick::queryfonts

(PECL gmagick >= Unknown)

Gmagick::queryfontsReturns the configured fonts

说明

public array Gmagick::queryfonts ([ string $pattern = "*" ] )

Returns fonts supported by Gmagick.

参数

此函数没有参数。

返回值

The Gmagick object on success

错误/异常

错误时抛出GmagickException.


Gmagick
在线手册:中文 英文
PHP手册
PHP手册 - N: Returns the configured fonts

用户评论:

Mathew Oransky (03-Nov-2009 02:39)

An example of how to get the fonts available.
<?php
$image
= new Gmagick();
$fonts = $image->queryfonts();
foreach(
$fonts as $font){
  echo
$font."\n";
}
?>