update : 2015.11.03
php.shukuma.com

검색:
 
 
Returns the configured fonts

Imagick::queryFonts

(PECL imagick 2.0.0)

Imagick::queryFontsReturns the configured fonts

설명

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

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;

?>