Hi,
I have executed the following command
convert -alpha off -units pixelsperinch -resample 72 /e2/V:20SPACE:20SPCAE:203.jpg[0] -profile "/e2/ICCProfiles/Recommended/sRGB Color Space Profile.icm" -profile "/e2/ICCProfiles/Recommended/sRGB Color Space Profile.icm" "/e2/V:20SPACE:20SPCAE:203.tiff"
Result of the above command:
Output file is not generated and the below lines displayed in the console:
convert: no decode delegate for this image format `20SPACE:20SPCAE:203.jpg' @ error/constitute.c/ReadImage/555.
convert: no images defined `/e2/V:20SPACE:20SPCAE:203.tiff' @ error/convert.c/ConvertImageCommand/3147.
Ran another command which is similar to the above command, output file is generated successfully when below command executed.
Command:
convert -alpha off -units pixelsperinch -resample 72 /e2/V:20SPACE:20SPCAE:203.jpg -profile "/e2/ICCProfiles/Recommended/sRGB Color Space Profile.icm" -profile "/e2/ICCProfiles/Recommended/sRGB Color Space Profile.icm" "/e2/V:20SPACE:20SPCAE:203.tiff"
I am using 6.8.8-5 ImageMagick.
Convert -version
Version: ImageMagick 6.8.8-5 Q16 x86_64 2014-02-08 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2014 ImageMagick Studio LLC
Features: DPC Modules OpenMP
Delegates: bzlib cairo djvu fftw fontconfig freetype gslib jng jpeg lcms lqr ltdl lzma openexr png ps rsvg tiff webp wmf x xml zlib
The same command(Command having [0]) worked for me on another machine having ImagicMagick Version - 6.5.4-7
No decode delegate for image format `20SPACE:203.jpg''
Re: No decode delegate for image format `20SPACE:203.jpg''
Can you remove the colons from the filename and try it again?
Re: No decode delegate for image format `20SPACE:203.jpg''
Thanks for the reply, Without colons its working fine.
I have tried the following command:
convert -alpha off -units pixelsperinch -resample 72 /e2/test.jpg[0] -profile "/e2/ICCProfiles/Recommended/sRGB Color Space Profile.icm" -profile "/e2/ICCProfiles/Recommended/sRGB Color Space Profile.icm" "/e2/test_output.tiff"
Above command was able to generate the output file(test_output.tiff).
For some reasons we are replacing the space character(" ") with ":20".
I have tried the following command:
convert -alpha off -units pixelsperinch -resample 72 /e2/test.jpg[0] -profile "/e2/ICCProfiles/Recommended/sRGB Color Space Profile.icm" -profile "/e2/ICCProfiles/Recommended/sRGB Color Space Profile.icm" "/e2/test_output.tiff"
Above command was able to generate the output file(test_output.tiff).
For some reasons we are replacing the space character(" ") with ":20".