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

FormatReader Class

This is a base class for all format readers.

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

Syntax

Visual Basic
Public MustInherit Class FormatReader _
	Inherits SyncHandler _
	Implements IFormatReader
C#
public abstract class FormatReader : SyncHandler, IFormatReader

Remarks

This class is derived by all format readers. It provides base functionality, i.e.:

Typically you use this class (rather than its descendant) when you use CreateFormatReader(String) method of the FormatManager class to get a format reader of proper type. It allows you to write the decoding code once for all formats you are going to load.

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