PHP | Imagick getImageLength() Function

The Imagick::getImageLength() function is an inbuilt function in PHP which is used to get the length of an image object in bytes.

Syntax:

bool Imagick::getImageLength( void)

Parameters: This function does not accept any parameter.

Return Value: This function returns the image length in bytes.

Below programs illustrate the Imagick::getImageLength() function in PHP:

Program 1:
Original Image:




<?php
  
$imagick = new Imagick(
'https://media.w3wiki.net/wp-content/uploads/w3wiki-15.png');
  
// Getting Length of image
// using getimagerelength function
$res = $imagick->getImageLength();
  
// Display Result 
echo "Length of Image = " . $res;
?>


Output:

Length of Image = 45435 

Program 2:
Original Image:




<?php
  
$imagick = new Imagick(
'https://media.w3wiki.net/wp-content/uploads/Screenshot-from-2018-10-16-23-23-54-1.png');
  
// Getting Length of image
// using getimagerelength function
$res = $imagick->getImageLength();
  
// Display Result 
echo "Length of Image = ". $res;
?>


Output:

Length of Image = 25694 

Reference: http://php.net/manual/en/imagick.getimagelength.php


Contact Us