Enum PngBlendMethod
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.
Namespace: SixLabors.ImageSharp.Formats.Png
Assembly: SixLabors.ImageSharp.dll
Syntax
public enum PngBlendMethod
Fields
Name | Description |
---|---|
Over | The 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 | All color components of the frame, including alpha, overwrite the current contents of the frame's output buffer region. |