Aurigma Graphics Mill 5.5 for .NET
QTFrame Class
This class represents a frame returned by QTReader.
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 ReadQTFrames(ByVal aReader As QTReader)
For Each aFrame As QTFrame in aReader
'Process frames
Next
End Sub
C#
private void ReadQTFrames(QTReader aReader)
{
foreach (QTFrame aFrame in aReader)
{
//Process frames
}
}
Inheritance Hierarchy
System..::.Object
L
Aurigma.GraphicsMill..::.LockableObject
L
Aurigma.GraphicsMill.Codecs..::.Frame
L
Aurigma.GraphicsMill.Codecs..::.QTFrame
Thread Safety
Static members of this type are safe for multi-threaded operations. Instance members of this type are safe for multi-threaded operations.


