no decode delegate for this image format

Questions and postings pertaining to the development of ImageMagick, feature enhancements, and ImageMagick internals. ImageMagick source code and algorithms are discussed here. Usage questions which are too arcane for the normal user list should also be posted here.
Post Reply
wearth

no decode delegate for this image format

Post by wearth »

Hi,

I come from spain and my english is very bad. Sorry.

I installed imagemagick on debian etch , all ok, but i have problems. i paste you:

Code: Select all

 convert /var/www/s2m/app/webroot/img/properties/6268.png -format png /var/www/s2m/app/webroot/img/properties/6268original.png
convert: no decode delegate for this image format `/var/www/s2m/app/webroot/img/properties/6268.png' @ magick/constitute.c/ReadImage/526.
convert: missing an image filename `/var/www/s2m/app/webroot/img/properties/6268original.png' @ wand/convert.c/ConvertImageCommand/2710.
lab:/var/www/s2m/app/webroot/img/properties# convert -list configure

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

Name          Value
-------------------------------------------------------------------------------
CC            gcc -std=gnu99
CFLAGS        -g -O2 -Wall -W -pthread
CONFIGURE     ./configure  '--with-modules'
COPYRIGHT     Copyright (C) 1999-2008 ImageMagick Studio LLC
CPPFLAGS      -I/usr/local/include/ImageMagick
CXX           g++
CXXFLAGS      -g -O2 -Wall -W -pthread
DEFS          -DHAVE_CONFIG_H
DELEGATES
DISTCHECK_CONFIG_FLAGS --disable-deprecated --with-quantum-depth=16 --with-umem=no --with-autotrace=no --with-fontconfig=no --with-fontpath= --with-rsvg=no --with-xml=no
EXEC-PREFIX   /usr/local
HOST          i686-pc-linux-gnu
LDFLAGS       -L/usr/local/lib
LIB_VERSION   0x645
LIB_VERSION_NUMBER 6,4,5,8
LIBS          -lMagickCore -lm -lpthread
NAME          ImageMagick
PCFLAGS
PREFIX        /usr/local
QuantumDepth  16
RELEASE_DATE  2008-12-19
VERSION       6.4.5
WEBSITE       http://www.imagemagick.org
Mi problem, is that y don´t know the path for install de libraries.

in this link, tell how install http://www.imagemagick.org/script/insta ... e.php#unix . But, i don´t see none links for install libraries.

Thanks and sorry my english is very bad
santoshkumar

Re: no decode delegate for this image format

Post by santoshkumar »

Hi,

your 'convert -list configure' output shows,

DELEGATES
LIBS -lMagickCore -lm -lpthread

I think you need to install the supporting delegates (http://www.imagemagick.org/download/delegates/) then compile the IM once again and try converting.
wearth

Re: no decode delegate for this image format

Post by wearth »

Hi,

thanks you are very quickly

I want to try it, and tell us. Thanks for all.

Regards
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: no decode delegate for this image format

Post by fmw42 »

wearth wrote:Hi,

thanks you are very quickly

I want to try it, and tell us. Thanks for all.

Regards

I am no expert on these matters. But each library has its own INSTALL file that will tell you what you need to do to install it. Usually it is just
./configure
make
make install

After installing any or all the delegates you want, you need to reinstall IM so that it will recognize them.

Sorry, that is the best I can tell you.

Otherwise, install one of the precompiled binaries at
http://www.imagemagick.org/script/binary-releases.php
Post Reply