Enum ResizeType

ResizeType enumeration

Specifies the resize type.

public enum ResizeType

Values

NameValueDescription
None0The pixels are not preserved during resize operation.
LeftTopToLeftTop1Left top point of the new image will coincide with the left top point of the original image. Crop will occur if required.
RightTopToRightTop2Right top point of the new image will coincide with the right top point of the original image. Crop will occur if required.
RightBottomToRightBottom3Right bottom point of the new image will coincide with the right bottom point of the original image. Crop will occur if required.
LeftBottomToLeftBottom4Left bottom point of the new image will coincide with the left bottom point of the original image. Crop will occur if required.
CenterToCenter5Center of the new image will coincide with the center of the original image. Crop will occur if required.
LanczosResample6Resample using lanczos algorithm with a=3.
NearestNeighbourResample7Resample using nearest neighbour algorithm.
AdaptiveResample8Resample using adaptive algorithm based on weighted and blended rational function and lanczos3 interpolation algorithms.
BilinearResample9Resample using bilinear interpolation. Image pre-filtering is allowed to remove the noice before resample, when needed

See Also