Construct the quantizer
Namespace:
ShellBoost.Core.Utilities
Assembly:
ShellBoost.Core (in ShellBoost.Core.dll) Version: 1.8.3.0
Syntax protected Quantizer(
bool singlePass
)
Parameters
- singlePass
- Type: SystemBoolean
If true, the quantization only needs to loop through the source pixels once
Remarks
If you construct this class with a true value for singlePass, then the code will, when quantizing your image, only call the 'QuantizeImage' function.
If two passes are required, the code will call 'InitialQuantizeImage' and then 'QuantizeImage'.
See Also