no decode delegate for this image format `'@ error/constitut

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
adelina
Posts: 18
Joined: 2011-08-03T04:01:45-07:00
Authentication code: 8675308

no decode delegate for this image format `'@ error/constitut

Post by adelina »

hi,i want to use for exemple a command like this:
" convert rose: -level -25% rose_decontrast.gif "
but instead of "rose:" i want to use my own image name ,for ex :
" convert apa: -leverl -25% apa_deconstrast.gif "
and when i do that it doesn't works and it shows me the following errors :
" no decode delegate for this image format `' @ error/constitute.c/ReadImage/532 "
" mising an image filename 'apa_deconstrast.gif' @ error/convert.c/convertImageComand/3015"
Those error appear always when i want to use insteand of " convert rose: " "convert apa: " or "convert image:" etc
el_supremo
Posts: 1015
Joined: 2005-03-21T21:16:57-07:00

Re: no decode delegate for this image format `'@ error/const

Post by el_supremo »

If your input filename is apa.gif then you need to use:

Code: Select all

convert apa.gif -lever -25% apa_deconstrast.gif
Pete
Sorry, my ISP shutdown all personal webspace so my MagickWand Examples in C is offline.
See my message in this topic for a link to a zip of all the files.
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 `'@ error/const

Post by fmw42 »

convert apa.gif -lever -25% apa_deconstrast.gif
typo

convert apa.gif -level -25% apa_deconstrast.gif
el_supremo
Posts: 1015
Joined: 2005-03-21T21:16:57-07:00

Re: no decode delegate for this image format `'@ error/const

Post by el_supremo »

Thanks Fred. I deleted the wrong character :-)

Pete
Sorry, my ISP shutdown all personal webspace so my MagickWand Examples in C is offline.
See my message in this topic for a link to a zip of all the files.
adelina
Posts: 18
Joined: 2011-08-03T04:01:45-07:00
Authentication code: 8675308

Re: no decode delegate for this image format `'@ error/const

Post by adelina »

Thank you!
Post Reply