No Decode Delegate For This Image Format

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
Luyen
Posts: 12
Joined: 2016-06-10T00:05:43-07:00
Authentication code: 1151

No Decode Delegate For This Image Format

Post 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?
Thank you
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 »

"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.
Luyen
Posts: 12
Joined: 2016-06-10T00:05:43-07:00
Authentication code: 1151

Re: No Decode Delegate For This Image Format

Post by Luyen »

I have fixed this. Thank you :)!
Thank you
Post Reply