Open In App

PHP | Imagick getImageFilename() Function

Last Updated : 19 Nov, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
The Imagick::getImageFilename() function is an inbuilt function in PHP which is used to get the filename of a particular image in a sequence. The difference between getImageFilename() and getFilename() is that the former can accept local image files and give its name along with the absolute address. Syntax:
string Imagick::getImageFilename( void )
Parameters: This function does not accept any parameters. Exceptions: This function throws ImagickException on error. Return Value: This function returns a string value containing the path value of the file including the filename of the image. Below programs illustrate the Imagick::getImageFilename() function in PHP: Program 1: php
<?php

// Create a new imagick object
$imagick = new Imagick();

// Get the Filename
$name = $imagick->getImageFilename();
echo $name;
?>
Output:
It will return an empty string which is the default filename.
Program 2: php
<?php

// Create a new imagick object with a image
// which is also on same local computer folder
$imagick = new Imagick('my_image.png');

// Get the Filename
$name = $imagick->getImageFilename();
echo $name;
?>
Output:
/home/user/php/my_image.png
Reference: https://www.php.net/manual/en/imagick.getimagefilename.php

Next Article

Similar Reads