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

ApplyMatrixTransform Constructor (Matrix, Color, InterpolationMode)

Creates and initializes ApplyMatrixTransform class instance.

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

Syntax

Visual Basic
Public Sub New ( _
	transform As Matrix, _
	backgroundColor As Color, _
	interpolationMode As InterpolationMode _
)
C#
public ApplyMatrixTransform(
	Matrix transform,
	Color backgroundColor,
	InterpolationMode interpolationMode
)

Parameters

transform

Type: Aurigma.GraphicsMill.Transforms.Matrix

Matrix class instance which specifies a matrix of the linear transform. You can change it later via Transform property.
backgroundColor

Type: Aurigma.GraphicsMill.Color

Color value which specifies the background color for the transformed image. You can change it later via BackgroundColor property.
interpolationMode

Type: Aurigma.GraphicsMill.Transforms.InterpolationMode

InterpolationMode value which specifies interpolation algorithm used during transformation. You can change it later via InterpolationMode property.

See Also

Reference