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
Descrierea
int Imagick::getImageDelay
( void
)
Gets the image delay.
Valorile întoarse
Returns the image delay.
Erori/Excepții
Emite ImagickException în caz de eroare.
jabaga at abv dot bg ¶
1 year ago
