PHP |想象一下 nextImage()函数
Imagick::nextImage()函数是PHP中的一个内置函数,用于移动到 Imagick 实例中的下一个图像。 Imagick 实例可能包含其中的图像列表,并且 Imagick nextImage() 将图像列表中的下一个图像与 Imagick 实例相关联。
句法:
bool Imagick::nextImage( void )
参数:此函数不接受任何参数。
返回值:执行成功返回true。
下面的程序说明了PHP中的 Imagick::nextImage()函数:
程序:
nextImage()) {
// Increment count till we have next image on the list
$count++;
}
$count++;
echo("The count of images in Imagick instance is " . $count);
?>
输出:
The count of images in $image is 2
参考: https://www. PHP.net/manual/en/imagick.nextimage。 PHP