Saturday, November 22, 2025
HomeLanguagesPHP | Imagick getNumberImages() Function

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

RELATED ARTICLES

Most Popular

Dominic
32407 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6784 POSTS0 COMMENTS
Nicole Veronica
11931 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11999 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7168 POSTS0 COMMENTS
Thapelo Manthata
6863 POSTS0 COMMENTS
Umr Jansen
6848 POSTS0 COMMENTS