Enum GifDisposalMethod
Provides enumeration for instructing the decoder what to do with the last image in an animation sequence. http://www.w3.org/Graphics/GIF/spec-gif89a.txt section 23
Namespace: SixLabors.ImageSharp.Formats.Gif
Assembly: SixLabors.ImageSharp.dll
Syntax
public enum GifDisposalMethod
Fields
Name | Description |
---|---|
NotDispose | Do not dispose. The graphic is to be left in place. |
RestoreToBackground | Restore to background color. The area used by the graphic must be restored to the background color. |
RestoreToPrevious | Restore to previous. The decoder is required to restore the area overwritten by the graphic with what was there prior to rendering the graphic. |
Unspecified | No disposal specified. The decoder is not required to take any action. |