Page 1 of 1

what is PixelSetColorCount?

Posted: 2012-04-29T06:57:43-07:00
by RetroJ
In MagickWand, what is PixelSetColorCount? Does it set the index of the color within some palette, or... ?

Re: what is PixelSetColorCount?

Posted: 2012-04-29T07:22:14-07:00
by magick
All MagickWand methods are symmetric. PixelGetColorCount() is useful for returning the color count after you generate a histogram with MagickGetImageHistogram(). MagickGetImageHistogram() utilizes the PixelSetColorCount() method to set the count of a particular color. A user might call PixelSetColorCount() for there own custom histogram-like algorithms.

Re: what is PixelSetColorCount?

Posted: 2012-04-29T07:30:46-07:00
by RetroJ
thank you