Enum RleSkippedPixelHandling
Defines possible options, how skipped pixels during decoding of run length encoded bitmaps should be treated.
Namespace: SixLabors.ImageSharp.Formats.Bmp
Assembly: SixLabors.ImageSharp.dll
Syntax
public enum RleSkippedPixelHandling
Fields
| Name | Description |
|---|---|
| Black | Undefined pixels should be black. This is the default behavior and equal to how System.Drawing handles undefined pixels. |
| FirstColorOfPalette | Undefined pixels should have the first color of the palette. |
| Transparent | Undefined pixels should be transparent. |