parent root
PHP: Imagick::getImageDelay - Manual

Imagick::getImageDelay

(PECL imagick 2.0.0)

Imagick::getImageDelayGets the image delay

Description

Imagick::getImageDelay ( void ) : int

Gets the image delay.

Return Values

Returns the image delay.

Errors/Exceptions

Throws ImagickException on error.

add a noteadd a note

User Contributed Notes 2 notes

up
3
jabaga at abv dot bg
8 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;
}
?>
up
0
ijtabahussain at live dot com
4 years ago
Seems to return the image delay in centiseconds
To Top
parent root