Dutch PHP Conference 2025 - Call For Papers

Gmagick::queryfonts

(PECL gmagick >= Unknown)

Gmagick::queryfontsReturns the configured fonts

Опис

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

Returns fonts supported by Gmagick.

Параметри

У цієї функції немає параметрів.

Значення, що повертаються

The Gmagick object on success

Помилки/виключення

Викидає GmagickException у разі помилки.

add a note

User Contributed Notes 1 note

up
0
Mathew Oransky
14 years ago
An example of how to get the fonts available.
<?php
$image
= new Gmagick();
$fonts = $image->queryfonts();
foreach(
$fonts as $font){
echo
$font."\n";
}
?>
To Top