We are having some issues related with fonts in ImageMagick (version 6.0.0-4) on Debian (see http://bugs.debian.org/573983) where an user is having this problem (that I cannot reproduce):
Code: Select all
$ montage test.jpg test1.jpg
montage: unable to read font `(null)' @ error/annotate.c/RenderFreetype/1044.
Code: Select all
convert -size 320x85 xc:transparent -font Bookman-DemiItalic \
-pointsize 72 -draw "text 25,60 'Magick'" -channel RGBA \
-blur 0x6 -fill darkred -stroke magenta \
-draw "text 20,55 'Magick'" fuzzy-magick.png
On older imagemagick, it works fine.
On the newer one, it works, but issues the following warnings:
convert: unable to read font `Bookman-DemiItalic' @
warning/annotate.c/RenderType/807.
convert: unable to read font `Bookman-DemiItalic' @
error/annotate.c/RenderFreetype/1044.
(...)
Code: Select all
<typemap>
@type_include_files@
</typemap>
Code: Select all
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE typemap [
<!ELEMENT typemap (type)+>
<!ELEMENT type (#PCDATA)>
<!ELEMENT include (#PCDATA)>
<!ATTLIST type name CDATA #REQUIRED>
<!ATTLIST type fullname CDATA #IMPLIED>
<!ATTLIST type family CDATA #IMPLIED>
<!ATTLIST type foundry CDATA #IMPLIED>
<!ATTLIST type weight CDATA #IMPLIED>
<!ATTLIST type style CDATA #IMPLIED>
<!ATTLIST type stretch CDATA #IMPLIED>
<!ATTLIST type format CDATA #IMPLIED>
<!ATTLIST type metrics CDATA #IMPLIED>
<!ATTLIST type glyphs CDATA #REQUIRED>
<!ATTLIST type version CDATA #IMPLIED>
<!ATTLIST include file CDATA #REQUIRED>
]>
Really thank you!