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;
}
?>
(PECL imagick 2, PECL imagick 3)
Imagick::getImageDelay — Görüntü gecikmesini döndürür
Bu işlev hala belgelendirilmemiştir; sadece bağımsız değişken listesi mevcuttur.
Görüntü gecikmesini döndürür.
Bu işlevin bağımsız değişkeni yoktur.
Görüntü gecikmesini döndürür.
Hata durumunda bir ImagickException istisnası oluşur.
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;
}
?>