PHP imagecolorclosesthwb – 取得与指定的颜色最接近的色度的黑白色的索引
PHP imagecolorclosesthwb - 取得与指定的颜色最接近的色度的黑白色的索引
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
相关文章
- imagecolorclosest() 取得与指定的颜色最接近的颜色的索引值。
相关文章
- PHP 语法
- PHP echo 和 print 语句
- PHP 超级全局变量
- PHP 函数
- PHP 面向对象
- PHP 过滤器
- PHP array_column() 函数
- PHP array_key_exists() 函数
- PHP array_key_first() 函数
- PHP array_merge() 函数
- PHP array_pop() 函数
- PHP array_replace_recursive() 函数
- PHP array_udiff() 函数
- PHP array_unshift() 函数
- PHP array_walk() 函数
- PHP each() 函数
- PHP extract() 函数
- PHP key() 函数
- PHP cURL 函数
- PHP 5 Directory 函数