[Solved] "no decode delegate for this image format" for MIFF

Post any defects you find in the released or beta versions of the ImageMagick software here. Include the ImageMagick version, OS, and any command-line required to reproduce the problem. Got a patch for a bug? Post it here.
Post Reply
henrywho
Posts: 188
Joined: 2011-08-17T06:46:40-07:00
Authentication code: 8675308

[Solved] "no decode delegate for this image format" for MIFF

Post by henrywho »

Tried ImageMagick-6.7.9-10-Q16-windows-x64-static.exe with Nic's command at http://www.wizards-toolkit.org/discours ... =1&t=21992

It says, montage.exe: no decode delegate for this image format `C:/DOCUME~1/ADMINI~1/LOCALS~1/Temp/magick-3XulB4S8' @ error/constitute.c/ReadImage/550.
Last edited by henrywho on 2012-10-06T19:00:21-07:00, edited 1 time in total.
henrywho
Posts: 188
Joined: 2011-08-17T06:46:40-07:00
Authentication code: 8675308

Re: "no decode delegate for this image format" for MIFF

Post by henrywho »

Um.. both commands below are working..... Seems I made some typo previously.

Code: Select all

convert -size 10x6 xc:grey20 +antialias -draw "fill white line 4,0 5,5" a.miff
convert a.miff a.png

Code: Select all

convert -size 10x6 xc:grey20 +antialias -draw "fill white line 4,0 5,5" -colorspace RGB +sigmoidal-contrast 7 ^
 ^( -clone 0 -filter Point -resize 100x -sigmoidal-contrast 7 -colorspace sRGB -set caption "Point" ^) ^
 ^( -clone 0 -filter Cosine -resize 100x -sigmoidal-contrast 7 -colorspace sRGB -set caption "Cosine" ^) ^
 ^( -clone 0 -filter Lanczos -resize 100x -sigmoidal-contrast 7 -colorspace sRGB -set caption "Lanczos" ^) ^
 ^( -clone 0 -define filter:window=Jinc -define filter:lobes=3 -resize 100x -sigmoidal-contrast 7 -colorspace sRGB -set caption "Ginseng" ^) ^
 ^( -clone 0 -filter Lanczos -define filter:blur=.9264075766146068 -distort Resize 100x -sigmoidal-contrast 7 -colorspace sRGB -set caption "EWA LanczosRadius3" ^) ^
 ^( -clone 0 -filter Catrom -resize 100x -sigmoidal-contrast 7 -colorspace sRGB -set caption "Catrom" ^) ^
 ^( -clone 0 -filter Lanczos -define filter:blur=.9891028367558475 -distort Resize 100x -sigmoidal-contrast 7 -colorspace sRGB -set caption "EWA LanczosSharp" ^) ^
 ^( -clone 0 -filter RobidouxSharp -distort Resize 100x -sigmoidal-contrast 7 -colorspace sRGB -set caption "EWA RobidouxSharp" ^) ^
 ^( -clone 0 -define filter:window=Quadratic -distort Resize 100x -sigmoidal-contrast 7 -colorspace sRGB -set caption "EWA QuadraticJinc" ^) ^
 ^( -clone 0 -resize 100x -sigmoidal-contrast 7 -colorspace sRGB -set caption "Mitchell" ^) ^
 ^( -clone 0 -distort Resize 100x -sigmoidal-contrast 7 -colorspace sRGB -set caption "Robidoux" ^) ^
 ^( -clone 0 -filter Quadratic -distort Resize 100x -sigmoidal-contrast 7 -colorspace sRGB -set caption "EWA Quadratic" ^) ^
 ^( -clone 0 -filter Quadratic -resize 100x -sigmoidal-contrast 7 -colorspace sRGB -set caption "Quadratic" ^) ^
 ^( -clone 0 -filter Spline -distort Resize 100x -sigmoidal-contrast 7 -colorspace sRGB -set caption "EWA Spline" ^) ^
 ^( -clone 0 -filter Spline -resize 100x -sigmoidal-contrast 7 -colorspace sRGB -set caption "Spline" ^) -delete 0 ^
 miff:- | montage -label "%[caption]" - -geometry "120x65^>+2+2" -tile x3 ^
 -background lightsteelblue -fill black ^
 -title "Sigmoidized enlargements ^(contrast=7^)" ^
 -depth 8 nicolas_enlarged_sigmoidizedNEW.png
Post Reply