About BITMAPFILEHEADER class #37
Answered
by
Ank1taS
H1manshu21
asked this question in
Q&A
-
About to discuss in future. |
Beta Was this translation helpful? Give feedback.
Answered by
Ank1taS
May 27, 2022
Replies: 1 comment
-
The BITMAPFILEHEADER structure contains information about BMP file i.e the type, size, and layout of a file that includes a DIB. You can refer to the Microsoft documentation. and about file format Syntaxstruct tagBITMAPFILEHEADER {
WORD bfType;
DWORD bfSize;
WORD bfReserved1;
WORD bfReserved2;
DWORD bfOffBits;
} ; BMP Header
In this way size of BITMAPFILEHEADER is 14 bytes |
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 BITMAPFILEHEADER structure contains information about BMP file i.e the type, size, and layout of a file that includes a DIB. You can refer to the Microsoft documentation. and about file format
Syntax
BMP Header
BITMAPFILEHEADER
contains a total of 5 variables