Friday, October 3, 2025
HomeLanguagesPHP | Imagick setImageCompose() Function

PHP | Imagick setImageCompose() Function

The Imagick::setImageCompose() function is an inbuilt function in PHP which is used to set the composite operator associated with the image. This function is used to specify how to composite the image thumbnail when using the Imagick::montageImage() method.

Syntax:

bool Imagick::setImageCompose( int $compose )

Parameters: This function accepts a single parameter $compose which holds the image composite operator.

Return Value: This function returns TRUE on success.

Exceptions: This function throws ImagickException on error.

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

Program 1:




<?php
  
// Create new Imagick Object
$imagick = new Imagick(
  
// Set the Compose
$imagick->setImageCompose(70);
  
// Get the Compose
$compose = $imagick->getImageCompose();
echo $compose;
?>


Output:

70

Program 2:




<?php
  
// Create new Imagick Object
$imagick = new Imagick(
  
// Add label for first image
$imagick->labelImage('Image 1');
  
// Set the Compose for first image
$imagick->setImageCompose(10);
  
$imagick->addImage(new Imagick(
  
// Add label for second image
$imagick->labelImage('Image 2');
// Set the Compose for second image
$imagick->setImageCompose(30);
  
// Create a Montage of Images
$draw = new ImagickDraw();
$draw->setStrokeColor('black');
$draw->setFillColor('white');
$draw->setStrokeWidth(1);
$draw->setFontSize(24);
  
$montage = $imagick->montageImage($draw, "3x2+0+0", "200x160+3+3>",
                 Imagick::MONTAGEMODE_CONCATENATE, "10x10+2+2");
  
// Display the output
$montage->setImageFormat('png');
header("Content-Type: image/png");
echo $montage->getImageBlob();
?>


Output:

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

RELATED ARTICLES

Most Popular

Dominic
32331 POSTS0 COMMENTS
Milvus
85 POSTS0 COMMENTS
Nango Kala
6703 POSTS0 COMMENTS
Nicole Veronica
11867 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11928 POSTS0 COMMENTS
Shaida Kate Naidoo
6818 POSTS0 COMMENTS
Ted Musemwa
7080 POSTS0 COMMENTS
Thapelo Manthata
6775 POSTS0 COMMENTS
Umr Jansen
6776 POSTS0 COMMENTS