Friday, November 21, 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
32405 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6781 POSTS0 COMMENTS
Nicole Veronica
11928 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11997 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7166 POSTS0 COMMENTS
Thapelo Manthata
6862 POSTS0 COMMENTS
Umr Jansen
6847 POSTS0 COMMENTS