CrImage::Util::ResampleQuality
Inherits Enum / Comparable / Value / Object
Resampling quality level for thumbnail generation.
Different algorithms offer trade-offs between speed and quality:
Nearest: Fastest, pixelated results, good for pixel artBilinear: Fast, smooth results, good for most use casesBicubic: Slower, sharper results, good for photosLanczos: Slowest, highest quality, best for critical work
Constants
Nearest = 0
Bilinear = 1
Bicubic = 2
Lanczos = 3