CrImage::Util::QuantizationAlgorithm
Inherits Enum / Comparable / Value / Object
Color quantization algorithms for palette generation.
Different algorithms offer trade-offs between quality and speed:
MedianCut: Divides color space by median, good quality, moderate speedOctree: Tree-based clustering, fast, good for large imagesPopularity: Selects most frequent colors, fastest, simpler results
Constants
MedianCut = 0
Octree = 1
Popularity = 2