Gmagick::quantizeimages
  The quantizeimages purpose
  
 
  Description
  
   public Gmagick Gmagick::quantizeimages
    ( int $numColors
   , int $colorspace
   , int $treeDepth
   , bool $dither
   , bool $measureError
   )
  
   
  
 
  Parameters
  
   
    
     - 
numColors
- 
      
       The number of colors.
       
- 
colorspace
- 
      
       Perform color reduction in this colorspace, typically RGBColorspace.
       
- 
treeDepth
- 
      
       Normally, this integer value is zero or one. A zero or one tells Quantize 
to choose a optimal tree depth of Log4(number_colors).% A tree of this depth generally 
allows the best representation of the reference image with the least amount of memory
 and the fastest computational speed. In some cases, such as an image with low color
 dispersion (a few number of colors), a value other than Log4(number_colors) is required. 
To expand the color tree completely, use a value of 8.
       
- 
dither
- 
      
       A value other than zero distributes the difference between an original image and the corresponding color reduced algorithm to neighboring pixels along a Hilbert curve.
       
- 
measureError
- 
      
       A value other than zero measures the difference between the original and quantized images. This difference is the total quantization error. The error is computed by summing over all pixels in an image the distance squared in RGB space between each reference pixel value and its quantized value.
       
 
 
  Return Values
  
   The Gmagick object on success
  
  
  
  Errors/Exceptions
  
   Throws an
GmagickException on error.