Imagick::queryFonts

(PECL imagick 2.0.0)

Imagick::queryFontsReturns the configured fonts

说明

Imagick::queryFonts ([ string $pattern = "*" ] ) : array

Returns the configured fonts.

参数

pattern

The query pattern

返回值

Returns an array containing the configured fonts.

错误/异常

错误时抛出 ImagickException。

范例

Example #1 Imagick::queryFonts()

<?php
        $output 
'';
        
$output .= "Fonts that match 'Helvetica*' are:<br/>";

        
$fontList = \Imagick::queryFonts("Helvetica*");
 
        foreach (
$fontList as $fontName) {
            
$output .= '<li>'$fontName."</li>";
        }

        return 
$output;

?>