C# Class CSharpImageLibrary.Headers.BMP_Header.BMPDIBHeader

Detailed image header.
Show file Open project: KFreon/CSharpImageLibrary

Public Properties

Property Type Description
BPP int
CompressionMethod int
Height int
HorizontalResolution int
NumColoursInPalette int
NumImportantColours int
RawImageSize int
VerticalResolution int
Width int

Public Methods

Method Description
BMPDIBHeader ( byte headerBlock ) : System

Reads the detailed DIB header from a full file-DIB header block.

Method Details

BMPDIBHeader() public method

Reads the detailed DIB header from a full file-DIB header block.
public BMPDIBHeader ( byte headerBlock ) : System
headerBlock byte
return System

Property Details

BPP public property

Bits per pixel.
public int BPP
return int

CompressionMethod public property

Method of compression.
public int CompressionMethod
return int

Height public property

Height of image.
public int Height
return int

HorizontalResolution public property

Horizontal resolution. Probably 96 pixels per inch. Filthy Imperial measurements.
public int HorizontalResolution
return int

NumColoursInPalette public property

Number of colours in indexed palette.
public int NumColoursInPalette
return int

NumImportantColours public property

Number of important colours in palette. Usually ignored cos why put them in there then...
public int NumImportantColours
return int

RawImageSize public property

Size of data block.
public int RawImageSize
return int

VerticalResolution public property

Vertical resolution. Probably 96 pixels per inch. Filthy Imperial measurements.
public int VerticalResolution
return int

Width public property

Width of image.
public int Width
return int