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

PixelFormatConverter.ApplyTransform Method (Bitmap, Bitmap)

Produces transformed copy of given bitmap (which remains unchanged).

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

Syntax

Visual Basic
Public Overrides NotOverridable Sub ApplyTransform ( _
	srcBitmap As Bitmap, _
	destBitmap As Bitmap _
)
C#
public override sealed void ApplyTransform(
	Bitmap srcBitmap,
	Bitmap destBitmap
)

Parameters

srcBitmap

Type: Aurigma.GraphicsMill.Bitmap

Input Bitmap. It is not modified with the transform algorithm.
destBitmap

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