Bitmap conversie naar 32-bit

toolboxWebsite

Met dit tooltje kun je bitmap (.BMP) bestanden omzetten naar een 32-bit bitmap bestand, dit is een bitmap met een “alpha channel”.

Het programma is superklein (5KB) en werkt met de volgende commandolijn:

convert2bmp.exe [bestand in] [bestand uit]

Meer informatie (ENG)

What the program does

  • Load the image
  • Set the white color as the transparent color, thus making use of the alpha channel and forcing the image to be 32bit
  • Save the image

Source Code (C#)
Basically it looks like this:


Of course the actual version is 10 times longer due to error handling code.