Open In App

PHP | Imagick getImageWidth() Function

Last Updated : 26 Aug, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
The Imagick::getImageWidth() function is an inbuilt function in PHP which is used to get the width of the image. Syntax:
int Imagick::getImageWidth( void )
Parameters: This function does not accepts any parameters. Return Value: This function returns the image width in pixels. Original Image Below program illustrates the Imagick::getImageWidth() function in PHP: Program: php
<?php 
// require_once('path/vendor/autoload.php');

// Create an Imagick Object
$image = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-15.png');

// Function to get the width of image
$width = $image->getImageWidth();

// Display the image width in pixel.
print_r($width);
?>
Output:
667
Related Articles: Reference: http://php.net/manual/en/imagick.getimagewidth.php

Next Article

Similar Reads