I know you can programmatically determine the tranparency color of a .gif
Is there a way to do the same for a Bitmap?
Right now, I am doing this heuristically by sampling around the outer edge but of course this is not 100% reliable.
I know you can programmatically determine the tranparency color of a .gif
Is there a way to do the same for a Bitmap?
Right now, I am doing this heuristically by sampling around the outer edge but of course this is not 100% reliable.
I don't believe the BMP file format supports the concept of transparency. My understanding is that if BMP images are used with transparency, it's using an application-defined colour, like RGB(255,0,255) to specify transparent areas.