BmpReader Class

Contains methods and properties used to read BMP images.

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

Syntax

C#
public sealed class BmpReader : ImageReader

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.

BMP files can store only single image per file.

Examples

C#
using (var reader = new BmpReader(@"Images\in.bmp"))
using (var rotate = new Rotate(90))
using (var writer = new BmpWriter(@"Images\Output\out.bmp"))
{
    writer.Compression = CompressionType.Rle;
    Pipeline.Run(reader + rotate + writer);
}

Inheritance Hierarchy

System.Object

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