Open In App

PHP | Imagick getImageGravity() Function

The Imagick::getImageGravity() function is an inbuilt function in PHP which is used to get the image gravity. Difference between getGravity() and getImageGravity() is that the former applies for the whole Imagick object whereas the latter gets the gravity of the current image (in case of multiple images) in the sequence.

Syntax:



int Imagick::getImageGravity( void )

Parameters: This function does not accept any parameters.

Exceptions: This function throws ImagickException on error.



Return Value: This function returns an integer value which represents the gravity constant for the image.

List of GRAVITY constants are given below:

Below programs illustrate the Imagick::getImageGravity() function in PHP:

Program 1:




<?php
  
// Create a new imagick object
$imagick = new Imagick(
  
// Get the Gravity
$gravity = $imagick->getImageGravity();
echo $gravity;
?>

Output:

0 //which corresponds to imagick::GRAVITY_NORTHWEST.

Program 2:




<?php
  
// Create a new imagick object
$imagick = new Imagick(
  
// Set the Gravity
$imagick->setImageGravity(4);
  
// Get the Gravity
$gravity = $imagick->getImageGravity();
  
echo $gravity;
?>

Output:

4 //which corresponds to imagick::GRAVITY_CENTER.

Reference: https://www.php.net/manual/en/imagick.getimagegravity.php


Article Tags :