Monday, December 22, 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
32456 POSTS0 COMMENTS
Milvus
111 POSTS0 COMMENTS
Nango Kala
6823 POSTS0 COMMENTS
Nicole Veronica
11958 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12038 POSTS0 COMMENTS
Shaida Kate Naidoo
6958 POSTS0 COMMENTS
Ted Musemwa
7203 POSTS0 COMMENTS
Thapelo Manthata
6911 POSTS0 COMMENTS
Umr Jansen
6890 POSTS0 COMMENTS