Friday, September 27, 2024
Google search engine
HomeLanguagesPHP | Imagick getImageFilename() Function

PHP | Imagick getImageFilename() Function

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
  
// 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
  
// 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

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!

Dominic Rubhabha-Wardslaus
Dominic Rubhabha-Wardslaushttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Recent Comments