Construct the octree quantizer

Namespace: DotNetNuke.Services.GeneratedImage.ImageQuantization
Assembly: DotNetNuke (in DotNetNuke.dll)

Syntax

C#
public OctreeQuantizer(
	int maxColors,
	int maxColorBits
)
Visual Basic
Public Sub New ( 
	maxColors As Integer,
	maxColorBits As Integer
)

Parameters

maxColors
Type: System..::..Int32
The maximum number of colors to return
maxColorBits
Type: System..::..Int32
The number of significant bits

Remarks

The Octree quantizer is a two pass algorithm. The initial pass sets up the octree, the second pass quantizes a color based on the nodes in the tree

See Also