Open In App

PHP | Imagick getImageCompose() Function

Last Updated : 20 Nov, 2019
Summarize
Comments
Improve
Suggest changes
Share
Like Article
Like
Report
The Imagick::getImageCompose() function is an inbuilt function in PHP which is used to get the composite operator associated with the image. Syntax:
int Imagick::getImageCompose( void )
Parameters: This function does not accept any parameter. Return Value: This function returns TRUE on success. Below programs illustrate the Imagick::getImageCompose() function in PHP: Program 1: php
<?php

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

// Get the Compose
$compose = $imagick->getImageCompose();
echo $compose;
?>
Output:
40
Program 2: php
<?php

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

// Set the Compose
$imagick->setImageCompose(70);

// Get the Compose
$compose = $imagick->getImageCompose();
echo $compose;
?>
Output:
70
Reference: https://www.php.net/manual/en/imagick.getimagecompose.php

Similar Reads