C# Class CSharpImageLibrary.Headers.BMP_Header.BMPDIBHeader

Detailed image header.
Afficher le fichier Open project: KFreon/CSharpImageLibrary

Méthodes publiques

Свойство Type Description
BPP int
CompressionMethod int
Height int
HorizontalResolution int
NumColoursInPalette int
NumImportantColours int
RawImageSize int
VerticalResolution int
Width int

Méthodes publiques

Méthode Description
BMPDIBHeader ( byte headerBlock ) : System

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

Method Details

BMPDIBHeader() public méthode

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

Property Details

BPP public_oe property

Bits per pixel.
public int BPP
Résultat int

CompressionMethod public_oe property

Method of compression.
public int CompressionMethod
Résultat int

Height public_oe property

Height of image.
public int Height
Résultat int

HorizontalResolution public_oe property

Horizontal resolution. Probably 96 pixels per inch. Filthy Imperial measurements.
public int HorizontalResolution
Résultat int

NumColoursInPalette public_oe property

Number of colours in indexed palette.
public int NumColoursInPalette
Résultat int

NumImportantColours public_oe property

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

RawImageSize public_oe property

Size of data block.
public int RawImageSize
Résultat int

VerticalResolution public_oe property

Vertical resolution. Probably 96 pixels per inch. Filthy Imperial measurements.
public int VerticalResolution
Résultat int

Width public_oe property

Width of image.
public int Width
Résultat int