Open In App

PHP | Imagick getImageLength() Function

Improve
Improve
Like Article
Like
Save
Share
Report

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:
https://media.geeksforgeeks.org/wp-content/uploads/geeks-21.png




<?php
  
$imagick = new Imagick(
  
// 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:
https://media.geeksforgeeks.org/wp-content/uploads/Screenshot-from-2018-10-16-23-23-54.png




<?php
  
$imagick = new Imagick(
  
// 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


Last Updated : 26 Aug, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads