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;
}
?>
Imagick::getImageDelay
(PECL imagick 2.0.0)
Imagick::getImageDelay — Gets the image delay
Descrizione
int Imagick::getImageDelay
( void
)
Gets the image delay.
Valori restituiti
Returns the image delay.
Errori/Eccezioni
Lancia una ImagickException in caso di errore.
jabaga at abv dot bg ¶
1 year ago
