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: Fri, 17 May 2013

view this page in

Gmagick::queryfonts

(PECL gmagick >= Unknown)

Gmagick::queryfontsDevuelve las fuentes configuradas

Descripción

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

Devuelve las fuentes soportadas por Gmagick.

Parámetros

Esta función no tiene parámetros.

Valores devueltos

El objeto Gmagick si se tuvo éxito

Errores/Excepciones

Arroja un GmagickException en caso de 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