以下是如何获取 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;
}
?>