Enum WebpBlendMethod
Indicates how transparent pixels of the current frame are to be blended with corresponding pixels of the previous canvas.
Namespace: SixLabors.ImageSharp.Formats.Webp
Assembly: SixLabors.ImageSharp.dll
Syntax
public enum WebpBlendMethod
Fields
| Name | Description |
|---|---|
| Over | Use alpha blending. After disposing of the previous frame, render the current frame on the canvas using alpha-blending. If the current frame does not have an alpha channel, assume alpha value of 255, effectively replacing the rectangle. |
| Source | Do not blend. After disposing of the previous frame, render the current frame on the canvas by overwriting the rectangle covered by the current frame. |