Page 1 of 1
Getting colour from a Pixel
Posted: 2010-08-03T05:08:56-07:00
by Archeleus
Hello, I tried googling this, but I ended up with results for Perlmagick and so on.
I'm not asking for the code but, I which method do I use to get colour from a pixel?
Re: Getting colour from a Pixel
Posted: 2010-08-03T08:32:43-07:00
by el_supremo
With MagickWand in C you would use this function:
http://www.imagemagick.org/api/magick-i ... PixelColor
With Magick++ you would use the pixleColor method.
Pete
Re: Getting colour from a Pixel
Posted: 2010-08-03T20:05:28-07:00
by anthony
For command line, look at
Extracting Image Colors
http://www.imagemagick.org/Usage/quantize/#extract
Re: Getting colour from a Pixel
Posted: 2010-08-04T05:57:59-07:00
by Archeleus
Thanks guys.