The imagecolorexact() function is an inbuilt function in PHP which is used to get the index of specified color in the palette of the image. In created image files only used colors in the image are resolved. Colors present only in the palette are not resolved.
Syntax:
php
Output:
php
Output:
int imagecolorexact ( $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
// Set the image into variable
$image = imagecreatefrompng(
'https://media.geeksforgeeks.org/wp-content/uploads/imagecolor1.png');
// Create an array containing colors and image
$colors = Array();
$colors[] = imagecolorexact($image, 10, 15, 20);
$colors[] = imagecolorexact($image, 30, 180, 70);
$colors[] = imagecolorexact($image, 12, 55, 25);
$colors[] = imagecolorexact($image, 154, 25, 52);
print_r($colors);
// Free from memory
imagedestroy($image);
?>
Array (
[0] => 659220
[1] => 2012230
[2] => 800537
[3] => 10098996
)
Program 2:
<?php
// Set the image into variable
$image = imagecreatefrompng(
'https://media.geeksforgeeks.org/wp-content/uploads/imagecolor1.png');
// Create an array containing colors and image
$colors = Array(
$colors[] = imagecolorexact($image, 0, 153, 0),
$colors[] = imagecolorexact($image, 0, 0, 0),
$colors[] = imagecolorexact($image, 255, 255, 255),
$colors[] = imagecolorexact($image, 100, 100, 52)
);
print_r($colors);
// Free from memory
imagedestroy($image);
?>
Array (
[0] => 39168
[1] => 0
[2] => 16777215
[3] => 6579252
)
Related Articles:
Reference: https://www.php.net/manual/en/function.imagecolorexact.php