PHP 7.0.6 Released

Imagick::getImageDelay

(PECL imagick 2.0.0)

Imagick::getImageDelayGets the image delay

Description

int Imagick::getImageDelay ( void )

Gets the image delay.

Return Values

Returns the image delay.

Errors/Exceptions

Throws ImagickException on error.

User Contributed Notes

jabaga at abv dot bg
4 years ago
Here is how you can get the delay between the frames in gif file:

<?php
$animation
= new Imagick("file.gif");

foreach (
$animation as $frame) {
 
$delay = $animation->getImageDelay();

echo
$delay;
}
?>
ijtabahussain at live dot com
1 year ago
Seems to return the image delay in centiseconds
To Top