imagecolorclosesthwb 取得与给定颜色最接近的色度的黑白色的索引

发表日期:2021-07-01 08:55:57 | 来源: | | 浏览(829) 分类:GD 和图像处理 函数

imagecolorclosesthwb

(PHP 4 >= 4.0.1, PHP 5, PHP 7, PHP 8)

imagecolorclosesthwb 取得与给定颜色最接近的色度的黑白色的索引

说明

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

取得与给定颜色最接近的色度的黑白色的索引。

参数

image

由图象创建函数(例如imagecreatetruecolor())返回的图象资源。

red

红色成分的值。

green

绿色成分的值。

blue

蓝色成分的值。

返回值

返回一个整数,是给定颜色最接近的色度的黑白色的索引。

范例

示例 #1 使用 imagecolorclosesthwb() 的例子

<?php 
$im = imagecreatefromgif('php.gif');
echo 'HWB: ' . imagecolorclosesthwb($im, 116, 115, 152);
imagedestroy($im);
?>

以上例程的输出类似于:

HWB: 33

更新日志

版本 说明
5.3.0 在 Windows 平台上可用

参见

集速网 copyRight © 2015-2022 宁ICP备15000399号-1 宁公网安备 64010402001209号
与其临渊羡鱼,不如退而结网
欢迎转载、分享、引用、推荐、收藏。