Creates and initializes new SwfFrame class instance. You can associate a bitmap with this frame as well as set JPEG compression quality and frame position here.
Namespace:
Aurigma.GraphicsMill.Codecs
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
Public Sub New ( _ bitmap As Bitmap, _ left As Integer, _ top As Integer, _ quality As Integer _ )
Type: Aurigma.GraphicsMill.Bitmap
Bitmap class instance which should be associated with this frame. To put another bitmap into frame, you should use SetBitmap(Bitmap) method.Type: System.Int32
X-coordinate of the top left corner of the frame (in pixels). You can change it later using Left property.Type: System.Int32
Y-coordinate of the top left corner of the frame (in pixels). You can change it later using Top property.Type: System.Int32
Number in range [0, 100] that specifies quality of JPEG compression. Large values means higher quality, but larger file size. You can change it later using Quality property.