Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17676 программистов и 1734 робота. Сейчас ищут 1356 программистов ...
Imagick::setIteratorIndex - Set the iterator position
Вернуться к: Imagick
Imagick::setIteratorIndex
(PECL imagick 2.0.0)
Imagick::setIteratorIndex — Set the iterator position
Описание
bool Imagick::setIteratorIndex
( int
$index
)Set the iterator to the position in the image list specified with the index parameter. Этот метод доступен, если Imagick был скомпилирован с версией ImageMagick 6.2.9 или старше.
Список параметров
-
index
-
The position to set the iterator to
Возвращаемые значения
В случае успешной работы возвращает TRUE
.
Примеры
Пример #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();
?>
Смотрите также
- 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
Вернуться к: Imagick