Saturday, November 22, 2025
HomeLanguagesPHP | Imagick getFilename() Function

PHP | Imagick getFilename() Function

The Imagick::getFilename() function is an inbuilt function in PHP which is used to get the filename associated with an image sequence.

Syntax:

string Imagick::getFilename( void )

Parameters: This function does not accept any parameters.

Exceptions: This function throws ImagickException on error.

Return Value: This function returns an string value on success.

Below programs illustrate the Imagick::getFilename() function in PHP:

Program 1:




<?php
  
// Create a new imagick object
$imagick = new Imagick();
  
// Get the Filename
$name = $imagick->getFilename();
  
echo $name;
?>


Output:

It will return an empty string which is the default filename.

Program 2:




<?php
  
// Create a new imagick object
$imagick = new Imagick(
  
// Set the Filename
$imagick->setFilename('myimage.png');
  
// Get the Filename
$name = $imagick->getFilename();
  
echo $name;
?>


Output:

myimage.png

Reference: https://www.php.net/manual/en/imagick.getfilename.php

RELATED ARTICLES

Most Popular

Dominic
32407 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6784 POSTS0 COMMENTS
Nicole Veronica
11931 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11999 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7168 POSTS0 COMMENTS
Thapelo Manthata
6863 POSTS0 COMMENTS
Umr Jansen
6848 POSTS0 COMMENTS