imagecolorclosesthwb()函数是PHP中的一个内置函数,用于获取给定图像中颜色,白色和黑色的索引。此函数返回带有颜色索引的整数值,该颜色索引包含最接近给定颜色的色相,白色和黑色。
用法:
int imagecolorclosesthwb ( $image, $red, $green, $blue )
参数:该函数接受上述和以下所述的四个参数:
- $image:它由图像创建函数之一(例如imagecreatetruecolor())返回。它用于创建图像的尺寸。
- $red:此参数用于设置红色分量的值。
- $green:此参数用于设置绿色分量的值。
- $blue:此参数用于设置蓝色分量的值。
返回值:此函数返回整数值,其色相,白色和黑色度的索引最接近图像中的给定颜色。
以下示例程序旨在说明PHP中的imagecolorclosesthwb()函数。
程序1:
<?php
// Create new image from given URL
$image = imagecreatefromgif(
'https://media.geeksforgeeks.org/wp-content/uploads/animateImages.gif');
// Display the index of color
echo 'Hue White and Blackness closest color index: '
. imagecolorclosesthwb($image, 5, 165, 10);
imagedestroy($image);
?>
输出:
Hue White and Blackness closest color index: 42
程序2:
<?php
// Create new image from given URL
$image = imagecreatefromgif(
'https://media.geeksforgeeks.org/wp-content/uploads/animateImages.gif');
// Array contains rgb color value
$color = array(
array(7, 150, 0),
array(53, 190, 255),
array(255, 165, 54)
);
// Loop to find closest HWB color
foreach($color as $id => $rgb)
{
echo 'Hue White and Blackness closest color index: '
. imagecolorclosesthwb($image, $rgb[0], $rgb[1], $rgb[2]) . "<br>";
}
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
相关文章:
参考: http://php.net/manual/en/function.imagecolorclosesthwb.php
相关用法
- p5.js nfp()用法及代码示例
- p5.js nfc()用法及代码示例
- p5.js nfs()用法及代码示例
- d3.js d3.hcl()用法及代码示例
- p5.js nf()用法及代码示例
- PHP cos( )用法及代码示例
- PHP sin( )用法及代码示例
- PHP tan( )用法及代码示例
- PHP pow( )用法及代码示例
- d3.js d3.map.set()用法及代码示例
- CSS var()用法及代码示例
- PHP next()用法及代码示例
注:本文由纯净天空筛选整理自Mahadev99大神的英文原创作品 PHP | imagecolorclosesthwb() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。