Filters used in Zoom and image resampling.
If you need the best quality we suggest: Hermite, Bell, BSpline, Lanczos3, Mitchell, Nearest, Bilinear, Bicubic
If you need speed we suggest: Triangle, Linear, FastLinear, WICNearestNeighbor, WICLinear, WICCubic, WICFant
For projects (white on black or black on white) we suggest: ProjectBW and ProjectWB
Namespace: HiComponents.IEvolutionAssembly: IEvolution2 (in IEvolution2.dll) Version: 14.0.0.0
Syntax
| C# | Visual Basic | Visual C++ |
public enum IEResampleFilter
Public Enumeration IEResampleFilter
public enum class IEResampleFilter
Members
| Member | Value | Description |
|---|---|---|
| None | 0 |
No filter. The fastest way to resample without filtering
|
| Triangle | 1 |
Triangle filter
|
| Hermite | 2 |
Hermite filter
|
| Bell | 3 |
Bell filter
|
| BSpline | 4 |
BSpline filter
|
| Lanczos3 | 5 |
Lanczos3 filter
|
| Mitchell | 6 |
Mitchell filter
|
| Nearest | 7 |
Nearest filter
|
| Linear | 8 |
Linear filter
|
| FastLinear | 9 |
Fast linear filter. The fastest way to resample with filtering
|
| Bilinear | 10 |
Bilinear filter (very slow)
|
| Bicubic | 11 |
Bicubic filter (very slow)
|
| ProjectBW | 12 |
Used for projects (white on black or black on white)
|
| ProjectWB | 13 |
Used for projects (white on black or black on white)
|
| WICNearestNeighbor | 14 |
WIC Nearest Neighbor
|
| WICLinear | 15 |
WIC Linear
|
| WICCubic | 16 |
WIC Cubic
|
| WICFant | 17 |
WIC Fant
|