PHP imagecolorclosesthwb – 取得與指定的顏色最接近的色度的黑白色的索引
PHP imagecolorclosesthwb - 取得與指定的顏色最接近的色度的黑白色的索引
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
相關文章
- imagecolorclosest() 取得與指定的顏色最接近的顏色的索引值。
相關文章
- PHP 語法
- PHP echo 和 print 語句
- PHP 超級全局變量
- PHP 函數(shù)
- PHP 面向對象
- PHP 過濾器
- PHP array_column() 函數(shù)
- PHP array_key_exists() 函數(shù)
- PHP array_key_first() 函數(shù)
- PHP array_merge() 函數(shù)
- PHP array_pop() 函數(shù)
- PHP array_replace_recursive() 函數(shù)
- PHP array_udiff() 函數(shù)
- PHP array_unshift() 函數(shù)
- PHP array_walk() 函數(shù)
- PHP each() 函數(shù)
- PHP extract() 函數(shù)
- PHP key() 函數(shù)
- PHP cURL 函數(shù)
- PHP 5 Directory 函數(shù)