当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP imagecolorclosesthwb()用法及代码示例


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



相关用法


注:本文由纯净天空筛选整理自Mahadev99大神的英文原创作品 PHP | imagecolorclosesthwb() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。