Table of Contents

Enum RleSkippedPixelHandling

Namespace
SixLabors.ImageSharp.Formats.Bmp
Assembly
SixLabors.ImageSharp.dll

Defines possible options, how skipped pixels during decoding of run length encoded bitmaps should be treated.

public enum RleSkippedPixelHandling

Fields

Black = 0

Undefined pixels should be black. This is the default behavior and equal to how System.Drawing handles undefined pixels.

FirstColorOfPalette = 2

Undefined pixels should have the first color of the palette.

Transparent = 1

Undefined pixels should be transparent.