Table of Contents

Enum WebpBlendMethod

Namespace
SixLabors.ImageSharp.Formats.Webp
Assembly
SixLabors.ImageSharp.dll

Indicates how transparent pixels of the current frame are to be blended with corresponding pixels of the previous canvas.

public enum WebpBlendMethod

Fields

Over = 1

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 = 0

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.