Save Bitmap as bmp3 preserving alpha channel.

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?".
User avatar
dlemstra
Posts: 1570
Joined: 2013-05-04T15:28:54-07:00
Authentication code: 6789
Contact:

Re: Save Bitmap as bmp3 preserving alpha channel.

Post by dlemstra »

-depth does NOT mean image bit depth. It means channel bit depth.

The option will be called 'bmp3:alpha' and will be included in the next release of ImageMagick (6.9.2-7). Below are some examples:

Code: Select all

convert logo: -opaque white -define bmp3:alpha=on bmp3:logo.bmp
convert logo: -opaque white -define bmp3:alpha=true bmp3:logo.bmp
.NET + ImageMagick = Magick.NET https://github.com/dlemstra/Magick.NET, @MagickNET, Donate
VTT
Posts: 8
Joined: 2015-11-24T13:14:45-07:00
Authentication code: 1151

Re: Save Bitmap as bmp3 preserving alpha channel.

Post by VTT »

Alright, thank you.
Post Reply