PHP imagecolorclosesthwb - 取得與指定的顏色最接近的色度的黑白色的索引

PHP 圖像處理PHP 圖像處理

imagecolorclosesthwb — 取得與指定的顏色最接近的色度的黑白色的索引。

語法

int imagecolorclosesthwb ( resource $image , int $red , int $green , int $blue )

取得與給定顏色最接近的色度的黑白色的索引。

注意:此函數(shù)需要 GD 2.0.1 或更高版本(推薦 2.0.28 及更高版本)。

參數(shù)

  • image 由圖像創(chuàng)建函數(shù)(例如 imagecreatetruecolor())返回的圖像資源。
  • red 紅色成分的值。
  • green 綠色成分的值。
  • blue 藍色成分的值。

返回值

返回一個整數(shù),是給定顏色最接近的色度的黑白色的索引。

實例

<?php
$im = imagecreatefromgif('php.gif');

echo 'HWB: ' . imagecolorclosesthwb($im, 116, 115, 152);

imagedestroy($im);
?>

以上實例的輸出類似于:

HWB: 33

相關(guān)文章

PHP 圖像處理PHP 圖像處理