Page 1 of 1
Fonts not available
Posted: 2011-10-05T06:15:23-07:00
by Rita
Most of the fonts are not available, for some reason. I get that stop sign! The only fonts that show up are the last couple in the list. What can be done?
Re: Fonts not available
Posted: 2011-10-05T10:01:58-07:00
by fmw42
Re: Fonts not available
Posted: 2011-10-05T16:33:14-07:00
by magick
Try now. Webbyland upgraded the ImageMagick Studio host and there have been a couple of glitches. If you have any more problems, let us know.
Re: Fonts not available
Posted: 2012-04-03T03:44:56-07:00
by maximx86
I had the same problem but after the upgrade not anymore
Thanks
Max
Re: Fonts not available
Posted: 2014-06-06T00:01:59-07:00
by zemlik
I installed MagickStudio and I get the famous message Arial font not available, when trying to output.
I put arial.ttf in /usr/share/fonts.
used the script that makes the ~/.magick/type.xml file
"convert -list font" shows Arial
gnome-font-viewer shows Arial
but
Code: Select all
<?php
$imagick = new Imagick();
$fonts = $imagick->queryFonts();
foreach($fonts as $font)
{
echo $font;
}
?>
does not show Arial so this must be something about where php thinks the fonts are ?
anybody know where to tell php about fonts ?