PHP 7.0.6 Released

Imagick::getFilename

(PECL imagick 2.0.0)

Imagick::getFilenameThe filename associated with an image sequence

Description

string Imagick::getFilename ( void )

Returns the filename associated with an image sequence.

Return Values

Returns a string on success.

Errors/Exceptions

Throws ImagickException on error.

User Contributed Notes

SkepticaLee
5 months ago
This function is obviously deprecated as it only returns a zero-length string. The file name (with complete path) is returned by getImageFilename () instead.
To Top