Thursday, October 23, 2025
HomeLanguagesPHP | Imagick getImage() Function

PHP | Imagick getImage() Function

The Imagick::getImage() function is an inbuilt function in PHP which is used to get the current image sequence of Imagick object. This function is useful to copy content of one Imagick object into a new variable.

Syntax:

string Imagick::getImage( void )

Parameters: This function does not accept any parameters.

Exceptions: This function throws ImagickException on error.

Return Value: This function returns a new Imagick object on success.

Below programs illustrate the Imagick::getFilename() function in PHP:

Program 1:




<?php
  
// Create a new imagick object
$source_imagick = new Imagick(
  
// Copy the Image to another variable
$destination_imagick = $source_imagick->getImage();
  
// Check if image is there in new variable
header("Content-Type: image/png");
  
echo $destination_imagick->getImageBlob();
?>


Output:

Program 2:




<?php
  
// Create a new imagick object
$source_imagick = new Imagick(
  
// Add a new imagick image to next position
$source_imagick->addImage(new Imagick(
  
// Copy the Image to another variable
$destination_imagick = $source_imagick->getImage();
  
// Check if next image is also there
$destination_imagick->nextImage();
  
header("Content-Type: image/png");
echo $destination_imagick->getImageBlob();
?>


Output:

Reference: https://www.php.net/manual/en/imagick.getimage.php

RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS