Imagick::getImageDelay
(PECL imagick 2, PECL imagick 3)
Imagick::getImageDelay — 画像の遅延を取得する
パラメータ
この関数にはパラメータはありません。
戻り値
画像の遅延を返します。
エラー / 例外
エラー時に ImagickException をスローします。
+add a note
User Contributed Notes 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;
}
?>