Value | Meaning |
---|---|
nearest | Nearest neighbor interpolation Also known as proximal interpolation and point sampling. Visual impression: “blocky”, “pixelated”, “slightly displaced” |
bilinear | Bilinear interpolation (Uses arithmetic mean for downscaling.) Visual impression: “smooth”, “blurred” |
linearbilinear |
Interpolation methods to apply when scaling images
Each filter has its own distinctive properties.
For pixel graphics the retro look of nearest (as in nearest neighbor) is usually the option of choice.
Implementations are not required to support all enumerated options and may pick a different filter as a substitute at their own discretion.