Thursday, October 23, 2025
HomeLanguagesPHP | Gmagick addImage() Function

PHP | Gmagick addImage() Function

The Gmagick::addImage() function is an inbuilt function in PHP which is used to adds new image to Gmagick object image list. This function adds a new image to Gmagick object from the current position of the source object. The Gmagick class have the ability to hold and operate on multiple images simultaneously.

Syntax:

bool Gmagick::addImage( $source )

Parameters: This function accepts a single parameter $source which holds the source Gmagick object.

Return Value: This function returns Gmagick object on success.

Errors/Exceptions: This function throws GmagickException on error.

Below programs illustrate the Gmagick::addImage() function in PHP:

Original Image 1:
adpative threshold image

Program:




<?php 
  
// require_once('path/to/vendor/autoload.php');
  
header('Content-type: image/png');
  
$image = new Gmagick (
  
$t = new Gmagick (
  
$image->addImage($t);
  
echo $image;
?>


Output:
adaptive threshold image

Original Image 2:
original image

Program 2:




<?php 
    
$string = "Computer Science portal for Geeks!"; 
    
// Creating new image of above String 
// and add color and background 
$im = new Gmagick(); 
$draw = new GmagickDraw(); 
    
// Fill the color in image 
$draw->setFillColor(new GmagickPixel('green')); 
    
// Set the text font size 
$draw->setFontSize(50); 
    
$matrix = $im->queryFontMetrics($draw, $string); 
$draw->annotation(0, 40, $string); 
$im->newImage($matrix['textWidth'], $matrix['textHeight'], 
        new GmagickPixel('white')); 
    
// Draw the image        
$im->drawImage($draw); 
$im->setImageFormat('jpeg'); 
   
$t = new Gmagick (
   
$im->addImage($t);
    
    
header("Content-Type: image/jpg"); 
echo $im->getImageBlob(); 
?> 


Output:

Reference: http://php.net/manual/en/gmagick.addimage.php

Last Updated :
10 Jan, 2022
Like Article
Save Article

<!–

–>

Similar Reads
Related Tutorials
RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS