C# Class CSharpImageLibrary.Headers.BMP_Header.BMPDIBHeader

Detailed image header.
Datei anzeigen 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_oe property

Bits per pixel.
public int BPP
return int

CompressionMethod public_oe property

Method of compression.
public int CompressionMethod
return int

Height public_oe property

Height of image.
public int Height
return int

HorizontalResolution public_oe property

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

NumColoursInPalette public_oe property

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

NumImportantColours public_oe property

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

RawImageSize public_oe property

Size of data block.
public int RawImageSize
return int

VerticalResolution public_oe property

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

Width public_oe property

Width of image.
public int Width
return int