No decode delegate for image format `20SPACE:203.jpg''

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
Carter J
Posts: 116
Joined: 2013-12-19T02:20:09-07:00
Authentication code: 6789

No decode delegate for image format `20SPACE:203.jpg''

Post by Carter J »

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
User avatar
dlemstra
Posts: 1570
Joined: 2013-05-04T15:28:54-07:00
Authentication code: 6789
Contact:

Re: No decode delegate for image format `20SPACE:203.jpg''

Post by dlemstra »

Can you remove the colons from the filename and try it again?
.NET + ImageMagick = Magick.NET https://github.com/dlemstra/Magick.NET, @MagickNET, Donate
Carter J
Posts: 116
Joined: 2013-12-19T02:20:09-07:00
Authentication code: 6789

Re: No decode delegate for image format `20SPACE:203.jpg''

Post by Carter J »

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".
Post Reply