Friday, October 10, 2025
HomeLanguagesPHP | Imagick getIteratorIndex() Function

PHP | Imagick getIteratorIndex() Function

The Imagick::getIteratorIndex() function is an inbuilt function in PHP which is used to get the index of the current active image. This is a alternate for getImageIndex() function.

Syntax:

int Imagick::getIteratorIndex( void )

Parameters: This function doesn’t accepts any parameter.

Return Value: This function returns an integer value containing the index of the image in the stack.

Exceptions: This function throws ImagickException on error.

Below given programs illustrate the Imagick::getIteratorIndex() function in PHP:

Program 1:




<?php 
    
// Create a new imagick object 
$imagick = new Imagick( 
    
// Get the Index 
$index = $imagick->getIteratorIndex(); 
echo $index
?> 


Output:

0 // Which means the first image.

Program 2:




<?php 
    
// Create a new imagick object 
$imagick = new Imagick( 
    
// Add two more images in the same imagick object 
$imagick->addImage( new Imagick( 
    
$imagick->addImage( new Imagick( 
    
// Get the Index 
$index = $imagick->getIteratorIndex(); 
echo $index
?> 


Output:

2 // Which means the third image.

Reference: https://www.php.net/manual/en/imagick.getiteratorindex.php

RELATED ARTICLES

Most Popular

Dominic
32350 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6718 POSTS0 COMMENTS
Nicole Veronica
11880 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11941 POSTS0 COMMENTS
Shaida Kate Naidoo
6838 POSTS0 COMMENTS
Ted Musemwa
7101 POSTS0 COMMENTS
Thapelo Manthata
6794 POSTS0 COMMENTS
Umr Jansen
6794 POSTS0 COMMENTS