Open In App

PHP | Imagick clone() Function

Last Updated : 25 Jul, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

The Imagick::clone() function is an inbuilt function in PHP which is used to create a copy of Imagick object. This function creates copy of the same instance, that means it will have same properties and any change in it will not reflect to the main object.

Syntax:

Imagick Imagick::clone( void )

Parameters: This function does not accepts any parameters.

Return Value: It returns a copy of Imagick object.

Below program illustrates the Imagick::clone() function in PHP:

Program:




<?php
  
// Create new Imagick object
$image = new Imagick(
  
// Use clone() function to copy the image
$im_clone = clone $image;
  
header("Content-Type: image/gif");
   
// Display the image
echo $im_clone->getImagesBlob();
    
?>


Output:
clone image

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


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads