BITMAPINFO (Structures)
Last changed: 82.69.113.219

.
Summary
Defines the dimensions and color information for a DIB.

C# Definition:

[StructLayoutAttribute( LayoutKind.Sequential )]
struct BITMAPINFO {
   /// <summary>
   /// A BITMAPINFOHEADER structure that contains information about the dimensions of color format.
   /// </summary>
   public BITMAPINFOHEADER bmiHeader;

   /// <summary>
   /// An array of RGBQUAD. The elements of the array that make up the color table.
   /// </summary>
   [MarshalAsAttribute( UnmanagedType.ByValArray, SizeConst = 1, ArraySubType = UnmanagedType.Struct )]
   public RGBQUAD[] bmiColors;
}

VB Definition:

Structure BITMAPINFO
   Public TODO
End Structure

User-Defined Field Types:

RGBQUAD

Notes:

None.

Documentation
BITMAPINFO on MSDN