Syntax:bool Imagick::nextImage (void)
Parameters: this function takes no parameters.
Return Value: Returns true on success.The following program illustrates the Imagick::nextImage() function in PHP:
Program :
// Declare a list of images
$images
= [
" https://media.engineerforengineer.org/wp-content/cdn-uploads/20190710102234/download3.png "
,
" http://contribute.engineerforengineer.org/wp-content/uploads/geek.png "
];
// List two images that will be loaded into the Imagick object
$count
= 0;
$image
=
new
Imagick (
$images
);
while
(
$image
-> nextImage()) {
// Increase the score to the next image in the list
$count
++;
}
$count
++;
echo
(
" The count of images in Imagick instance is "
.
$count
);
?>
Output: The count of images in $image is 2
Link: https://www.php.net/manual/en/imagick.nextimage.php