La función Imagick::setIteratorIndex() es una función incorporada en PHP que se utiliza para establecer la posición del iterador de imágenes. Esta es una alternativa para la función setImageIndex() .
Sintaxis:
bool Imagick::setIteratorIndex( int $index )
Parámetros: Esta función acepta un solo parámetro $índice que contiene el índice.
Valor de retorno: esta función devuelve VERDADERO en caso de éxito.
Excepciones: esta función lanza ImagickException en caso de error.
Los siguientes programas ilustran la función Imagick::setIteratorIndex() en PHP:
Programa 1:
<?php // Create a new imagick object $imagick = new Imagick( 'https://media.geeksforgeeks.org/wp-content/uploads/20190918234528/colorize1.png'); // Add two more images in the same imagick object $imagick->addImage( new Imagick( 'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png')); // Currently Cursor is at 1 // Set the Index to 0 $imagick->setIteratorIndex(0); // getImageBlob should show last added image but // cursor is set to 0 thus it shows first image header("Content-Type: image/png"); echo $imagick->getImageBlob(); ?>
Producción:
Programa 2:
<?php // Create a new imagick object $imagick = new Imagick( 'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); // Add two more images in the same imagick object $imagick->addImage( new Imagick( 'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png')); $imagick->addImage( new Imagick( 'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png')); // Currently Cursor is at 2 // Set the Index to 1 $imagick->setIteratorIndex(1); // Get the Index $index = $imagick->getIteratorIndex(); echo $index; ?>
Producción:
1
Referencia: https://www.php.net/manual/en/imagick.setiteratorindex.php