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
Descrição
int Imagick::getImageDelay
( void
)
Gets the image delay.
Valor Retornado
Returns the image delay.
Erros
Throws ImagickException on error.
jabaga at abv dot bg ¶
1 year ago
