This documentation is for the old version. Go to the latest Graphics Mill docs

WMFrame Class

This class represents a frame returned by WMReader.

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

Syntax

Visual Basic
Public NotInheritable Class WMFrame _
       
Inherits Frame
C#
public sealed class WMFrame : Frame

Examples

This example shows how to read frames sequentially.
Visual Basic
Private Sub ReadWMFrames(ByVal aReader As WMReader)
   
For Each aFrame As WMFrame in aReader
       
'Process frames
   
Next
End Sub
C#
private void ReadWMFrames(WMReader aReader)
{
   
foreach (WMFrame aFrame in aReader)
   
{
       
//Process frames
   
}
}

Inheritance Hierarchy

Thread Safety

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

Object Model




See Also

Reference