Enum PngDisposalMethod
Specifies how the output buffer should be changed at the end of the delay (before rendering the next frame).
Namespace: SixLabors.ImageSharp.Formats.Png
Assembly: SixLabors.ImageSharp.dll
Syntax
public enum PngDisposalMethod
Fields
Name | Description |
---|---|
DoNotDispose | No disposal is done on this frame before rendering the next; the contents of the output buffer are left as is. |
RestoreToBackground | The frame's region of the output buffer is to be cleared to fully transparent black before rendering the next frame. |
RestoreToPrevious | The frame's region of the output buffer is to be reverted to the previous contents before rendering the next frame. |