Enum PixelAlphaCompositionMode
- Namespace
- SixLabors.ImageSharp.PixelFormats
- Assembly
- SixLabors.ImageSharp.dll
Enumerates the various alpha composition modes.
public enum PixelAlphaCompositionMode
Fields
Clear = 10The clear.
Dest = 5The destination where the source does not overlap it.
DestAtop = 6The source where they don't overlap otherwise dest in overlapping parts.
DestIn = 8The destination where the destination and source overlap.
DestOut = 9The source where the destination and source overlap.
DestOver = 7The destination over the source.
Src = 1Returns the source colors.
SrcAtop = 2Returns the source over the destination.
SrcIn = 3The source where the destination and source overlap.
SrcOut = 4The destination where the destination and source overlap.
SrcOver = 0Returns the destination over the source.
Xor = 11Clear where they overlap.