Enum PngBlendMethod
- Namespace
- SixLabors.ImageSharp.Formats.Png
- Assembly
- SixLabors.ImageSharp.dll
Specifies whether the frame is to be alpha blended into the current output buffer content, or whether it should completely replace its region in the output buffer.
public enum PngBlendMethod
Fields
Over = 1The frame should be composited onto the output buffer based on its alpha, using a simple OVER operation as described in the "Alpha Channel Processing" section of the PNG specification [PNG-1.2].
Source = 0All color components of the frame, including alpha, overwrite the current contents of the frame's output buffer region.