Friday, October 10, 2025
HomeLanguagesPHP | Gmagick cyclecolormapimage() Function

PHP | Gmagick cyclecolormapimage() Function

The Gmagick::cyclecolormapimage() function is an inbuilt function in PHP which is used to displace an image colormap by a given number of positions. If you cycle the colormap a number of times you can produce a psychedelic effect. 

Syntax:

Gmagick Gmagick::cyclecolormapimage( int $displace )

Parameters: This function accepts a single parameter $displace which holds the displacement. 

Return Value: This function returns Gmagick object on success. 

Exceptions: This function throws GmagickException on error. 

Below given programs illustrate the Gmagick::cyclecolormapimage() function in PHP: 

Used Image:

  

Program 1: 

php




<?php
 
// Create a new Gmagick object
$gmagick = new Gmagick('neveropen.png');
 
// Apply the cyclecolormapimage() function
$gmagick->cyclecolormapimage(2);
 
// Output the image to browser
header('Content-type: image/png'); 
echo $gmagick
?> 


Output:

  

Program 2: 

php




<?php
 
// Create a new Gmagick object
$gmagick = new Gmagick('neveropen.png');
 
// Create a GmagickDraw object
$draw = new GmagickDraw();
 
// Set the color
$draw->setFillColor('white');
 
// Function to draw rectangle
$draw->rectangle(0, 0, 800, 400);
 
// Set the fill color
$draw->setFillColor('red');
 
// Set the font size
$draw->setfontsize(50);
 
// Annotate a text
$draw->annotate(30, 100, 'neveropen');
 
// Use of drawimage function
$gmagick->drawImage($draw);
 
// Apply the cyclecolormapimage() function
$gmagick->cyclecolormapimage(1);
 
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>


Output:

  

Reference: https://www.php.net/manual/en/gmagick.cyclecolormapimage.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
32350 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6718 POSTS0 COMMENTS
Nicole Veronica
11880 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11941 POSTS0 COMMENTS
Shaida Kate Naidoo
6838 POSTS0 COMMENTS
Ted Musemwa
7101 POSTS0 COMMENTS
Thapelo Manthata
6794 POSTS0 COMMENTS
Umr Jansen
6794 POSTS0 COMMENTS