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

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

PHP |想象一下 previousImage()函数

Imagick::previousImage()函数是PHP中的一个内置函数,用于移动到 Imagick 实例中的上一个图像。 Imagick 实例可能包含其中的图像列表,并且 Imagick previousImage() 将指针/光标移动到 Imagick 实例中图像列表中的前一个图像。

句法:

bool Imagick::previousImage( void )

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

返回值:此函数在成功时返回 TRUE。

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

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

方案一:

addImage(new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/20190918234528/colorize1.png'));
  
// Get the index
$index1 = $imagick->getIteratorIndex();
echo 'Before: ' . $index1 . '
';    // Move the cursor to first image $imagick->previousImage(); $imagick->previousImage();    // Get the index $index2 = $imagick->getIteratorIndex(); echo 'After: ' . $index2 . '
'; ?>

输出:

Before: 1
After: 0

方案二:

addImage(new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'));
  
// Move the cursor to first image
$imagick->previousImage();
$imagick->previousImage();
  
// Display the image
header("Content-Type: image/png");
echo $imagick->getImageBlob();
?>

输出:

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