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 Comment More infoAdvertise with us Next Article PHP | Imagick getImageFilename() Function G gurrrung Follow Improve Article Tags : Web Technologies PHP PHP-function PHP-Imagick Similar Reads PHP | Gmagick getimagefilename() Function The Gmagick::getimagefilename() function is an inbuilt function in PHP which is used to get the filename of a particular image in a sequence. Syntax: string Gmagick::getimagefilename( void ) Parameters: This function doesnât accept any parameter. Return Value: This function returns an string value c 1 min read PHP | Imagick getImageProfile() Function The Imagick::getImageProfile() function is an inbuilt function in PHP which is used to return the named image profile. Syntax: string Imagick::getImageProfile( string $name ) Parameters: This function accepts a single parameter $name which holds the name of profile. Return Value: This function retur 1 min read PHP | Imagick getImageScene() Function The Imagick::getImageScene() function is an inbuilt function in PHP which is used to get the image scene of an Imagick object. Syntax: int Imagick::getImageScene( void ) Parameters: This function does not accept any parameter. Return Value: This function returns the image scene. Below programs illus 1 min read PHP | Imagick getImageIndex() Function The Imagick::getImageIndex() function is an inbuilt function in PHP which is used to get the index of the current image. Syntax: int Imagick::getImageIndex( void ) Parameters: This function does not accept any parameter. Return Value: This function returns an integer value containing the index of th 1 min read PHP | Gmagick getfilename() Function The Gmagick::getfilename() function is an inbuilt function in PHP which is used to get the filename associated with an image in Gmagick object. Syntax: string Gmagick::getfilename( void ) Parameters: This function doesnât accept any parameter. Return Value: This function returns an string value cont 1 min read Like