(PECL imagick 2.0.0)
Imagick::setIteratorIndex — Set the iterator position
$index
)Set the iterator to the position in the image list specified with the index parameter. Ta metoda jest dostępna, jeśli rozszerzenie Imagick zostało skompilowane z ImageMagick w wersji 6.2.9 lub nowszej.
index
The position to set the iterator to
Zwraca TRUE
w przypadku sukcesu.
Przykład #1 Using Imagick::setIteratorIndex():
Create images, set and get the iterator index
<?php
$im = new Imagick();
$im->newImage(100, 100, new ImagickPixel("red"));
$im->newImage(100, 100, new ImagickPixel("green"));
$im->newImage(100, 100, new ImagickPixel("blue"));
$im->setIteratorIndex(1);
echo $im->getIteratorIndex();
?>