php中使用Imagick實現映像長條圖的實現代碼

來源:互聯網
上載者:User

我並不打算詳細解釋專業名詞,有興趣的讀者可以查閱文章結尾處的參考連結,那裡有通俗易懂的解釋:

我們先找一個例子映像(用Canon 550D拍的):

例子圖片:butterfly.jpg

下面看看如何使用Imagick實現映像長條圖:複製代碼 代碼如下:<?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, $size['height'], $x, $size['height'] - $height);
$image->drawImage($draw);
$draw->clear();
}
$image->setImageFormat('png');
$image->writeImage('histogram.png');
?>

註:代碼中之所以加入$threshold這個閥值,是因為有時候某些色階的值可能會非常大,如果不做處理會干擾最終的產生效果。至於為什麼要先除256,接著又乘12,沒有什麼道理可言,都是我一拍腦袋決定的,你也可以使用別的方法。

最終產生的長條圖和Photoshop的效果基本一樣,這裡就貼一下Photoshop的:

Photoshop產生的長條圖
註:使用Photoshop開啟圖片後,選擇視窗,然後選擇長條圖即可。
本文說的實際上只是RGB通道的長條圖繪製方法,原理上,RGB長條圖是紅綠藍長條圖累加的結果,至於紅綠藍三原色各自的長條圖,上面代碼稍加修改即可。
註:XARG.ORG上有一個HTML5實現的映像長條圖開源項目,效果不錯,值得學習。
最後順便說一下,如果你對攝影知識感興趣,可參考:如何解讀數位相機的長條圖。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.