BmpSettings Class

Contains all the possible BMP writing settings.

Namespace: Aurigma.GraphicsMill.Codecs
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

C#
public sealed class BmpSettings : WriterSettings

Remarks

BMP (Bitmap Picture) is a standard bitmap image format used to store digital images on Microsoft Windows operating systems. BMP files range from monochrome (1 bit per pixel) to 32 bit color images. The BMP format can store both indexed and full-color images in various color depths, and optionally with data compression, and color profiles.

Note

BMP supports only RLE compression for 4-bit and 8-bit images.

Examples

C#
bitmap.Save(@"Images\Output\out.bmp", 
    new BmpSettings(CompressionType.Rle));

Inheritance Hierarchy

System.Object
L Aurigma.GraphicsMill.Codecs.WriterSettings
L Aurigma.GraphicsMill.Codecs.BmpSettings

Thread Safety

Static members of this type are not safe for multi-threaded operations. Instance members of this type are not safe for multi-threaded operations.

See Also

Reference

Manual