Open In App

PHP | Imagick drawImage() Function

Last Updated : 26 Jul, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

The Imagick::drawImage() function is an inbuilt function in PHP which is used to render the ImagickDraw object on the Imagick object. It is used to draw the image on the Imagick instance. We set an image matrix, parameters and the borders of the drawn image with the help of ImagickDraw methods and then render it using Imagick::drawImage() function.

Syntax:

bool Imagick::drawImage( ImagickDraw $draw )

Parameters: This function accepts single parameter $draw which holds the ImagickDraw instance to get the details about the image that is to be rendered on the screen.

Return Value: It returns True value when it is executed successfully.

Program: This program creates an image, set its dimensions and border properties and then render it on the screen.




<?php 
  
// Declare a string which to be drawn 
$geek = "GeeksforGeeks"
  
// Declare an Imagick object
$image = new Imagick();
  
// Declare an ImagickDraw object
$draw = new ImagickDraw(); 
  
// Set the color of Imagickdraw object
$draw->setFillColor(new ImagickPixel('Green')); 
  
// Set the font size of text
$draw->setFontSize(120); 
  
// Array representing the font metrics
$metrix = $image->queryFontMetrics($draw, $geek); 
  
// Set the position of text with respect
// to the border 
$draw->annotation(0, 100, $geek); 
  
// Create image of given size
$image->newImage(875, 150, new ImagickPixel('white')); 
  
// Use drawImage() function to draw the image
$image->drawImage($draw); 
  
// Set the border of image
$image->borderImage(new ImagickPixel('green'), 5, 5); 
  
// Set the image format
$image->setImageFormat('png'); 
  
header('Content-type: image/png');
  
// Display the image
echo $image;
  
?>


Output:

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


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads