Create windows XP wallpaper compatible BMP

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
kwyjibo
Posts: 7
Joined: 2012-08-15T12:34:55-07:00
Authentication code: 67789

Create windows XP wallpaper compatible BMP

Post by kwyjibo »

I'm trying to create windows XP wallpaper compatible BMP.
After some research I supposed that this would work:

convert wallpaper.png -format BMP2 wallpaper.bmp

but the output is the same as

convert wallpaper.png wallpaper.bmp

I'm sure I need BMP2 format and both commands are giving BMP3+

Any suggestion will be appreciated, thanks.
Jason S
Posts: 103
Joined: 2010-12-14T19:42:12-07:00
Authentication code: 8675308

Re: Create windows XP wallpaper compatible BMP

Post by Jason S »

I'm not sure what effect, if any, the -format option has on 'convert'. Try
convert wallpaper.png BMP3:wallpaper.bmp
kwyjibo
Posts: 7
Joined: 2012-08-15T12:34:55-07:00
Authentication code: 67789

Re: Create windows XP wallpaper compatible BMP

Post by kwyjibo »

Jason S wrote:I'm not sure what effect, if any, the -format option has on 'convert'. Try
convert wallpaper.png BMP3:wallpaper.bmp
That worked perfectly, now I can see my command was giving me BMP4 and I needed BMP3 or BMP2.

It's weird that this is not document or it is very hidden in the documentation.

Thanks.
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Create windows XP wallpaper compatible BMP

Post by fmw42 »

It's weird that this is not document or it is very hidden in the documentation.
see
http://www.imagemagick.org/Usage/formats/#bmp
kwyjibo
Posts: 7
Joined: 2012-08-15T12:34:55-07:00
Authentication code: 67789

Re: Create windows XP wallpaper compatible BMP

Post by kwyjibo »

fmw42 wrote:
It's weird that this is not document or it is very hidden in the documentation.
see
http://www.imagemagick.org/Usage/formats/#bmp
Nice, I thought the new docs had more complete info than the old docs, guess I was wrong, thanks.
Post Reply