FrameCollection<TFrame> Class

Represents a collection of frames.

Namespace: Aurigma.GraphicsMill.Codecs
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

C#
public sealed class FrameCollection<TFrame> : FrameCollectionBase

Type Parameters

TFrame

Examples

C#
using (var reader = new TiffReader(@"Images\in.tif"))
{
    for (int i = 0; i < reader.Frames.Count; i++)
    {
        using (var bitmap = reader.Frames[i].GetBitmap())
        {
            bitmap.Save(@"Images\Output\frame_" + i.ToString() + ".jpg");
        }
    }
}

Inheritance Hierarchy

System.Object
L Aurigma.GraphicsMill.Codecs.FrameCollectionBase
L Aurigma.GraphicsMill.Codecs.FrameCollection<TFrame>

Thread Safety

Static members of this type are not safe for multi-threaded operations. Instance members of this type are not safe for multi-threaded operations.

See Also

Reference