Imagick::queryFonts

(PECL imagick 2, PECL imagick 3)

Imagick::queryFontsReturns the configured fonts

Описание

public static Imagick::queryFonts ( string $pattern = "*" ) : array

Returns the configured fonts.

Список параметров

pattern

The query pattern

Возвращаемые значения

Returns an array containing the configured fonts.

Ошибки

Вызывает ImagickException при ошибке.

Примеры

Пример #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;

?>