Open In App

PHP | Gmagick current() Function

Improve
Improve
Like Article
Like
Save
Share
Report

The Gmagick::current() function is an inbuilt function in PHP which is used to return the reference of the current Gmagick object. This function does not create any copy but returns the same instance of Gmagick.

Syntax:

Gmagick Gmagick::current( void )

Parameters: This function doesn’t accept any parameters.

Return Value: This function returns Gmagick object on success.

Exceptions: This function throws GmagickException on error.

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

Used Image:

Program 1:




<?php
  
// Create two new Gmagick object
$gmagick = new Gmagick('geeksforgeeks.png');
$gmagicknew = new Gmagick();
  
// Get the current object
$gmagicknew = $gmagick->current();
  
// Output the new Gmagick object image to browser
header('Content-type: image/png');  
echo $gmagicknew;  
?>  


Output:

Program 2:




<?php
  
// Create two new Gmagick object
$gmagick = new Gmagick('geeksforgeeks.png');
$gmagicknew = new Gmagick();
  
// Get the current object
$gmagicknew = $gmagick->current();
  
// Apply blur to new object
$gmagicknew->blurimage(20, 2);
  
// Output the image to browser
header('Content-type: image/png');  
echo $gmagicknew;  
?>  


Output:

Reference: https://www.php.net/manual/en/gmagick.current.php



Last Updated : 21 Jan, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads