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

TransformsProvider.Resize Method (Int32, Int32, InterpolationMode)

Resizes the image.

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

Syntax

Visual Basic
Public Sub Resize ( _
	width As Integer, _
	height As Integer, _
	interpolationMode As InterpolationMode _
)
C#
public void Resize(
	int width,
	int height,
	InterpolationMode interpolationMode
)

Parameters

width

Type: System.Int32

Width of resized bitmap. If it equals to 0, it is calculated automatically to preserve the aspect ratio of the source image. Both width and height cannot be 0 at the same time.
height

Type: System.Int32

Height of resized bitmap. If it equals to 0, it is calculated automatically to preserve the aspect ratio of the source image. Both width and height cannot be 0 at the same time.
interpolationMode

Type: Aurigma.GraphicsMill.Transforms.InterpolationMode

InterpolationMode value specifying interpolation algorithm used during resizing.

Remarks

You can also use Resize class to apply this transform.

Examples

Visual Basic
'Resize image proportionally to width 100
bitmap.Transforms.Resize(800, 0, _
 Aurigma.GraphicsMill.Transforms.InterpolationMode.HighQuality)
C#
//Resize image proportionally to width 100
bitmap.Transforms.Resize(800, 0, 
    Aurigma.GraphicsMill.Transforms.InterpolationMode.HighQuality);

See Also

Reference