📜  PHP | imagecolorclosesthwb()函数

📅  最后修改于: 2022-05-13 01:56:52.153000             🧑  作者: Mango

PHP | imagecolorclosesthwb()函数

imagecolorclosesthwb()函数是PHP中的一个内置函数,用于获取给定图像中色调、白色和黑色的索引。此函数返回一个带有颜色索引的整数值,其中包含最接近给定颜色的色相、白色和黑色。

句法:

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

参数:该函数接受上面提到的四个参数,如下所述:

  • $image:它由图像创建函数之一返回,例如 imagecreatetruecolor()。它用于创建图像的大小。
  • $red:此参数用于设置红色分量的值。
  • $green:此参数用于设置绿色分量的值。
  • $blue:此参数用于设置蓝色分量的值。

返回值:此函数返回一个整数值,其中包含图像中最接近给定颜色的色调、白色和黑色的索引。

下面的程序说明了PHP中的imagecolorclosesthwb()函数。

方案一:


输出:

Hue White and Blackness closest color index: 42

方案二:

 $rgb)
{
    echo 'Hue White and Blackness closest color index: '
    . imagecolorclosesthwb($image, $rgb[0], $rgb[1], $rgb[2]) . "
"; }    imagedestroy($image); ?>

输出:

Hue White and Blackness closest color index: 42
Hue White and Blackness closest color index: 101
Hue White and Blackness closest color index: 186

相关文章:

  • PHP | imagearc()函数
  • PHP | imagey()函数
  • PHP | imageellipse()函数

参考: 函数 : PHP 。 PHP