Table of Contents

Enum PixelAlphaCompositionMode

Namespace
SixLabors.ImageSharp.PixelFormats
Assembly
SixLabors.ImageSharp.dll

Enumerates the various alpha composition modes.

public enum PixelAlphaCompositionMode

Fields

Clear = 10

The clear.

Dest = 5

The destination where the source does not overlap it.

DestAtop = 6

The source where they don't overlap otherwise dest in overlapping parts.

DestIn = 8

The destination where the destination and source overlap.

DestOut = 9

The source where the destination and source overlap.

DestOver = 7

The destination over the source.

Src = 1

Returns the source colors.

SrcAtop = 2

Returns the source over the destination.

SrcIn = 3

The source where the destination and source overlap.

SrcOut = 4

The destination where the destination and source overlap.

SrcOver = 0

Returns the destination over the source.

Xor = 11

Clear where they overlap.