c++ BITMAPINFOHEADER头文件
时间: 2023-11-30 11:41:21 浏览: 109
以下是C++中BITMAPINFOHEADER头文件的示例代码:
```cpp
#include <windows.h>
typedef struct tagBITMAPINFOHEADER {
DWORD biSize;
LONG biWidth;
LONG biHeight;
WORD biPlanes;
WORD biBitCount;
DWORD biCompression;
DWORD biSizeImage;
LONG biXPelsPerMeter;
LONG biYPelsPerMeter;
DWORD biClrUsed;
DWORD biClrImportant;
} BITMAPINFOHEADER, *PBITMAPINFOHEADER;
```
BITMAPINFOHEADER结构体定义了位图的信息头,包括位图的宽度、高度、颜色深度等信息。在使用该结构体时,需要包含windows.h头文件。
阅读全文