PHP 8.5.0 Beta 1 available for testing

Voting

: max(zero, eight)?
(Example: nine)

The Note You're Voting On

jabaga at abv dot bg
13 years ago
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;
}
?>

<< Back to user notes page

To Top