Open In App

PHP | imagecolormatch() Function

The imagecolormatch() function is an inbuilt function in PHP which is used to make the color of palette version of an image more closely match the true color version. This function returns true on success or false on failure.

Syntax:



bool imagecolormatch ( $image1, $image2 )

Parameters: This function accepts two parameters as mentioned above and described below:

Return Value: This function returns True on success or False on failure.



Below programs illustrate the imagecolormatch() function in PHP:

Program 1:




<?php
  
// Setup the true color and palette images
$image1 = imagecreatefrompng(
  
// Palette image created with same size as image1
$image2 = imagecreate(imagesx($image1), imagesy($image1));
  
// Add some colors to $image2
$color = Array();
$color[] = imagecolorallocate($image2, 152, 0, 231);
$color[] = imagecolorallocate($image2, 140, 10, 104);
$color[] = imagecolorallocate($image2, 32, 109, 155);
$color[] = imagecolorallocate($image2, 184,163, 15);
  
// Match these colors with the true color image
echo imagecolormatch($image1, $image2);
  
// Free from memory
imagedestroy($image1);
imagedestroy($image2);
?>

Output:

1

Program 2:




<?php
  
// Setup the true color and palette images
$image1 = imagecreatefrompng(
  
// Palette image created with same size as image1
$image2 = imagecreate(imagesx($image1), imagesy($image1));
   
// Add some colors to $image2
$color   = Array(
    $color[] = imagecolorallocate($image2, 25, 136, 147),
    $color[] = imagecolorallocate($image2, 230, 100, 204),
    $color[] = imagecolorallocate($image2, 21, 100, 155),
    $color[] = imagecolorallocate($image2, 41, 63, 234)
);
   
// Match these colors with the true color image
echo imagecolormatch($image1, $image2);
   
// Free from memory
imagedestroy($image1);
imagedestroy($image2);
?>

Output:

1

Related Articles:

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


Article Tags :