Table of Contents

ImageTaskBase<T>.ResizeHeight Method

Definition

Namespace
GleamTech.ImageUltimate
Assembly
GleamTech.ImageUltimate.dll

Resizes the current image to the given height while preserving the aspect ratio. This is a shortcut to calling Resize(int, int, ResizeMode) method with 0 for width value. The command is added to the chain and not executed until the actual processing is done.

public T ResizeHeight(int height, ResizeMode resizeMode = ResizeMode.Max)

Parameters

height int

The desired height of the resulting image. Width will be automatically calculated to preserve aspect ratio. Value will be treated as percentage when Percentage is used.

resizeMode ResizeMode

The resize mode which is used to determine the resulting width and height and resolve aspect ratio differences.

Returns

T

The same instance of this class.