png to bmp convert does not work for me

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
hatietz
Posts: 2
Joined: 2013-06-13T02:04:33-07:00
Authentication code: 6789

png to bmp convert does not work for me

Post by hatietz »

Hello
I tried in native Windows XP(ImageMagick-6.8.5-Q16) and MingW (ImageMagick-i686-pc-mingw32.tar.gz):
convert logo_160.png -background white -layers flatten +matte +dither -compress none -type optimize -colors 256 bmp3: logo_160.bmp

native Windows answered:
convert.exe: no decode delegate for this image format `' @ error/constitute.c/ReadImage/552.

MingW answered:
convert.exe: NoDecodeDelegateForThisImageFormat `output/data/graphics/logo_160.png' @ error/constitute.c/ReadImage/552.

Is there any IM package for Windows where i can do this convert? Or is my convert command not correct?

george
User avatar
glennrp
Posts: 1147
Joined: 2006-04-01T08:16:32-07:00
Location: Maryland 39.26.30N 76.16.01W

Re: png to bmp convert does not work for me

Post by glennrp »

You have a space between bmp3: and the filename.
hatietz
Posts: 2
Joined: 2013-06-13T02:04:33-07:00
Authentication code: 6789

Re: png to bmp convert does not work for me

Post by hatietz »

Thank you it worked for the native Windows but not for mingw.

when I do this:
tietz@2373-htg-t42p ~
$ convert -list Format | grep BMP
BMP* BMP rw- Microsoft Windows bitmap image
BMP2* BMP -w- Microsoft Windows bitmap image (V2)
BMP3* BMP -w- Microsoft Windows bitmap image (V3)
WBMP* WBMP rw- Wireless Bitmap (level 0) image
tietz@2373-htg-t42p ~
$ convert -list Format | grep PNG
tietz@2373-htg-t42p ~

Why does mingw(ImageMagick-i686-pc-mingw32.tar.gz) not support PNG?
Post Reply