Open In App

PHP | Imagick getNumberImages() Function

The Imagick::getNumberImages() function is an inbuilt function in PHP which is used to get the number of images in the Imagick object. This function can also be used to count the number of frames in a GIF animation.

Syntax:



int Imagick::getNumberImages( void )

Parameters: This function doesn’t accepts any parameter.

Return Value: This function returns an integer value containing the number of images.



Exceptions: This function throws ImagickException on error.

Below given programs illustrate the Imagick::getNumberImages() function in PHP:

Program 1:




<?php
  
// Create a new imagick object with a animation of 2 images
$imagickAnimation = new Imagick(
  
// Get the number of Images
$number = $imagickAnimation->getNumberImages();
echo $number;
?>

Output:

2

Program 2:




<?php
  
// Create a new imagick object 
$imagick = new Imagick( 
    
// Add two more images in the same imagick object 
$imagick->addImage( new Imagick( 
    
$imagick->addImage( new Imagick( 
  
// Get the number of images
$number = $imagick->getNumberImages();
echo $number;
?>

Output:

3

Reference: https://www.php.net/manual/en/imagick.getnumberimages.php


Article Tags :