Class GifFrame
Definition
- Namespace:
- Tizen.Multimedia.Util
- Assembly:
- Tizen.Multimedia.Util.dll
- API Level:
- 4
Represents the gif image data used to encode a gif image with GifEncoder.
public class GifFrame
- Inheritance
-
GifFrame
Constructors
View SourceGifFrame(Byte[], UInt32)
Initializes a new instance of the GifFrame class with a buffer and a delay.
Declaration
public GifFrame(byte[] buffer, uint delay)
Parameters
Type | Name | Description |
---|---|---|
Byte[] | buffer | The raw image buffer to be encoded. |
UInt32 | delay | The delay for this image in milliseconds. |
Exceptions
Type | Condition |
---|---|
ArgumentNullException |
|
ArgumentException | The length of |
API Level: 4
Properties
View SourceBuffer
Gets the raw image data.
Declaration
public byte[] Buffer { get; }
Property Value
Type | Description |
---|---|
Byte[] |
API Level: 4
View SourceDelay
Gets or sets the delay for this image.
Declaration
public uint Delay { get; set; }
Property Value
Type | Description |
---|---|
UInt32 | Time delay in milliseconds. |