bitmapinfo structure

Solutions on MaxInterview for bitmapinfo structure by the best coders in the world

showing results for - "bitmapinfo structure"
Diego
07 Aug 2018
1typedef struct tagBITMAPINFOHEADER {
2  DWORD biSize;
3  LONG  biWidth;
4  LONG  biHeight;
5  WORD  biPlanes;
6  WORD  biBitCount;
7  DWORD biCompression;
8  DWORD biSizeImage;
9  LONG  biXPelsPerMeter;
10  LONG  biYPelsPerMeter;
11  DWORD biClrUsed;
12  DWORD biClrImportant;
13} BITMAPINFOHEADER, *PBITMAPINFOHEADER;
14