Class GifMetadata
Provides Gif specific metadata information for the image.
Implements
Inherited Members
Namespace: SixLabors.ImageSharp.Formats.Gif
Assembly: SixLabors.ImageSharp.dll
Syntax
public class GifMetadata : IDeepCloneable
Constructors
| Improve this Doc View SourceGifMetadata()
Initializes a new instance of the GifMetadata class.
Declaration
public GifMetadata()
Properties
| Improve this Doc View SourceColorTableMode
Gets or sets the color table mode.
Declaration
public GifColorTableMode ColorTableMode { get; set; }
Property Value
Type | Description |
---|---|
GifColorTableMode |
Comments
Gets or sets the the collection of comments about the graphics, credits, descriptions or any other type of non-control and non-graphic data.
Declaration
public IList<string> Comments { get; set; }
Property Value
Type | Description |
---|---|
IList<String> |
GlobalColorTableLength
Gets or sets the length of the global color table if present.
Declaration
public int GlobalColorTableLength { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
RepeatCount
Gets or sets the number of times any animation is repeated.
Declaration
public ushort RepeatCount { get; set; }
Property Value
Type | Description |
---|---|
UInt16 |
Methods
| Improve this Doc View SourceDeepClone()
Creates a new object that is a deep copy of the current instance.
Declaration
public IDeepCloneable DeepClone()
Returns
Type | Description |
---|---|
IDeepCloneable | The IDeepCloneable. |