Tuesday, September 24, 2024
Google search engine
HomeLanguagesPHP | Gmagick current() Function

PHP | Gmagick current() Function

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('neveropen.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('neveropen.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

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!

RELATED ARTICLES

Most Popular

Recent Comments