Page 1 of 1

No Decode Delegate For This Image Format

Posted: 2016-06-10T00:13:15-07:00
by Luyen
I develop a C/C++ program using ImageMagick(MagickWand, Magickcore).
When I run the program, I see the error "No Decode Delegate For This Image Format".
I copy the folder lib (the folder containing imagemagick lib) into the folder containing .exe file. => the problem is fixed.
However, when I build .dll, I do the same step but this does not fixed.

Can any one help me?

Re: No Decode Delegate For This Image Format

Posted: 2016-06-10T00:42:11-07:00
by fmw42
"No Decode Delegate For This Image Format".

This message typically means that you are missing one of the image format delegate libraries?

What do you get returned for

Code: Select all

convert -version
The list of Delegates may be missing one of the image formats that you are trying to use.

Re: No Decode Delegate For This Image Format

Posted: 2016-06-22T02:21:17-07:00
by Luyen
I have fixed this. Thank you :)!