ImageHelperQuantizer Constructor |
Construct the quantizer.
Namespace: CMS.HelpersAssembly: CMS.Helpers (in CMS.Helpers.dll) Version: 12.0.0
Syntax public 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