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
Description
int Imagick::getImageDelay
( void
)
Gets the image delay.
Return Values
Returns the image delay.
Errors/Exceptions
Throws ImagickException on error.
jabaga at abv dot bg ¶
1 year ago
