以下是如何获取gif文件中帧之间的延迟:
<?php
$animation = new Imagick("file.gif");
foreach ($animation as $frame) {
$delay = $animation->getImageDelay();
echo $delay;
}
?>
(PECL imagick 2, PECL imagick 3)
Imagick::getImageDelay — 获取图像延迟
此函数没有参数。
返回图像延迟。
出错时抛出ImagickException异常。
以下是如何获取gif文件中帧之间的延迟:
<?php
$animation = new Imagick("file.gif");
foreach ($animation as $frame) {
$delay = $animation->getImageDelay();
echo $delay;
}
?>