PHP | Gmagick getimagewidth() Function

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
// https://media.w3wiki.net/wp-content/uploads/w3wiki-13.png
$gmagick = new Gmagick('w3wiki.png');
   
// Get the image width
$width = $gmagick->getimagewidth();
echo $width;
?>


Output:

667

Program 2:




<?php
  
// Create a new Gmagick object
// https://media.w3wiki.net/wp-content/uploads/w3wiki-13.png
$gmagick = new Gmagick('w3wiki.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


Contact Us