public final class ResizeType
extends com.aspose.ms.System.Enum
Specifies the resize type.
Modifier and Type | Field and Description |
---|---|
static int |
AdaptiveResample
Resample using adaptive algorithm based on weighted and blended rational function and lanczos3 interpolation algorithms.
|
static int |
BilinearResample
Resample using bilinear interpolation.
|
static int |
CenterToCenter
Center of the new image will coincide with the center of the original image.
|
static int |
LanczosResample
Resample using lanczos algorithm with a=3.
|
static int |
LeftBottomToLeftBottom
Left bottom point of the new image will coincide with the left bottom point of the original image.
|
static int |
LeftTopToLeftTop
Left top point of the new image will coincide with the left top point of the original image.
|
static int |
NearestNeighbourResample
Resample using nearest neighbour algorithm.
|
static int |
None
The pixels are not preserved during resize operation.
|
static int |
RightBottomToRightBottom
Right bottom point of the new image will coincide with the right bottom point of the original image.
|
static int |
RightTopToRightTop
Right top point of the new image will coincide with the right top point of the original image.
|
Clone, CloneTo, format, format, get_Caption, get_Value, getName, getName, getNames, getNames, getNames, getUnderlyingType, getUnderlyingType, getValue, getValues, getValues, getValues, isDefined, isDefined, isDefined, isDefined, parse, parse, parse, parse, parseQuick, parseQuick, register, toObject, toString
public static final int None
The pixels are not preserved during resize operation.
public static final int LeftTopToLeftTop
Left top point of the new image will coincide with the left top point of the original image. Crop will occur if required.
public static final int RightTopToRightTop
Right top point of the new image will coincide with the right top point of the original image. Crop will occur if required.
public static final int RightBottomToRightBottom
Right bottom point of the new image will coincide with the right bottom point of the original image. Crop will occur if required.
public static final int LeftBottomToLeftBottom
Left bottom point of the new image will coincide with the left bottom point of the original image. Crop will occur if required.
public static final int CenterToCenter
Center of the new image will coincide with the center of the original image. Crop will occur if required.
public static final int LanczosResample
Resample using lanczos algorithm with a=3.
public static final int NearestNeighbourResample
Resample using nearest neighbour algorithm.
public static final int AdaptiveResample
Resample using adaptive algorithm based on weighted and blended rational function and lanczos3 interpolation algorithms.
public static final int BilinearResample
Resample using bilinear interpolation. Image pre-filtering is allowed to remove the noice before resample, when needed