GS not showing up in delegates

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
Peter_VD
Posts: 5
Joined: 2012-04-13T07:32:33-07:00
Authentication code: 8675308

GS not showing up in delegates

Post by Peter_VD »

Hello, my problem is that gs is not showing up in delegates.
I am on Debian Lenny
I downloaded gostscript 9.02 and installed it.

Code: Select all

./configure
make
make install
after that reboot apache.

Code: Select all

gs -v
shows:

Code: Select all

GPL Ghostscript 9.02 (2011-03-30)
Than test:

Code: Select all

gs -sDEVICE=jpeg -sOutputFile=test.jpg test.pdf
gives:

Code: Select all

GPL Ghostscript 9.02 (2011-03-30)
Copyright (C) 2010 Artifex Software, Inc.  All rights reserved.
This software comes with NO WARRANTY: see the file PUBLIC for details.
Processing pages 1 through 2.
Page 1
Loading NimbusSanL-Bold font from %rom%Resource/Font/NimbusSanL-Bold... 3551456 2070180 6046968 4754975 3 done.
Loading NimbusSanL-Regu font from %rom%Resource/Font/NimbusSanL-Regu... 3584736 2170275 6087336 4774810 3 done.
>>showpage, press <return> to continue<<

Page 2
>>showpage, press <return> to continue<<
So this works.

Downloaded and installed Imagemagick

Code: Select all

./configure --with-gslib
make
make install
Reboot

Code: Select all

convert -list configure

Code: Select all

Path: /usr/local/lib/ImageMagick-6.7.6/config/configure.xml

Name          Value
-------------------------------------------------------------------------------
CC            gcc -std=gnu99 -std=gnu99
CFLAGS        -fopenmp -g -O2 -Wall -pthread
CODER_PATH    /usr/local/lib/ImageMagick-6.7.6/modules-Q16/coders
CONFIGURE     ./configure  '--with-gslib'
CONFIGURE_PATH /usr/local/etc/ImageMagick/
COPYRIGHT     Copyright (C) 1999-2012 ImageMagick Studio LLC
CPPFLAGS      -I/usr/local/include/ImageMagick
CXX           g++
CXXFLAGS      -pthread
DEFS          -DHAVE_CONFIG_H
DELEGATES     jpeg zlib
DISTCHECK_CONFIG_FLAGS --disable-deprecated --with-quantum-depth=16 --with-umem=no --with-autotrace=no --with-fontpath= --with-wmf=no --with-perl=no
DOCUMENTATION_PATH /usr/local/share/doc/ImageMagick/
EXEC-PREFIX   /usr/local
EXECUTABLE_PATH /usr/local/bin
FEATURES      OpenMP 
FILTER_PATH   /usr/local/lib/ImageMagick-6.7.6/modules-Q16/filters
HOST          x86_64-unknown-linux-gnu
INCLUDE_PATH  /usr/local/include/ImageMagick
LDFLAGS       -L/usr/local/lib 
LIB_VERSION   0x676
LIB_VERSION_NUMBER 6,7,6,5
LIBRARY_PATH  /usr/local/lib/ImageMagick-6.7.6
LIBS          -lMagickCore -ljpeg -lz -lm -lgomp -lpthread 
NAME          ImageMagick
PCFLAGS       -fopenmp
PREFIX        /usr/local
QuantumDepth  16
RELEASE_DATE  2012-05-03
SHARE_PATH    /usr/local/share/ImageMagick-6.7.6
SVN_REVISION  7385
TARGET_CPU    x86_64
TARGET_OS     linux-gnu
TARGET_VENDOR unknown
VERSION       6.7.6
WEBSITE       http://www.imagemagick.org

Path: [built-in]

Name          Value
-------------------------------------------------------------------------------
NAME          ImageMagick
But there is no gs in delegates.
I have reinstalled it and did try it again, but no result.

Furthermore:

Code: Select all

which convert
/usr/local/bin/convert

Code: Select all

which gs
/usr/local/bin/gs
I have looked in the forum and tried several things people said, but it did not help me.
What have i done wrong and what can I do to solve this, I hope somebody can give me some advice.
Thanks Peter
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: GS not showing up in delegates

Post by fmw42 »

watch the terminal listing when you do ./configure and see if there are any errors and that the information listed for ghostscript shows that all components are configured by it showing yes rather than no.

You may also have to download gsfonts and put in your configuration the gsfonts location.
Post Reply