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 Comment More infoAdvertise with us Next Article PHP | Imagick getImageColors() Function G gurrrung Follow Improve Article Tags : Web Technologies PHP PHP-function PHP-Imagick Similar Reads PHP | Imagick getImageColors() Function The Imagick::getImageColors() function is an inbuilt function in PHP which is used to get the number of unique colors in the image. Syntax:Â Â int Imagick::getImageColors( void ) Parameters: This function does not accepts any parameters. Return Value: This function returns an integer value which dete 1 min read PHP | imagick getImageDispose() Function The Imagick::getImageDispose() function is an inbuilt function in PHP which is used to get the image disposal method. Syntax: int Imagick::getImageDispose( void) Parameters: This function does not accept any parameter. Return Value: This function returns the dispose method on success. Below programs 1 min read PHP | Imagick getImageColorspace() Function The Imagick::getImageColorspace() function is an inbuilt function in PHP which is used to get the colorspace of the image. The color space is a mathematical model which describes the range of colors as tuples of numbers, typically as 3 or 4 values or color components(RGB). Syntax: int Imagick::getIm 1 min read PHP | Imagick getImageType() Function The Imagick::getImageType() function is an inbuilt function in PHP which is used to get the potential image type. Syntax: int Imagick::getImageType( void ) Parameters: This function doesnât accepts any parameter. Return Value: This function returns an integer value corresponding to one of IMGTYPE co 1 min read PHP | Imagick getImageSize() Function The Imagick::getImageSize() function is an inbuilt function in PHP which is used to get the image length in bytes. Syntax: int Imagick::getImageSize( void ) Parameters: This function doesnât accepts any parameter. Return Value: This function returns an integer value containing the current image size 1 min read PHP | Imagick getImagePage() Function The Imagick::getImagePage() function is an inbuilt function in PHP which is used to get the page geometry of a particular image. Syntax: array Imagick::getImagePage( void ) Parameters: This function does not accepts any parameter. Return Value: This function returns an array associated with the page 2 min read Like