 | 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
Syntaxpublic enum ImageInterpolation
Public Enumeration ImageInterpolation
public enum class ImageInterpolation
public enum ImageInterpolation
Patagames.Pdf.Enums.ImageInterpolation = function();
Patagames.Pdf.Enums.ImageInterpolation.createEnum('Patagames.Pdf.Enums.ImageInterpolation', false);
Members
| Member name | Value | Description |
---|
| Default | 0 |
Specifies default mode. Depends on the size of the source and target images.
|
| DownSample | 4 |
Specifies low quality interpolation.
|
| Bilinear | 32 |
Specifies bilinear interpolation. No prefiltering is done. This mode is not suitable for shrinking an image below 50 percent of its original size.
|
| Bicubic | 128 |
Specifies bicubic interpolation. No prefiltering is done. This mode is not suitable for shrinking an image below 25 percent of its original size.
|
| NoSmooth | 256 |
No interpolation.
|
See Also