Enum PixelColorBlendingMode
Enumerates the various color blending modes.
Namespace: SixLabors.ImageSharp.PixelFormats
Assembly: SixLabors.ImageSharp.dll
Syntax
public enum PixelColorBlendingMode
Fields
Name | Description |
---|---|
Add | Blends the 2 values by addition. |
Darken | Selects the minimum of the backdrop and source values. |
HardLight | Multiplies or screens the colors, depending on the source value. |
Lighten | Selects the max of the backdrop and source values. |
Multiply | Blends the 2 values by multiplication. |
Normal | Default blending mode, also known as "Normal" or "Alpha Blending" |
Overlay | Multiplies or screens the values, depending on the backdrop vector values. |
Screen | Multiplies the complements of the backdrop and source values, then complements the result. |
Subtract | Blends the 2 values by subtraction. |