Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16172 программиста и 1779 роботов. Сейчас ищут 1809 программистов ...
Imagick::getIteratorIndex - Gets the index of the current active image
Вернуться к: Imagick
Imagick::getIteratorIndex
(PECL imagick 2.0.0)
Imagick::getIteratorIndex — Gets the index of the current active image
Описание
int Imagick::getIteratorIndex
( void
)
Returns the index of the current active image within the Imagick object. Этот метод доступен, если Imagick был скомпилирован с версией ImageMagick 6.2.9 или старше.
Возвращаемые значения
Returns an integer containing the index of the image in the stack.
Ошибки
Вызывает ImagickException при ошибке.
Примеры
Пример #1 Using Imagick::getIteratorIndex():
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::setIteratorIndex() - Set the iterator position
- Imagick::getImageIndex() - Gets the index of the current active image
- Imagick::setImageIndex() - Set the iterator position
Вернуться к: Imagick