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