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
no decode delegate for this image format `'@ error/constitut
-
- Posts: 1015
- Joined: 2005-03-21T21:16:57-07:00
Re: no decode delegate for this image format `'@ error/const
If your input filename is apa.gif then you need to use:
Pete
Code: Select all
convert apa.gif -lever -25% apa_deconstrast.gif
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.
See my message in this topic for a link to a zip of all the files.
- 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
typoconvert apa.gif -lever -25% apa_deconstrast.gif
convert apa.gif -level -25% apa_deconstrast.gif
-
- Posts: 1015
- Joined: 2005-03-21T21:16:57-07:00
Re: no decode delegate for this image format `'@ error/const
Thanks Fred. I deleted the wrong character
Pete
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.
See my message in this topic for a link to a zip of all the files.