downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

Gmagick::queryformats> <Gmagick::queryfontmetrics
[edit] Last updated: Thu, 20 Jun 2013

view this page in

Gmagick::queryfonts

(PECL gmagick >= Unknown)

Gmagick::queryfontsReturns the configured fonts

Descrição

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

Returns fonts supported by Gmagick.

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

The Gmagick object on success

Erros

Throws an GmagickException on error.



add a note add a note User Contributed Notes Gmagick::queryfonts - [1 notes]
up
0
Mathew Oransky
3 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";
}
?>

 
show source | credits | sitemap | contact | advertising | mirror sites