About BITMAPINFOHEADER class #36
Answered
by
Ank1taS
H1manshu21
asked this question in
Q&A
-
About to discuss. |
Beta Was this translation helpful? Give feedback.
Answered by
Ank1taS
May 29, 2022
Replies: 1 comment
-
The Syntaxstruct tagBITMAPINFOHEADER {
DWORD biSize;
LONG biWidth;
LONG biHeight;
WORD biPlanes;
WORD biBitCount;
DWORD biCompression;
DWORD biSizeImage;
LONG biXPelsPerMeter;
LONG biYPelsPerMeter;
DWORD biClrUsed;
DWORD biClrImportant;
} ;
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
chandrakant100
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The
BITMAPINFOHEADER
structure contains information about BMP images i.e the dimensions and color format of a device-independent bitmap (DIB). Refer to Microsoft documentation and File formatSyntax