PHP 8.3.4 Released!

Imagick::getImageDelay

(PECL imagick 2, PECL imagick 3)

Imagick::getImageDelayGörüntü gecikmesini döndürür

Açıklama

public Imagick::getImageDelay(): int
Uyarı

Bu işlev hala belgelendirilmemiştir; sadece bağımsız değişken listesi mevcuttur.

Görüntü gecikmesini döndürür.

Bağımsız Değişkenler

Bu işlevin bağımsız değişkeni yoktur.

Dönen Değerler

Görüntü gecikmesini döndürür.

Hatalar/İstisnalar

Hata durumunda bir ImagickException istisnası oluşur.

add a note

User Contributed Notes 2 notes

up
4
jabaga at abv dot bg
12 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
9 years ago
Seems to return the image delay in centiseconds
To Top