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.IEvolution
Assembly: IEvolution2 (in IEvolution2.dll) Version: 10.1.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public enum IEResampleFilter
Public Enumeration IEResampleFilter
public enum class IEResampleFilter

Members

MemberValueDescription
None0
No filter. The fastest way to resample without filtering
Triangle1
Triangle filter
Hermite2
Hermite filter
Bell3
Bell filter
BSpline4
BSpline filter
Lanczos35
Lanczos3 filter
Mitchell6
Mitchell filter
Nearest7
Nearest filter
Linear8
Linear filter
FastLinear9
Fast linear filter. The fastest way to resample with filtering
Bilinear10
Bilinear filter (very slow)
Bicubic11
Bicubic filter (very slow)
ProjectBW12
Used for projects (white on black or black on white)
ProjectWB13
Used for projects (white on black or black on white)
WICNearestNeighbor14
WIC Nearest Neighbor
WICLinear15
WIC Linear
WICCubic16
WIC Cubic
WICFant17
WIC Fant

See Also