Imagick::getImageDelay

(PECL imagick 2, PECL imagick 3)

Imagick::getImageDelayLee el retraso de la imagen

Descripción

public Imagick::getImageDelay(): int

Lee el retraso de la imagen.

Parámetros

Esta función no tiene parámetros.

Valores devueltos

Devuelve el retraso de la imagen. Lanza ImagickException en caso de error.

Errores/Excepciones

Lanza ImagickException en caso de error.

add a note

User Contributed Notes 2 notes

up
4
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;
}
?>
up
0
ijtabahussain at live dot com
10 years ago
Seems to return the image delay in centiseconds
To Top