To get a list of fonts that ImageMagick knows about, enter this from a cmd shell:
convert -list font
(PECL imagick 2.0.0)
ImagickDraw::setFont — Sets the fully-specified font to use when annotating with text
$font_name
)Questa funzione, al momento non è documentata; è disponibile soltanto la lista degli argomenti.
Sets the fully-specified font to use when annotating with text.
font_name
Restituisce TRUE
in caso di successo.
To get a list of fonts that ImageMagick knows about, enter this from a cmd shell:
convert -list font
if u are looking for the configured/embedded font list
$fontList = \Imagick::queryFonts('*');
foreach ( $fontList as $fontName ) {
echo $fontName . '<br>';
}
http://php.net/manual/en/imagick.queryfonts.php
The only acceptable parameters I've been able to use are the location, relative to site root, of a font file.
e.g,
$draw->setFont("fonts/arial.ttf");