PHP | Imagick getImageHeight() Function

The Imagick::getImageHeight() function is an inbuilt function in PHP which is used to get the height of the image.

Syntax:

int Imagick::getImageHeight( void )

Parameters: This function does not accepts any parameter.
Return Value: This function returns the image height in pixels.

Original Image:

Below program illustrates the Imagick::getImageHeight() function in PHP:
Program:




<?php 
// require_once('vendor/autoload.php');
  
// Create an Imagick Object
$image = new Imagick(
'https://media.w3wiki.net/wp-content/uploads/w3wiki-15.png');
  
// getImageHeight function to calculate image height
  
$height = $image->getImageHeight();
  
// Display the height of image
print_r($height);
?>


Output:

184

Related Articles:

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


Contact Us