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

BitmapTransform.ApplyTransform Method (BitmapData, Bitmap)

Produces bitmap which contains transformed copy of given bitmap data (BitmapData class instance). The bitmap data remains unchanged.

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

Syntax

Visual Basic
Public Overridable Sub ApplyTransform ( _
	source As BitmapData, _
	destination As Bitmap _
)
C#
public virtual void ApplyTransform(
	BitmapData source,
	Bitmap destination
)

Parameters

source

Type: Aurigma.GraphicsMill.BitmapData

Input BitmapData. It is not modified with the transform algorithm.
destination

Type: Aurigma.GraphicsMill.Bitmap

Output Bitmap. It should be instantiated before passing to this method. After transform algorithm completes, all data loaded to this bitmap is discarded and result is copied here.

See Also

Reference