Open In App

PHP | imagecolorexact() Function

Improve
Improve
Like Article
Like
Save
Share
Report

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:

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.

Return Value: This function returns the index of the specified color in the palette on success, or -1 if the color does not exist.

Below programs illustrate the imagecolorexact() function in PHP.

Program 1:




<?php
  
// Set the image into variable
$image = imagecreatefrompng(
   
// 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);
  
?>


Output:

Array ( 
    [0] => 659220 
    [1] => 2012230 
    [2] => 800537 
    [3] => 10098996 
)

Program 2:





Output:

Array ( 
    [0] => 39168 
    [1] => 0 
    [2] => 16777215 
    [3] => 6579252 
)

Related Articles:

Reference: http://php.net/manual/en/function.imagecolorexact.php



Last Updated : 23 Aug, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads