📜  PHP |想象一下 getIteratorIndex()函数

📅  最后修改于: 2022-05-13 01:56:51.077000             🧑  作者: Mango

PHP |想象一下 getIteratorIndex()函数

Imagick::getIteratorIndex()函数是PHP中的一个内置函数,用于获取当前活动图像的索引。这是 getImageIndex()函数的替代方法。

句法:

int Imagick::getIteratorIndex( void )

参数:此函数不接受任何参数。

返回值:此函数返回一个整数值,其中包含图像在堆栈中的索引。

异常:此函数在出错时抛出 ImagickException。

下面给出的程序说明了PHP中的Imagick::getIteratorIndex()函数

方案一:

getIteratorIndex(); 
echo $index; 
?> 

输出:

0 // Which means the first image.

方案二:

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')); 
    
// Get the Index 
$index = $imagick->getIteratorIndex(); 
echo $index; 
?> 

输出:

2 // Which means the third image.

参考: https://www. PHP.net/manual/en/imagick.getiteratorindex。 PHP