(PHP 4 >= 4.0.1, PHP 5, PHP 7)
imagecolorclosesthwb — 取得与给定颜色最接近的色度的黑白色的索引
$image
, int $red
, int $green
, int $blue
)取得与给定颜色最接近的色度的黑白色的索引。
返回一个整数,是给定颜色最接近的色度的黑白色的索引。
Example #1 使用 imagecolorclosesthwb() 的例子
<?php
$im = imagecreatefromgif('php.gif');
echo 'HWB: ' . imagecolorclosesthwb($im, 116, 115, 152);
imagedestroy($im);
?>
以上例程的输出类似于:
HWB: 33
版本 | 说明 |
---|---|
5.3.0 | 在 Windows 平台上可用 |