Thursday, September 18, 2025
HomeLanguagesPHP | Imagick getImageHeight() Function

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(
  
// 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

RELATED ARTICLES

Most Popular

Dominic
32299 POSTS0 COMMENTS
Milvus
84 POSTS0 COMMENTS
Nango Kala
6660 POSTS0 COMMENTS
Nicole Veronica
11834 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11895 POSTS0 COMMENTS
Shaida Kate Naidoo
6779 POSTS0 COMMENTS
Ted Musemwa
7051 POSTS0 COMMENTS
Thapelo Manthata
6735 POSTS0 COMMENTS
Umr Jansen
6741 POSTS0 COMMENTS