Open In App

PHP | ImagickPixel isSimilar() function

The ImagickPixel::isSimilar() function is an inbuilt function in PHP which is used to check the distance between the color described by this ImagickPixel object and that of the provided object, by plotting their RGB values on the color cube. If the distance between the two points is less than the fuzz value given, the colors are similar.

Syntax:



bool ImagickPixel::isSimilar( ImagickPixel $color, float $fuzz )

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

Return Value: This function returns an bool value which tells whether colors are similar (true) or not (false).



Exceptions: This function throws ImagickException on error.

Below given programs illustrate the ImagickPixel::isSimilar() function in PHP:
Program 1:




<?php
// Create a new imagickPixel object
$imagickPixel1 = new ImagickPixel('cyan');
   
// Create another new imagickPixel object
$imagickPixel2 = new ImagickPixel('pink');
   
// Check if similar or not
$isSimilar = $imagickPixel1->isSimilar($imagickPixel2, 0.1);
   
if($isSimilar) {
    echo 'Similar';
} else {
    echo 'Not Similar';
}
?>

Output:

Not Similar

Program 2:




<?php
// Create two new imagickPixel objects with same color
$imagickPixel1 = new ImagickPixel('orange');
$imagickPixel2 = new ImagickPixel('orange');
  
// Check if similar
$isSimilar = $imagickPixel1->isSimilar($imagickPixel2, 30);
  
if($isSimilar) {
    echo 'Similar';
} else {
    echo 'Not Similar';
}
?>

Output:

Similar

Program 3:




<?php
// Create a new imagick object
$imagick = new Imagick(
  
// Get the image histogram
$histogramElements = $imagick->getImageHistogram();
  
// Get the 1001th pixel
$imagickPixel1 = $histogramElements[1000];
  
// Get the 2001th pixel
$imagickPixel2 = $histogramElements[2000];
  
// Check if both pixels are similar
$isSimilar = $imagickPixel1->isSimilar($imagickPixel2, 400);
  
if ($isSimilar) {
    echo 'Similar';
} else {
    echo 'Not Similar';
}
?>

Output:

Not Similar

Reference: https://www.php.net/manual/en/imagickpixel.issimilar.php


Article Tags :