Saturday, May 23, 2026
HomeLanguagesPHP | Imagick getQuantum() Function

PHP | Imagick getQuantum() Function

The Imagick::getQuantum() function is an inbuilt function in PHP which is used to get the quantum range as an integer.

Syntax:

int Imagick::getQuantum( void )

Parameters: This function doesn’t accepts any parameter.

Return Value: This function returns an integer value containing the quantum range.

Exceptions: This function throws ImagickException on error.

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

Program 1:




<?php
  
// Create a new imagick object
$imagick = new Imagick(
  
// Get the Quantum
$quantum = $imagick->getQuantum();
echo $quantum;
?>


Output:

65535

Program 2:




<?php
  
// Create a new imagick object
$imagick = new Imagick(
  
// Get the quantum
$quantum = $imagick->getQuantum();
echo $quantum;
?>


Output:

65535

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

RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32514 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6892 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12107 POSTS0 COMMENTS
Shaida Kate Naidoo
7016 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6975 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS