windowswinapibitmapgdicreatedibsection

Windows bitmaps: BITMAPV5HEADER and BITMAPINFO compatible?


From the documentation on CreateDIBSection I observe that CreateDIBSection takes a pointer to a BITMAPINFO as the second parameter.

However, I came across various places indicating that it might be allowed to pass pointers to other structures (in particular BITMAPV5HEADER), including

I have a feeling that this makes perfect sense (BITMAPV5HEADER can be seen as an "extended version" of BITMAPINFO wrt struct layout), but I could not find a single piece of official documentation on this topic.

Can anybody confirm that passing a BITMAPV5HEADER* instead of a BITMAPINFO is actually valid and possibly offer some documentation?


Solution

  • The short answer has to be no. BITMAPV5HEADER* is not a substitute for BITMAPINFO* and may not be passed whenever BITMAPINFO* is expected (simply because BITMAPINFO contains palette colors after the header, and BITMAPV5HEADER is just a header).


    It is certainly fine to pass BITMAPV5HEADER* instead of BITMAPINFO* provided that the BITMAPV5HEADER is a part of BITMAPINFO and has required kind of palette color data after it. That is documented, although kind of indirectly, through use instructions and common sense:

    Although I believe this part was not confusing for you to begin with.


    Now for the long answer.

    There appear to be two cases when BITMAPV5HEADER* can be passed for BITMAPINFO*. Neither of the two is documented in a concrete way, and if for the first one we can apply same common sense we applied above, the second one appears to be a bug in the documentation: