I have just downloaded and installed ImageMagick from source.
When I try execute the following command
convert splash.jpg splash.r
I get
convert: no decode delegate for this image format `splash.jpg' @ error/constitute.c/ReadImage/532.
convert: missing an image filename `splash.r' @ error/convert.c/ConvertImageCommand/2953.
I also had a problem that one of files couldn't be accessed but I resolved that by executing
export LD_LIBRARY_PATH=/usr/local/lib
Is this a bug or I am doing sth wrong?
convert -list configuration outputs
Path: /usr/local/lib/ImageMagick-6.6.3/config/configure.xml
Name Value
-------------------------------------------------------------------------------
CC gcc -std=gnu99 -std=gnu99
CFLAGS -fopenmp -g -O2 -Wall -pthread
CONFIGURE ./configure
COPYRIGHT Copyright (C) 1999-2010 ImageMagick Studio LLC
CPPFLAGS -I/usr/local/include/ImageMagick
CXX g++
CXXFLAGS -g -O2 -pthread
DEFS -DHAVE_CONFIG_H
DELEGATES x11 zlib
DISTCHECK_CONFIG_FLAGS --disable-deprecated --with-quantum-depth=16 --with-umem=no --with-autotrace=no --with-gslib=no --with-fontpath= --with-perl=no
EXEC-PREFIX /usr/local
FEATURES OpenMP
HOST x86_64-unknown-linux-gnu
LDFLAGS -L/usr/local/lib
LIB_VERSION 0x663
LIB_VERSION_NUMBER 6,6,3,5
LIBS -lMagickCore -lX11 -lz -lm -lgomp -lpthread
NAME ImageMagick
PCFLAGS -fopenmp
PREFIX /usr/local
QuantumDepth 16
RELEASE_DATE 2010-08-14
VERSION 6.6.3
WEBSITE http://www.imagemagick.org
Path: [built-in]
Name Value
-------------------------------------------------------------------------------
NAME ImageMagick
Problem with converting image
-
- Posts: 3
- Joined: 2010-08-14T14:13:40-07:00
- Authentication code: 8675308
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: Problem with converting image
DELEGATES x11 zlib
You don't have all the needed delegate libraries to support all the image formats such as jpg, tif, png etc.
You must install the delegate libraries, then reinstall IM.
see http://www.imagemagick.org/download/delegates/
-
- Posts: 3
- Joined: 2010-08-14T14:13:40-07:00
- Authentication code: 8675308
Re: Problem with converting image
Thanks for so quick response...