Click or drag to resize

ImageInterpolation Enumeration

The ImageInterpolation enumeration specifies the algorithm that is used when images are scaled or rotated.

Namespace:  Patagames.Pdf.Enums
Assemblies:   Patagames.Pdf.Xamarin.iOS (in Patagames.Pdf.Xamarin.iOS.dll) Version: 4.84.2704
  Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.84.2704
Syntax
public enum ImageInterpolation
Members
  Member nameValueDescription
Default0 Specifies default mode. Depends on the size of the source and target images.
DownSample4 Specifies low quality interpolation.
Bilinear32 Specifies bilinear interpolation. No prefiltering is done. This mode is not suitable for shrinking an image below 50 percent of its original size.
Bicubic128 Specifies bicubic interpolation. No prefiltering is done. This mode is not suitable for shrinking an image below 25 percent of its original size.
NoSmooth256 No interpolation.
See Also