Latest web development tutorials

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

PHP 圖像處理 PHP圖像處理

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

語法

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

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

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

參數

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

返回值

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

實例

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

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

imagedestroy($im);
?>

以上實例的輸出類似於:

HWB: 33

相關文章

PHP 圖像處理 PHP圖像處理