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