Click or drag to resize
ImageHelperQuantizer Constructor
Construct the quantizer.

Namespace: CMS.Helpers
Assembly: CMS.Helpers (in CMS.Helpers.dll) Version: 9.0.0
Syntax
C#
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