Imagick::getImageHistogram

(No version information available, might be only in CVS)

Imagick::getImageHistogram — Gets the image histogram

Описание

array Imagick::getImageHistogram ( void )
Внимание

К настоящему времени эта функция еще не была документирована; для ознакомления доступен только список аргументов.

Returns the image histogram as an array of ImagickPixel objects.

Возвращаемые значения

Returns the image histogram as an array of ImagickPixel objects, throwing ImagickException on error.

Коментарии

Автор:
Scratched my head for a while trying to figure out why this only returned a list of coloured pixels, and seemingly no colour count. Well it turns out that for some reason, the ImagickPixel class has a "getColorCount" method, which seems a strange place for it but hey.

<?php
$image 
= new Imagick("thing.png");
$pixels=$image->getImageHistogram();
foreach(
$pixels as $p){
 
$colors $p->getColor();
 foreach(
$colors as $c){
        print( 
"$c\t" );
 }
 print( 
"\t:\t" $p->getColorCount() . "\n" );
}
?>

This will print out something like:

252    250    252    1    :    125
194    156    182    1    :    126
109    18    79    1    :    11440
2    117    162    1    :    12761
255    255    255    1    :    40769

...where the colums are red, green, blue, alpha, followed by the number of times that colour appears in the image.
2011-06-20 14:02:23
http://php5.kiev.ua/manual/ru/function.imagick-getimagehistogram.html

    Поддержать сайт на родительском проекте КГБ