com.aspose.imaging
Class ResizeType

java.lang.Object
  extended by java.lang.Enum
      extended by com.aspose.imaging.ResizeType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable

public final class ResizeType
extends java.lang.Enum

Specifies the resize type.

See Also:
Serialized Form

Field Summary
static int CenterToCenter
           Center of the new image will coincide with the center of the original image.
static int LancrosResample
           Resample using lancros algorithm using 7x7 mask.
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 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.
 
Method Summary
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

CenterToCenter

public static final int CenterToCenter

Center of the new image will coincide with the center of the original image. Crop will occur if required.

See Also:
Constant Field Values

LancrosResample

public static final int LancrosResample

Resample using lancros algorithm using 7x7 mask.

See Also:
Constant Field Values

LeftBottomToLeftBottom

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.

See Also:
Constant Field Values

LeftTopToLeftTop

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.

See Also:
Constant Field Values

NearestNeighbourResample

public static final int NearestNeighbourResample

Resample using nearest neighbour algorithm.

See Also:
Constant Field Values

RightBottomToRightBottom

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.

See Also:
Constant Field Values

RightTopToRightTop

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.

See Also:
Constant Field Values