Imagick::setImageIterations

(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);

?>

doc_php
2016-02-24 16:01:22
Comments
Leave a Comment

Please login to continue.