Aurigma Graphics Mill 5.5 for .NET
DSFrame Class
This class represents a frame returned by DSReader.
Namespace:
Aurigma.GraphicsMill.Codecs
Assembly:
Aurigma.GraphicsMill.Codecs.MediaProcessor (in Aurigma.GraphicsMill.Codecs.MediaProcessor.dll)
Examples
This example shows how to read frames sequentially.
Visual Basic
Private Sub ReadDSFrames(ByVal aReader As DSReader)
For Each aFrame As DSFrame in aReader
'Process frames
Next
End Sub
C#
private void ReadDSFrames(DSReader aReader)
{
foreach (DSFrame aFrame in aReader)
{
//Process frames
}
}
Inheritance Hierarchy
System..::.Object
+
Aurigma.GraphicsMill..::.LockableObject
+
Aurigma.GraphicsMill.Codecs..::.Frame
+
Aurigma.GraphicsMill.Codecs..::.DSFrame
Thread Safety
Static members of this type are safe for multi-threaded operations. Instance members of this type are safe for multi-threaded operations.


