Syntax:string Imagick::getImageFilename (void)
Parameters:this function takes no parameters.
Exceptions:This function throws an ImagickException on error.
Return Value:This function returns a string value containing the file path value, including the image file name.The following programs illustrate the
Imagick::getImageFilename() functionin PHP:
Program 1:
// Create a new imagick object
$imagick
=
new
Imagick();
// Get file name
$name
=
$imagick
-> getImageFilename();
echo
$name
;
?>
Output:It will return an empty string which is the default filename.
Program 2:
// Create a new imagick object with an image
// which is also located in the same folder on the local computer
$imagick
=
new
Imagick (
’ my_image.png’
);
// Get file name
$name
=
$imagick
-> getImageFilename();
echo
$name
;
?>
Output:/home/user/php/my_image.png
Link: https://www.php.net/manual/en/imagick.getimagefilename.php