typedef struct tag_DibInfo
{
long width;
long height;
int bitCount;
long dpiX;
long dpiY;
int format;
} DIBINFO;
typedef DIBINFO FAR *LPDIBINFO;
Description
Structure for retrieving information about an image file
Members of the structure
|
long |
width |
Image width. |
|
long |
height |
Image height. |
|
int |
bitCount |
Bitcount of the image. |
|
long |
dpiX |
Horizontal dpi of the image. |
|
long |
dpiY |
Vertical dpi of the image. |
|
int |
format |
Image format. See FILEFORMAT in BiDIB.h. |
Requirements
Header : Declared in BiDib.h.