corelibraries-devexpress-dot-drawing-dot-dxgraphics-3ce14532.md
Gets or sets the interpolation mode associated with the DXGraphics object.
Namespace : DevExpress.Drawing
Assembly : DevExpress.Drawing.v25.2.dll
NuGet Package : DevExpress.Drawing
public DXInterpolationMode InterpolationMode { get; set; }
Public Property InterpolationMode As DXInterpolationMode
| Type | Description |
|---|---|
| DXInterpolationMode |
An enumeration value that indicates how to calculate intermediate values between two endpoints.
|
Available values:
| Name | Description |
|---|---|
| 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.
|
See Also