Hello.
I have some problems using ImageMagick. Indeed, I am unable to read any image of any type. I read on this forum that it was because i don't have the delegates but even after having installed those that still don't work. I first tried the wand.c example (http://www.imagemagick.org/script/magick-wand.php) and I get the following error :
wand.c main 39 no decode delegate for this image format 'skin.jpg' @ constitute.c/ReadImage/503
but when I type convert -list configure I can see :
DELEGATES jpeg jp2
LIBS -lMagickCore -ljpeg -lgdi32 -lm -lpthread
I also tried with the core.c example and I still get the same error.
Thanks in advance.
no decode delegate for this image format...
Re: no decode delegate for this image format...
Type
Next try
- identify -list format
Next try
- convert -debug configure logo: logo.jpg
convert -debug configure logo.jpg logo.pnm
Re: no decode delegate for this image format...
The list is empty when I type "identify -list format", how can I correct that ?
I forgot to mention that i work under cygwin, maybe that is the source of the problem ?
Thank you.
I forgot to mention that i work under cygwin, maybe that is the source of the problem ?
Thank you.
Re: no decode delegate for this image format...
Did you build from source? Try this:
- cd ImageMagick-6.5.3-2
./configure --disable-shared
make
make install
convert logo: logo.jpg
Re: no decode delegate for this image format...
I was building from the source but with a different version of ImageMagick. Using the 6.5.3-2 seem to have solved everything, it works fine now.
Thank you again !
Thank you again !
Re: no decode delegate for this image format...
Thank you so much! That solved my issue as well. Out of curiosity, what made you suggest configuring with the flag "--disable-shared"?