Fonts not available
Fonts not available
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?
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: Fonts not available
Are you using this link --- http://www.imagemagick.org/MagickStudio ... Studio.cgi
see viewtopic.php?f=5&t=17719
see viewtopic.php?f=5&t=17719
Re: Fonts not available
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
I had the same problem but after the upgrade not anymore
Thanks
Max
Thanks
Max
Re: Fonts not available
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
does not show Arial so this must be something about where php thinks the fonts are ?
anybody know where to tell php about fonts ?
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;
}
?>
anybody know where to tell php about fonts ?