(PECL imagick 2.0.0)
Sets the image iterations
bool Imagick::setImageIterations ( int $iterations )
Sets the number of iterations an animated image is repeated.
Parameters:
iterations
The number of iterations the image should loop over. Set to '0' to loop continuously.
Returns:
Returns TRUE
on success.
Exception:
Throws ImagickException on error.
Examples:
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); ?>
Please login to continue.