diff --git a/src/ImageSharp/Processing/Quantization/OctreeQuantizer.cs b/src/ImageSharp/Processing/Quantization/OctreeQuantizer.cs index 89fa7a90e..385ddceec 100644 --- a/src/ImageSharp/Processing/Quantization/OctreeQuantizer.cs +++ b/src/ImageSharp/Processing/Quantization/OctreeQuantizer.cs @@ -11,6 +11,9 @@ namespace SixLabors.ImageSharp.Processing.Quantization /// /// Allows the quantization of images pixels using Octrees. /// + /// + /// By default the quantizer uses dithering and a color palette of a maximum length of 255 + /// /// public class OctreeQuantizer : IQuantizer { @@ -45,7 +48,7 @@ namespace SixLabors.ImageSharp.Processing.Quantization /// /// The error diffusion algorithm, if any, to apply to the output image public OctreeQuantizer(IErrorDiffuser diffuser) - : this(diffuser, 255) + : this(diffuser, 255) { } diff --git a/src/ImageSharp/Processing/Quantization/PaletteQuantizer.cs b/src/ImageSharp/Processing/Quantization/PaletteQuantizer.cs index 06c5a9918..8f790dfc9 100644 --- a/src/ImageSharp/Processing/Quantization/PaletteQuantizer.cs +++ b/src/ImageSharp/Processing/Quantization/PaletteQuantizer.cs @@ -10,8 +10,10 @@ namespace SixLabors.ImageSharp.Processing.Quantization { /// /// Allows the quantization of images pixels using web safe colors defined in the CSS Color Module Level 4. - /// - /// Override this class to provide your own palette. + /// Override this class to provide your own palette. + /// + /// By default the quantizer uses dithering and the + /// /// public class PaletteQuantizer : IQuantizer { diff --git a/src/ImageSharp/Processing/Quantization/WuQuantizer.cs b/src/ImageSharp/Processing/Quantization/WuQuantizer.cs index 6b1287b46..f46cddfe6 100644 --- a/src/ImageSharp/Processing/Quantization/WuQuantizer.cs +++ b/src/ImageSharp/Processing/Quantization/WuQuantizer.cs @@ -9,8 +9,10 @@ using SixLabors.ImageSharp.Processing.Quantization.FrameQuantizers; namespace SixLabors.ImageSharp.Processing.Quantization { /// - /// Allows the quantization of images pixels using Xiaolin Wu's Color Quantizer. - /// + /// Allows the quantization of images pixels using Xiaolin Wu's Color Quantizer + /// + /// By default the quantizer uses dithering and a color palette of a maximum length of 255 + /// /// public class WuQuantizer : IQuantizer {