Open In App

PHP | Gmagick getimagewidth() Function

Last Updated : 21 Jan, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

The Gmagick::getimagewidth() function is an inbuilt function in PHP which is used to get the image width which is the horizontal length of the image.

Syntax:

int Gmagick::getimagewidth( void )

Parameters:This function doesn’t accept any parameter.

Return Value: This function returns an integer value containing the width of an image.

Exceptions: This function throws GmagickException on error.

Below given programs illustrate the Gmagick::getimagewidth() function in PHP:

Program 1:




<?php
  
// Create a new Gmagick object
$gmagick = new Gmagick('geeksforgeeks.png');
   
// Get the image width
$width = $gmagick->getimagewidth();
echo $width;
?>


Output:

667

Program 2:




<?php
  
// Create a new Gmagick object
$gmagick = new Gmagick('geeksforgeeks.png');
   
// Set the image width
$gmagick->scaleimage(200, 200);
   
// Get the image width
$width = $gmagick->getimagewidth();
echo $width;
?>


Output:

200

Reference: https://www.php.net/manual/en/gmagick.getimagewidth.php


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads