The Imagick class
PHP Manual

Imagick::setIteratorIndex

(PECL imagick 2.0.0)

Imagick::setIteratorIndexSet the iterator position

Descrição

bool Imagick::setIteratorIndex ( int $index )

Set the iterator to the position in the image list specified with the index parameter. Este método esta disponível apenas se Imagick foi compilado com ImageMagick versão 6.2.9 ou mais nova.

Parâmetros

index

The position to set the iterator to

Valor Retornado

Retorna TRUE em sucesso.

Exemplos

Exemplo #1 Using Imagick::setIteratorIndex():

Create images, set and get the iterator index

<?php
$im 
= new Imagick();
$im->newImage(100100, new ImagickPixel("red"));
$im->newImage(100100, new ImagickPixel("green"));
$im->newImage(100100, new ImagickPixel("blue"));

$im->setIteratorIndex(1);
echo 
$im->getIteratorIndex();
?>

Veja Também


The Imagick class
PHP Manual