PHP |想象一下 setImageIndex()函数
Imagick::setImageIndex()函数是PHP中的一个内置函数,用于设置迭代器位置。
句法:
bool Imagick::setImageIndex( int $index )
参数:此函数接受一个保存索引的参数$ index。
返回值:此函数在成功时返回 TRUE。
异常:此函数在出错时抛出 ImagickException。
下面给出的程序说明了PHP中的Imagick::setImageIndex()函数:
方案一:
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 0
$imagick->setImageIndex(0);
// Get the Index
$index = $imagick->getImageIndex();
echo $index;
?>
输出:
0
方案二:
addImage( new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/20190918234528/colorize1.png'));
// Currently Cursor is at 1
// Set the Index to 0
$imagick->setImageIndex(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();
?>
输出:
参考: https://www. PHP.net/manual/en/imagick.setimageindex。 PHP