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

PHP | Imagick rollImage() Function

The Imagick::rollImage() function is an inbuilt function in PHP which is used to roll an image.

Syntax:

bool Imagick::rollImage( $x, $y )

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

  • $x: This parameter stores the value of the X offset.
  • $y: This parameter stores the value of the Y offset.

Return Value: This function returns True on success.
Original Image:

Below program illustrate Imagick::rollImage() function in PHP:

Program 1:




<?php
  
// Create an Imagick object  
$imagick = new \Imagick(
  
// Use rollImage function
$imagick->rollImage(60, 50);
      
header("Content-Type: image/jpg");
  
// Display the image
echo $imagick->getImageBlob();
?>


Output:

Program 2:




<?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); 
  
// Roll the Image
$im->rollImage(70, 50);
  
$im->setImageFormat('jpeg'); 
  
header("Content-Type: image/jpg"); 
  
// Display the output image 
echo $im->getImageBlob(); 
?> 


Output:
rollImage

Reference: http://php.net/manual/en/imagick.rollimage.php

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