Imagick::setIteratorIndex
(PECL imagick 2, PECL imagick 3)
Imagick::setIteratorIndex — Set the iterator position
Beschreibung
$index
): boolSet the iterator to the position in the image list specified with the index parameter. Diese Funktion ist verfügbar, wenn Imagick gegen die ImageMagick-Version 6.2.9 oder höher kompiliert wurde.
Parameter-Liste
-
index
-
The position to set the iterator to
Rückgabewerte
Liefert true
bei Erfolg.
Beispiele
Beispiel #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();
?>
Siehe auch
- Imagick::getIteratorIndex() - Gets the index of the current active image
- Imagick::getImageIndex() - Gets the index of the current active image
- Imagick::setImageIndex() - Set the iterator position