Aurigma Graphics Mill 5.5 for .NET
Frame Class
This is a base class for the frames.
Namespace:
Aurigma.GraphicsMill.Codecs
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
Syntax
Visual Basic
Public MustInherit Class Frame _ Inherits LockableObject _ Implements IFrame
C#
public abstract class Frame : LockableObject, IFrame
Remarks
In general, frames stores the following information:
- Bitmap. You can get it using GetBitmap(Bitmap) method. You can also receive its thumbnail using GetThumbnail(Bitmap, Int32, Int32) method (it will work much faster than receiving thumbnail and then resizing it, because it will be done "on-the-fly").
- Bitmap characteristics such as Width, Height, and PixelFormat. These properties will extract these data without loading entire bitmap into memory, so it works extremely fast.
- Frame position relatively entire file "canvas" (Left and Top properties). As this "canvas" defined not for all the formats, these values are meaningless for such formats. In this case they are always equal to 0.
Inheritance Hierarchy
System..::.Object
L
Aurigma.GraphicsMill..::.LockableObject
L
Aurigma.GraphicsMill.Codecs..::.Frame
L
Aurigma.GraphicsMill.Codecs..::.AdvancedPsdFrame
L
Aurigma.GraphicsMill.Codecs..::.AviFrame
L
Aurigma.GraphicsMill.Codecs..::.DSFrame
L
Aurigma.GraphicsMill.Codecs..::.QTFrame
L
Aurigma.GraphicsMill.Codecs..::.WMFrame
L
Aurigma.GraphicsMill.Codecs..::.BmpFrame
L
Aurigma.GraphicsMill.Codecs..::.CustomFrame
L
Aurigma.GraphicsMill.Codecs..::.JpegFrame
L
Aurigma.GraphicsMill.Codecs..::.GifFrame
L
Aurigma.GraphicsMill.Codecs..::.Jpeg2kFrame
L
Aurigma.GraphicsMill.Codecs..::.TiffFrame
L
Aurigma.GraphicsMill.Codecs..::.PngFrame
L
Aurigma.GraphicsMill.Codecs..::.PdfFrame
L
Aurigma.GraphicsMill.Codecs..::.SwfFrame
L
Aurigma.GraphicsMill.Codecs..::.PcxFrame
L
Aurigma.GraphicsMill.Codecs..::.PreLoadedFrame
L
Aurigma.GraphicsMill.Codecs..::.PsdFrame
L
Aurigma.GraphicsMill.Codecs..::.WbmpFrame
Thread Safety
Static members of this type are safe for multi-threaded operations. Instance members of this type are safe for multi-threaded operations.


