Interface IImageContainer
An image container (file), made up of one or more IImageFrame instances.
Namespace: PhotoSauce.MagicScaler
Assembly: PhotoSauce.MagicScaler.dll
Syntax
public interface IImageContainer
Properties
FrameCount
The total number of image frames in this container.
Declaration
int FrameCount { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
MimeType
The MIME type of the image container, if applicable.
Declaration
string MimeType { get; }
Property Value
Type | Description |
---|---|
System.String |
Methods
GetFrame(Int32)
Retrieves an individual frame from within this container.
Declaration
IImageFrame GetFrame(int index)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | The zero-based index of the desired frame. |
Returns
Type | Description |
---|---|
IImageFrame | The IImageFrame at the requested index. |