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
$gmagick = new Gmagick( 'geeksforgeeks.png' );
$width = $gmagick ->getimagewidth();
echo $width ;
?>
|
Output:
667
Program 2:
<?php
$gmagick = new Gmagick( 'geeksforgeeks.png' );
$gmagick ->scaleimage(200, 200);
$width = $gmagick ->getimagewidth();
echo $width ;
?>
|
Output:
200
Reference: https://www.php.net/manual/en/gmagick.getimagewidth.php