Imagick::getImageDelay
(PECL imagick 2, PECL imagick 3)
Imagick::getImageDelay — Gets the image delay
参数
此函数没有参数。
返回值
Returns the image delay.
错误/异常
错误时抛出 ImagickException。
+添加备注
用户贡献的备注 2 notes
jabaga at abv dot bg ¶
13 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;
}
?>
备份地址:http://www.lvesu.com/blog/php/imagick.getimagedelay.php