Back to Devexpress

DXInterpolationMode Enum

corelibraries-devexpress-dot-drawing-74a7af67.md

latest1.9 KB
Original Source

DXInterpolationMode Enum

Lists values that indicate the algorithm used when images are scaled or rotated.

Namespace : DevExpress.Drawing

Assembly : DevExpress.Drawing.v25.2.dll

NuGet Package : DevExpress.Drawing

Declaration

csharp
public enum DXInterpolationMode
vb
Public Enum DXInterpolationMode

Members

NameDescription
Default

Default mode.

| | Low |

Low quality interpolation.

| | High |

High quality interpolation.

| | Bilinear |

Bilinear interpolation. No pre-filter. This mode is not suitable for shrinking an image below 50 percent of its original size.

| | Bicubic |

Bicubic interpolation. No pre-filter. This mode is not suitable for shrinking an image below 25 percent of its original size.

| | NearestNeighbor |

Nearest-neighbor interpolation.

| | HighQualityBilinear |

High-quality, bilinear interpolation. Pre-filter is applied to ensure high-quality shrinking.

| | HighQualityBicubic |

High-quality bicubic interpolation. Pre-filter is applied to ensure high-quality shrinking. This mode produces the highest quality transformed images.

| | Invalid |

Invalid mode.

|

The following properties accept/return DXInterpolationMode values:

LibraryRelated API Members
Cross-Platform Class LibraryDXGraphics.InterpolationMode
Office File APIPdfImageCompressionOptions.InterpolationMode

See Also

DevExpress.Drawing Namespace