ResizeType Enumeration
Specifies the resize type.
Module: aspose.imaging
Full Name: aspose.imaging.ResizeType
Members
| Member name | Description |
|---|---|
| ADAPTIVE_RESAMPLE | Resample using adaptive algorithm based on weighted and blended rational function and lanczos3 interpolation algorithms. |
| BELL | The Bell interpolation method |
| BILINEAR_RESAMPLE | Resample using bilinear interpolation. Image pre-filtering is allowed to remove the noice before resample, when needed |
| CATMULL_ROM | The Catmull-Rom cubic interpolation method. |
| CENTER_TO_CENTER | Center of the new image will coincide with the center of the original image. Crop will occur if required. |
| CUBIC_B_SPLINE | The CubicBSpline cubic interpolation method |
| CUBIC_CONVOLUTION | The Cubic Convolution interpolation method |
| HIGH_QUALITY_RESAMPLE | The high quality resample |
| LANCZOS_RESAMPLE | Resample using lanczos algorithm with a=3. |
| LEFT_BOTTOM_TO_LEFT_BOTTOM | Left bottom point of the new image will coincide with the left bottom point of the original image. Crop will occur if required. |
| LEFT_TOP_TO_LEFT_TOP | Left top point of the new image will coincide with the left top point of the original image. Crop will occur if required. |
| MITCHELL | The Mitchell cubic interpolation method |
| NEAREST_NEIGHBOUR_RESAMPLE | Resample using nearest neighbour algorithm. |
| NONE | The pixels are not preserved during resize operation. |
| RIGHT_BOTTOM_TO_RIGHT_BOTTOM | Right bottom point of the new image will coincide with the right bottom point of the original image. Crop will occur if required. |
| RIGHT_TOP_TO_RIGHT_TOP | Right top point of the new image will coincide with the right top point of the original image. Crop will occur if required. |
| SIN_C | The Sinc (Lanczos3) cubic interpolation method |