Page 1 of 1

png to bmp convert does not work for me

Posted: 2013-06-13T05:09:57-07:00
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

Re: png to bmp convert does not work for me

Posted: 2013-06-13T07:58:01-07:00
by glennrp
You have a space between bmp3: and the filename.

Re: png to bmp convert does not work for me

Posted: 2013-06-13T17:45:33-07:00
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?