php中使用Imagick实现图像直方图的实现代码
前端之家收集整理的这篇文章主要介绍了
php中使用Imagick实现图像直方图的实现代码,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我并不打算详细解释专业名词,有兴趣的读者可以查阅文章结尾处的参考链接,那里有通俗易懂的解释: 我们先找一个例子图像(用Canon 550D拍的):
例子图片:butterfly.jpg 下面看看如何使用Imagick实现图像直方图:
<div class="codetitle"><a style="CURSOR: pointer" data="84910" class="copybut" id="copybut84910" onclick="doCopy('code84910')"> 代码如下:
<div class="codebody" id="code84910">
<?
PHP $file = 'butterfly.jpg';
$size = array(
'width' => 256,
'height' => 100,
);
$image = new Imagick($file);
$histogram = array_fill_keys(range(0,255),0);
foreach ($image->getImageHistogram() as $pixel) {
$rgb = $pixel->getColor();
$histogram[$rgb['r']] += $pixel->getColorCount();
$histogram[$rgb['g']] += $pixel->getColorCount();
$histogram[$rgb['b']] += $pixel->getColorCount();
}
$max = max($histogram);
$threshold = ($image->getImageWidth()
$image->getImageHeight()) / 256 12;
if ($max > $threshold) {
$max = $threshold;
}
$image = new Imagick();
$draw = new ImagickDraw();
$image->newImage($size['width'],$size['height'],'white');
foreach ($histogram as $x => $count) {
if ($count == 0) {
continue;
}
$draw->setStrokeColor('black');
$height = min($count,$max) / $max * $size['height'];
$draw->line($x,$x,$size['height'] - $height);
$image->drawImage($draw);
$draw->clear();
}
$image->setImageFormat('png');
$image->writeImage('histogram.png');
?>