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

AviDrawTransitionEventArgs Constructor

Creates and initializes new AviDrawTransitionEventArgs instance.

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

Syntax

Visual Basic
Public Sub New ( _
	previousBitmap As Bitmap, _
	resultBitmap As Bitmap, _
	nextBitmap As Bitmap, _
	intermediateFrameIndex As Integer, _
	intermediateFrameCount As Integer _
)
C#
public AviDrawTransitionEventArgs(
	Bitmap previousBitmap,
	Bitmap resultBitmap,
	Bitmap nextBitmap,
	int intermediateFrameIndex,
	int intermediateFrameCount
)

Parameters

previousBitmap

Type: Aurigma.GraphicsMill.Bitmap

Bitmap object which specifies the previous key frame.
resultBitmap

Type: Aurigma.GraphicsMill.Bitmap

Bitmap object which should contain the result. This bitmap already has the necessary size and there is no need to reinitialize it. You should draw the result of previousBitmap and nextBitmap combine.
nextBitmap

Type: Aurigma.GraphicsMill.Bitmap

Bitmap object which specifies the next key frame.
intermediateFrameIndex

Type: System.Int32

An index of the current intermediate frame.
intermediateFrameCount

Type: System.Int32

Total count of intermediate frames.

See Also

Reference