Class WmfBitmapInfoHeader

Class WmfBitmapInfoHeader

Namespace: Aspose.Imaging.FileFormats.Wmf.Objects
Assembly: Aspose.Imaging.dll (25.2.0)

The BitmapInfoHeader Object contains information about the dimensions and color format of a device-independent bitmap (DIB).

public class WmfBitmapInfoHeader : WmfBitmapBaseHeader

Inheritance

objectMetaObjectWmfBitmapBaseHeaderWmfBitmapInfoHeader

Inherited Members

WmfBitmapBaseHeader.HeaderSize, WmfBitmapBaseHeader.Planes, WmfBitmapBaseHeader.BitCount, object.GetType(), object.MemberwiseClone(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()

Constructors

WmfBitmapInfoHeader()

public WmfBitmapInfoHeader()

Fields

StructureSize

The structure size

public const int StructureSize = 40

Field Value

int

Properties

ColorImportant

Gets or sets a 32-bit unsigned integer that defines the number of color indexes that are required for displaying the DIB. If this value is zero, all color indexes are required

public int ColorImportant { get; set; }

Property Value

int

ColorUsed

Gets or sets a 32-bit unsigned integer that specifies the number of indexes in the color table used by the DIB, as follows: If this value is zero, the DIB uses the maximum number of colors that correspond to the BitCount value. If this value is nonzero and the BitCount value is less than 16, this value specifies the number of colors used by the DIB. If this value is nonzero and the BitCount value is 16 or greater, this value specifies the size of the color table used to optimize performance of the system palette. Note If this value is nonzero and greater than the maximum possible size of the color table based on the BitCount value, the maximum color table size SHOULD be assumed.

public int ColorUsed { get; set; }

Property Value

int

Compression

Gets or sets a 32-bit unsigned integer that defines the compression mode of the DIB. This value MUST be in the Compression Enumeration (section 2.1.1.7). This value MUST NOT specify a compressed format if the DIB is a top-down bitmap, as indicated by the Height value.

public WmfCompression Compression { get; set; }

Property Value

WmfCompression

Height

Gets or sets 32-bit signed integer that defines the height of the DIB, in pixels. This value MUST NOT be zero. If this value is positive, the DIB is a bottom-up bitmap, and its origin is the lower-left corner. If this value is negative, the DIB is a top-down bitmap, and its origin is the upper-left corner. Top-down bitmaps do not support compression. This field SHOULD specify the height of the decompressed image file, if the Compression value specifies JPEG or PNG format.

public int Height { get; set; }

Property Value

int

ImageSize

Gets or sets a 32-bit unsigned integer that defines the size, in bytes, of the image. If the Compression value is BI_RGB, this value SHOULD be zero and MUST be ignored. If the Compression value is BI_JPEG or BI_PNG, this value MUST specify the size of the JPEG or PNG image buffer, respectively.

public int ImageSize { get; set; }

Property Value

int

Width

Gets or sets a 32-bit signed integer that defines the width of the DIB, in pixels. This value MUST be positive. This field SHOULD specify the width of the decompressed image file, if the Compression value specifies JPEG or PNG format.

public int Width { get; set; }

Property Value

int

XPelsPerMeter

Gets or sets a 32-bit signed integer that defines the horizontal resolution, in pixels-per-meter, of the target device for the DIB

public int XPelsPerMeter { get; set; }

Property Value

int

YPelsPerMeter

Gets or sets a 32-bit signed integer that defines the vertical resolution, in pixels-per-meter, of the target device for the DIB

public int YPelsPerMeter { get; set; }

Property Value

int