Saturday, November 22, 2025
HomeLanguagesPHP | Imagick recolorImage() Function

PHP | Imagick recolorImage() Function

The Imagick::recolorImage() function is an inbuilt function in PHP which is used to translate, scale, shear, or rotate image colors. This function is used as the matrix size variable. Normally 5×5 matrix is used for RGBA and 6×6 is used for CMYK. 
Syntax: 
 

bool Imagick::recolorImage( $matrix )

Parameters: This function accepts single parameter $matrix which is used to store the value of the color matrix.
Return Value: This function returns True on success.
Original Image: 
 

Below program illustrate Imagick::recolorImage() function in PHP:
Program 1: 
 

php




<?php
 
// Create new Imagick object
$imagick = new \Imagick(
 
// Color Matrix
$remapColor = [ 1, 0, 0,
                0, 0, 1,
                0, 1, 0, ];
  
// Recolor the Image
$imagick->recolorImage($remapColor);
header("Content-Type: image/jpg");
 
// Display the image
echo $imagick->getImageBlob();
?>


Output: 
 

Program 2: 
 

php




<?php
 
$string = "Computer Science portal for Geeks!";
 
// Creating new image of above String
// and add color and background
$im = new Imagick();
$draw = new ImagickDraw();
 
// Fill the color in image
$draw->setFillColor(new ImagickPixel('green'));
 
// Set the text font size
$draw->setFontSize(50);
 
$matrix = $im->queryFontMetrics($draw, $string);
$draw->annotation(0, 40, $string);
$im->newImage($matrix['textWidth'], $matrix['textHeight'],
        new ImagickPixel('white'));
 
// Draw the image        
$im->drawImage($draw);
 
// Recolor the Image
$remapColor = [ 1, 300, 70,
                10, 0, 40,
                10, 10, 0, ];
  
$im->recolorImage($remapColor);
  
$im->setImageFormat('jpeg');
 
header("Content-Type: image/jpg");
 
// Display the output image
echo $im->getImageBlob();
?>


Output: 
 

recolor

Reference: http://php.net/manual/en/imagick.recolorimage.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

Dominic
32407 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6784 POSTS0 COMMENTS
Nicole Veronica
11931 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11999 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7168 POSTS0 COMMENTS
Thapelo Manthata
6863 POSTS0 COMMENTS
Umr Jansen
6848 POSTS0 COMMENTS