[POSSIBLE BUG]converted bmp seem incorrectly formatted

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
GloW_on_dub
Posts: 1
Joined: 2013-07-20T05:02:10-07:00
Authentication code: 6789

[POSSIBLE BUG]converted bmp seem incorrectly formatted

Post by GloW_on_dub »

Code: Select all

wget http://www.thinkwiki.org/w/images/2/20/Simple_tux.png
convert Simple_tux.png tux.bmp
feh tux.bmp 
feh WARNING: tux.bmp - No Imlib2 loader for that file format
sxiv tux.bmp
sxiv: warning: could not open image: tux.bmp
file tux.bmp 
tux.bmp: data
a correct bmp shoudl reply :

Code: Select all

file Joe_Frillio_Holding_Tray_Black_and_White.bmp 
Joe_Frillio_Holding_Tray_Black_and_White.bmp: PC bitmap, Windows 3.x format, 436 x 553 x 24
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: [POSSIBLE BUG]converted bmp seem incorrectly formatted

Post by fmw42 »

That is an older format you want. try

convert image.png BMP3:image.bmp

see
http://www.imagemagick.org/Usage/formats/#bmp
Post Reply