Saturday, September 6, 2025
HomeLanguagesPHP | Gmagick setimagefilename() Function

PHP | Gmagick setimagefilename() Function

The Gmagick::setimagefilename() function is an inbuilt function in PHP which is used to set the filename of a particular image in a sequence.

Syntax:

Gmagick Gmagick::setimagefilename( string $filename )

Parameters: This function accepts a single parameter $filename which holds the name of the file.

Return Value: This function returns Gmagick object on success.

Exceptions: This function throws GmagickException on error.

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

Used Image:

Program 1:




<?php
  
// Create a new Gmagick object
$gmagick = new Gmagick('neveropen.png');
  
// Set the delay
$gmagick->setimagefilename('new_name.png');
   
// Get the image name
$name = $gmagick->getimagefilename();
echo $name;  
?>


Output:

new_name.png

Program 2:




<?php
  
// Create a new Gmagick object
$gmagick = new Gmagick('neveropen.png');
  
// Set the delay
$gmagick->setimagefilename('new_name.png');
   
// Save the image with new name
$gmagick->write($gmagick->getimagefilename());
echo 'Image saved successfully in the folder';
?>


Output:

This will save the image with new name in the same folder.

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

RELATED ARTICLES

Most Popular

Dominic
32271 POSTS0 COMMENTS
Milvus
82 POSTS0 COMMENTS
Nango Kala
6641 POSTS0 COMMENTS
Nicole Veronica
11807 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11869 POSTS0 COMMENTS
Shaida Kate Naidoo
6754 POSTS0 COMMENTS
Ted Musemwa
7030 POSTS0 COMMENTS
Thapelo Manthata
6705 POSTS0 COMMENTS
Umr Jansen
6721 POSTS0 COMMENTS