Imagick::setImageIterations

(PECL imagick 2.0.0)

Imagick::setImageIterationsSets the image iterations

설명

bool Imagick::setImageIterations ( int $iterations )

Sets the number of iterations an animated image is repeated.

인수

iterations

The number of iterations the image should loop over. Set to '0' to loop continuously.

반환값

성공시에 TRUE를 반환합니다.

오류/예외

오류시에 ImagickException이 발생합니다.

예제

Example #1 Basic Imagick::setImageIterations() usage

<?php

$imagick 
= new Imagick(realpath("Test.gif"));

$imagick $imagick->coalesceImages();
$imagick->setImageIterations(1);
$imagick $imagick->deconstructImages();

$imagick->writeImages('/path/to/save/OnceOnly.gif'true);

?>

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top