Click or drag to resize
InterpolationMode Enumeration
The InterpolationMode enumeration specifies the algorithm that is used when images are scaled or rotated.

Namespace: Aspose.PSD
Assembly: Aspose.PSD (in Aspose.PSD.dll) Version: 23.4
Syntax
public enum InterpolationMode
Members
  Member nameValueDescription
Invalid-1 Invalid interpolation mode.
Default0 Specifies default mode.
Low1 Specifies low quality interpolation.
High2 Specifies high quality interpolation.
Bilinear3 Specifies bilinear interpolation. No prefiltering is done. This mode is not suitable for shrinking an image below 50 percent of its original size.
Bicubic4 Specifies bicubic interpolation. No prefiltering is done. This mode is not suitable for shrinking an image below 25 percent of its original size.
NearestNeighbor5 Specifies nearest-neighbor interpolation.
HighQualityBilinear6 Specifies high-quality, bilinear interpolation. Prefiltering is performed to ensure high-quality shrinking.
HighQualityBicubic7 Specifies high-quality, bicubic interpolation. Prefiltering is performed to ensure high-quality shrinking. This mode produces the highest quality transformed images.
See Also