Enum PixelAlphaCompositionMode
Enumerates the various alpha composition modes.
Namespace: SixLabors.ImageSharp.PixelFormats
Assembly: SixLabors.ImageSharp.dll
Syntax
public enum PixelAlphaCompositionMode
Fields
Name | Description |
---|---|
Clear | The clear. |
Dest | The destination where the source does not overlap it. |
DestAtop | The source where they don't overlap otherwise dest in overlapping parts. |
DestIn | The destination where the destination and source overlap. |
DestOut | The source where the destination and source overlap. |
DestOver | The destination over the source. |
Src | Returns the source colors. |
SrcAtop | Returns the source over the destination. |
SrcIn | The source where the destination and source overlap. |
SrcOut | The destination where the destination and source overlap. |
SrcOver | Returns the destination over the source. |
Xor | Clear where they overlap. |