April 05
Prof. Ismael H. F. Santos -  ismael@tecgraf.puc-rio.br                                                          46
BMP - Information Header
ntypedef struct _Win3xBitmapInfoHeader
n{
n DWORD  Size;              /*  Size of this Header  (40) */
n DWORD  Width;            /*  Image width (pixels) */
n DWORD  Height;            /*  Image height (pixels) */
n WORD   Planes;            /*  Number of Planes (always=1) */
n WORD   BitCount;              /*  Bits per pixel (1/4/8 or 24)*/
n DWORD  Compression;      /*  Compression (0/1/2) */
n DWORD  SizeImage;           /* Size of bitmap (bytes) */
n DWORD  XPelsPerMeter;   /* Horz. resol.(pixels/m) */
n DWORD  YPelsPerMeter;   /* Vert. resol.(pixels/m) */
n DWORD  ClrUsed;               /* Num of colors in the image */
n DWORD  ClrImportant;      /* Num of important colors   */
n} WIN3XINFOHEADER;