I'm currently doing some image manipulation stuff in C# and I'm confused about the Bgr32 Pixel format. The following descriptions are from microsoft msdn: http://msdn.microsoft.com/en-us/library/system.windows.media.pixelformats(v=vs.110).aspx
- Bgr24 is a sRGB format with 24 bits per pixel (BPP). Each color channel (blue, green, and red) is allocated 8 bits per pixel (BPP). ✓
- Bgra32 is a sRGB format with 32 bits per pixel (BPP). Each channel (blue, green, red, and alpha) is allocated 8 bits per pixel (BPP). ✓
- Bgr32 is a sRGB format with 32 bits per pixel (BPP). Each color channel (blue, green, and red) is allocated 8 bits per pixel (BPP). -> (⊙.☉)? WTF
3 channels each 8 bits -> 3x8bit = 24bit
What is/are the last channel/the remaining 8bits for?
Thanks in advance