哈希空间 Ctrl + F 进行搜索
首页 php手册中文版 CSS中文手册 哈希文档 Markdown在线工具

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;

?>
打开 哈希空间 微信小程序中查看更佳