Imagick::getImageDelay

(PECL imagick 2, PECL imagick 3)

Imagick::getImageDelayGets the image delay

说明

public Imagick::getImageDelay ( ) : int

Gets the image delay.

参数

此函数没有参数。

返回值

Returns the image delay.

错误/异常

错误时抛出 ImagickException。

User Contributed Notes

ijtabahussain at live dot com 25-Jan-2015 01:27
Seems to return the image delay in centiseconds
jabaga at abv dot bg 18-Sep-2011 08:31
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;
}
?>