Contains methods and properties used to write BMP images.
Namespace:
Aurigma.GraphicsMill.Codecs
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
public sealed class BmpWriter : ImageWriter
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.
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); }