Discussion:
Problem with Freetype and JPEG when installing ImageMagick to debian-linux
Kumaripaba Miyurusara Atukorala
2011-07-20 08:14:40 UTC
Permalink
Hi,
I'm very new to ImageMagick. I'm working on a debian-linux server. I want to
install ImageMagick and I followed the guidelines given in
http://www.imagemagick.org/script/install-source.php
I used ./configure --without-x --with-jpeg --with-freetype first and prior
to that I also installed both jpeg and freetype by following the
commands"aptitude
install jpeg -t lenny-backports", "aptitude install freetype -t
lenny-backports" respectively.

After installing ImageMagick when I try the following command
"convert -size 320x240 xc:lightblue -pointsize 72 -fill blue -annotate
+25+70 'Anthony' Test1.GIF " I'm getting the following errors

convert: delegate library support not built-in
`/usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @
warning/annotate.c/RenderFreetype/1513.
convert: no decode delegate for this image format
`/tmp/magick-VDsTBQnU-00000001' @ error/constitute.c/ReadImage/532.
convert: Postscript delegate failed `/tmp/magick-8ZtSN35N': @
error/ps.c/ReadPSImage/807.
convert: delegate library support not built-in
`/usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @
warning/annotate.c/RenderFreetype/1513.
convert: no decode delegate for this image format
`/tmp/magick-P7LykO2J-00000001' @ error/constitute.c/ReadImage/532.
convert: Postscript delegate failed `/tmp/magick-0wPkAwiC': @
error/ps.c/ReadPSImage/807.


I can see Test1.Gif been created without any text. When I rename it to
Test1.jpg even that's not creating.

I believe it's a problem with the freetype and JPEG installations. Can
someone please help me to solve this issue.

Thanks in advance.

BR,
Paba
--
Kumaripaba Atukorala
Anthony Thyssen
2011-07-20 22:57:07 UTC
Permalink
On Wed, 20 Jul 2011 11:14:40 +0300
magick-users-***@imagemagick.org wrote:
| Hi,
| I'm very new to ImageMagick. I'm working on a debian-linux server. I want to
| install ImageMagick and I followed the guidelines given in
| http://www.imagemagick.org/script/install-source.php
| I used ./configure --without-x --with-jpeg --with-freetype first and prior
| to that I also installed both jpeg and freetype by following the
| commands"aptitude
| install jpeg -t lenny-backports", "aptitude install freetype -t
| lenny-backports" respectively.
|
| After installing ImageMagick when I try the following command
| "convert -size 320x240 xc:lightblue -pointsize 72 -fill blue -annotate
| +25+70 'Anthony' Test1.GIF " I'm getting the following errors
|
| convert: delegate library support not built-in
| `/usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @
| warning/annotate.c/RenderFreetype/1513.
| convert: no decode delegate for this image format
| `/tmp/magick-VDsTBQnU-00000001' @ error/constitute.c/ReadImage/532.
| convert: Postscript delegate failed `/tmp/magick-8ZtSN35N': @
| error/ps.c/ReadPSImage/807.
| convert: delegate library support not built-in
| `/usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @
| warning/annotate.c/RenderFreetype/1513.
| convert: no decode delegate for this image format
| `/tmp/magick-P7LykO2J-00000001' @ error/constitute.c/ReadImage/532.
| convert: Postscript delegate failed `/tmp/magick-0wPkAwiC': @
| error/ps.c/ReadPSImage/807.
|
|
| I can see Test1.Gif been created without any text. When I rename it to
| Test1.jpg even that's not creating.
|
| I believe it's a problem with the freetype and JPEG installations. Can
| someone please help me to solve this issue.
|
| Thanks in advance.
|
| BR,
| Paba
|
The default font may be a ghostscript font, not a free type font.

Set a font to one of the TTF fonts listed on the "convert -list font"
output.



Anthony Thyssen ( System Programmer ) <***@griffith.edu.au>
--------------------------------------------------------------------------
The members of the Guild of Assassins considered themselves cultured
men who enjoyed good music and food and literature. And they knew the
value of human life. To a penny, in many cases.
-- Terry Pratchett, "HogFather"
--------------------------------------------------------------------------
Anthony's Castle http://www.ict.griffith.edu.au/anthony/
Kumaripaba Miyurusara Atukorala
2011-07-21 06:48:19 UTC
Permalink
Hi,
I tried that, given below is what I tried and the set of errors I got. Still
I see the Test1.GIF image been created without any text.

/ImageMagick-6.7.1-0# convert -size 320x240 -font Courier xc:lightblue
-pointsize 72 -fill blue -annotate +25+70 'Anthony' Test1.GIF
convert: delegate library support not built-in
`/usr/share/fonts/type1/gsfonts/n022003l.pfb' (Freetype) @
warning/annotate.c/RenderFreetype/1513.
convert: no decode delegate for this image format
`/tmp/magick-izcc2Hgn-00000001' @ error/constitute.c/ReadImage/532.
convert: Postscript delegate failed `/tmp/magick-j20BKJ8d': @
error/ps.c/ReadPSImage/807.
convert: delegate library support not built-in
`/usr/share/fonts/type1/gsfonts/n022003l.pfb' (Freetype) @
warning/annotate.c/RenderFreetype/1513.
convert: no decode delegate for this image format
`/tmp/magick-vjM4MrHq-00000001' @ error/constitute.c/ReadImage/532.
convert: Postscript delegate failed `/tmp/magick-Xn0FXNC8': @
error/ps.c/ReadPSImage/807.


On Thu, Jul 21, 2011 at 1:57 AM, Anthony Thyssen
Post by Anthony Thyssen
On Wed, 20 Jul 2011 11:14:40 +0300
| Hi,
| I'm very new to ImageMagick. I'm working on a debian-linux server. I want to
| install ImageMagick and I followed the guidelines given in
| http://www.imagemagick.org/script/install-source.php
| I used ./configure --without-x --with-jpeg --with-freetype first and prior
| to that I also installed both jpeg and freetype by following the
| commands"aptitude
| install jpeg -t lenny-backports", "aptitude install freetype -t
| lenny-backports" respectively.
|
| After installing ImageMagick when I try the following command
| "convert -size 320x240 xc:lightblue -pointsize 72 -fill blue -annotate
| +25+70 'Anthony' Test1.GIF " I'm getting the following errors
|
| convert: delegate library support not built-in
| warning/annotate.c/RenderFreetype/1513.
| convert: no decode delegate for this image format
| error/ps.c/ReadPSImage/807.
| convert: delegate library support not built-in
| warning/annotate.c/RenderFreetype/1513.
| convert: no decode delegate for this image format
| error/ps.c/ReadPSImage/807.
|
|
| I can see Test1.Gif been created without any text. When I rename it to
| Test1.jpg even that's not creating.
|
| I believe it's a problem with the freetype and JPEG installations. Can
| someone please help me to solve this issue.
|
| Thanks in advance.
|
| BR,
| Paba
|
The default font may be a ghostscript font, not a free type font.
Set a font to one of the TTF fonts listed on the "convert -list font"
output.
--------------------------------------------------------------------------
The members of the Guild of Assassins considered themselves cultured
men who enjoyed good music and food and literature. And they knew the
value of human life. To a penny, in many cases.
-- Terry Pratchett, "HogFather"
--------------------------------------------------------------------------
Anthony's Castle http://www.ict.griffith.edu.au/anthony/
_______________________________________________
Magick-users mailing list
http://studio.imagemagick.org/mailman/listinfo/magick-users
--
Kumaripaba Atukorala
Loading...