Page 1 of 1

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

Posted: 2011-08-05T03:22:41-07:00
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

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

Posted: 2011-08-05T07:40:34-07:00
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

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

Posted: 2011-08-05T09:36:46-07:00
by fmw42
convert apa.gif -lever -25% apa_deconstrast.gif
typo

convert apa.gif -level -25% apa_deconstrast.gif

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

Posted: 2011-08-05T11:48:54-07:00
by el_supremo
Thanks Fred. I deleted the wrong character :-)

Pete

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

Posted: 2011-08-08T05:18:47-07:00
by adelina
Thank you!