An example of how to get the fonts available.
<?php
$image = new Gmagick();
$fonts = $image->queryfonts();
foreach($fonts as $font){
echo $font."\n";
}
?>
Gmagick::queryfonts
(PECL gmagick >= Unknown)
Gmagick::queryfonts — Returns the configured fonts
설명
public array Gmagick::queryfonts
([ string $pattern = "*"
] )
Returns fonts supported by Gmagick.
인수
이 함수는 인수가 없습니다.
반환값
The Gmagick object on success
오류/예외
Throws an GmagickException on error.
Mathew Oransky ¶
3 years ago
