Unfortunately, GDI + does not support alpha channels in BMP files. Here's the relevant note in:
The image class does not support alpha transparency in bitmap images. To enable alpha transparency, use PNG images with 32 bits per pixel.
It is best to convert the file to a format that supports transparency (for example, PNG) in a separate program that supports BMP alpha, or write your own code for this.
izrik source
share