Tuesday, September 24, 2024
Google search engine
HomeLanguagesPHP | imagecolorexact() Function

PHP | imagecolorexact() Function

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, 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);
  
?>


Output:

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

Program 2:




<?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] => 39168 
    [1] => 0 
    [2] => 16777215 
    [3] => 6579252 
)

Related Articles:

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

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!

RELATED ARTICLES

Most Popular

Recent Comments