Friday, July 24, 2026
HomeLanguagesPHP | Imagick displayImage() Function

PHP | Imagick displayImage() Function

The Imagick::displayImage() function is an inbuilt function in PHP which is used to displays an image object.

Syntax:

bool Imagick::displayImage( $servername )

Parameters: This function accepts a single parameter $servername which is used to specify the server name.

Return Value: This function returns True on success.

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

Program:




<?php
  
// Create an Imagick object
$imagick = new Imagick(
  
// Use displayImage function
$imagick->displayImage(5);
  
header("Content-Type: image/jpg");
  
// Display the output image
echo $imagick->getImageBlob();
?>


Output:
oil paint image

Program 2:




<?php
$string = "Computer Science portal for Geeks!";
  
// creating new image of above String 
// and add color and background 
$im = new Imagick();
$draw = new ImagickDraw();
  
// Fill the color in image 
$draw->setFillColor(new ImagickPixel('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 ImagickPixel('white'));
  
// Draw the image          
$im->drawImage($draw);
  
$im->setImageFormat('jpeg');
  
header("Content-Type: image/jpg");
  
// Display the output image
echo $im->getImageBlob();
?>


Output:
https://geeksforgeeks.org/wp-content/uploads/2023/10/Screenshot-from-2018-10-16-23-23-54-1.png

Reference: http://php.net/manual/en/imagick.displayimage.php

RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32520 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6902 POSTS0 COMMENTS
Nicole Veronica
12017 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12115 POSTS0 COMMENTS
Shaida Kate Naidoo
7023 POSTS0 COMMENTS
Ted Musemwa
7265 POSTS0 COMMENTS
Thapelo Manthata
6980 POSTS0 COMMENTS
Umr Jansen
6971 POSTS0 COMMENTS