The imagecolorclosesthwb() function is an inbuilt function in PHP which is used to get the index of the color hue, white and blackness in the given image. This function returns an integer value with the index of the color which contains the hue, white and blackness nearest the given color.
Syntax:
php
Output:
php
Output:
int imagecolorclosesthwb ( $image, $red, $green, $blue )Parameters: This function accepts four parameters as mentioned above and described below:
- $image: It is returned by one of the image creation functions, such as imagecreatetruecolor(). It is used to create size of image.
- $red: This parameter is used to set value of red color component.
- $green: This parameter is used to set value of green color component.
- $blue: This parameter is used to set value of blue color component.
<?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: 42Program 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: 186Related Articles: Reference: https://www.php.net/manual/en/function.imagecolorclosesthwb.php