(PHP 4 >= 4.0.1, PHP 5, PHP 7, PHP 8)
imagecolorclosesthwb — 取得与给定颜色最接近的色度的黑白色的索引
取得与给定颜色最接近的色度的黑白色的索引。
返回一个整数,是给定颜色最接近的色度的黑白色的索引。
版本 | 说明 |
---|---|
8.0.0 |
image 现在需要 GdImage 实例;之前需要有效的 gd resource。
|
示例 #1 使用 imagecolorclosesthwb() 示例
<?php
$im = imagecreatefromgif('php.gif');
echo 'HWB: ' . imagecolorclosesthwb($im, 116, 115, 152);
imagedestroy($im);
?>
以上示例的输出类似于:
HWB: 33