PHP |想象一下 setIteratorIndex()函数
Imagick::setIteratorIndex()函数是PHP中的一个内置函数,用于设置图像迭代器的位置。这是setImageIndex()函数的替代方法。
句法:
bool Imagick::setIteratorIndex( int $index )
参数:此函数接受一个保存索引的参数$ index。
返回值:此函数在成功时返回 TRUE。
异常:此函数在出错时抛出 ImagickException。
下面给出的程序说明了PHP中的Imagick::setIteratorIndex()函数:
方案一:
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();
?>
输出:
方案二:
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;
?>
输出:
1
参考: https://www. PHP.net/manual/en/imagick.setiteratorindex。 PHP