NAMEquantize - Reduce the Number of Unique Colors in an Image
SYNOPSISQuantizeInfo * CloneQuantizeInfo( const QuantizeInfo *quantize_info ); void CompressImageColormap( Image *image ); DestroyQuantizeInfo( QuantizeInfo *quantize_info ); MagickBooleanType GetImageQuantizeError( Image *image ); GetQuantizeInfo( QuantizeInfo *quantize_info ); MagickBooleanType MapImage( Image *image, const Image *map_image, const MagickBooleanType dither ); MagickBooleanType MapImages( Image *images, Image *map_image, const MagickBooleanType dither ); MagickBooleanType OrderedDitherImage( Image *image ); MagickBooleanType PosterizeImage( Image *image, const unsigned long levels, const MagickBooleanType dither ); MagickBooleanType QuantizeImage( const QuantizeInfo *quantize_info, Image *image ); MagickBooleanType QuantizeImages( const QuantizeInfo *quantize_info, Image *images );
FUNCTION DESCRIPTIONS
CloneQuantizeInfoCloneQuantizeInfo() makes a duplicate of the given quantize info structure, or if quantize info is NULL, a new one. The format of the CloneQuantizeInfo method is: QuantizeInfo *CloneQuantizeInfo ( const QuantizeInfo *quantize_info ); A description of each parameter follows:
CompressImageColormapCompressImageColormap() compresses an image colormap by removing any duplicate or unused color entries. The format of the CompressImageColormap method is: void CompressImageColormap ( Image *image ); A description of each parameter follows:
DestroyQuantizeInfoDestroyQuantizeInfo() deallocates memory associated with an QuantizeInfo structure. The format of the DestroyQuantizeInfo method is: DestroyQuantizeInfo ( QuantizeInfo *quantize_info ); A description of each parameter follows:
GetImageQuantizeErrorGetImageQuantizeError() 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. These values are computed:
The format of the GetImageQuantizeError method is: MagickBooleanType GetImageQuantizeError ( Image *image ); A description of each parameter follows.
GetQuantizeInfoGetQuantizeInfo() initializes the QuantizeInfo structure. The format of the GetQuantizeInfo method is: GetQuantizeInfo ( QuantizeInfo *quantize_info ); A description of each parameter follows:
MapImageMapImage() replaces the colors of an image with the closest color from a reference image. The format of the MapImage method is: MagickBooleanType MapImage ( Image *image, const Image *map_image, const MagickBooleanType dither ); A description of each parameter follows:
MapImagesMapImages() replaces the colors of a sequence of images with the closest color from a reference image. The format of the MapImage method is: MagickBooleanType MapImages ( Image *images, Image *map_image, const MagickBooleanType dither ); A description of each parameter follows:
OrderedDitherImageOrderedDitherImage() uses the ordered dithering technique of reducing color images to monochrome using positional information to retain as much information as possible. The format of the OrderedDitherImage method is: MagickBooleanType OrderedDitherImage ( Image *image ); A description of each parameter follows.
PosterizeImagePosterizeImage() reduces the image to a limited number of colors for a "poster" effect. The format of the PosterizeImage method is: MagickBooleanType PosterizeImage ( Image *image, const unsigned long levels, const MagickBooleanType dither ); A description of each parameter follows:
QuantizeImageQuantizeImage() analyzes the colors within a reference image and chooses a fixed number of colors to represent the image. The goal of the algorithm is to minimize the color difference between the input and output image while minimizing the processing time. The format of the QuantizeImage method is: MagickBooleanType QuantizeImage ( const QuantizeInfo *quantize_info, Image *image ); A description of each parameter follows:
QuantizeImagesQuantizeImages() analyzes the colors within a set of reference images and chooses a fixed number of colors to represent the set. The goal of the algorithm is to minimize the color difference between the input and output images while minimizing the processing time. The format of the QuantizeImages method is: MagickBooleanType QuantizeImages ( const QuantizeInfo *quantize_info, Image *images ); A description of each parameter follows:
|