Imagick::getImageDelay

(PECL imagick 2.0.0)

Imagick::getImageDelayGets the image delay

Опис

int Imagick::getImageDelay ( void )

Gets the image delay.

Значення, що повертаються

Returns the image delay.

Помилки/Винятки

Кидає ImagickException в разі помилки.

add a note add a note

User Contributed Notes 2 notes

up
3
jabaga at abv dot bg
12 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
9 years ago
Seems to return the image delay in centiseconds
To Top