Sunday, August 31, 2025
HomeLanguagesPHP | Gmagick borderImage() Function

PHP | Gmagick borderImage() Function

The Gmagick::borderImage() function is an inbuilt function in PHP which is used to draw the border in an image. This function creates the border surrounding the image in the given color.

Syntax:

Gmagick Gmagick::borderImage( $bordercolor, $width, $height )

Parameters: This function accepts three parameters as mentioned above and described below:

  • $bordercolor: This parameter holds a string containing the border color.
  • $width: This parameter is used to set the border width.
  • $height: This parameter is used to set border height.

Return Value: This function returns Gmagick object on success.

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

Program 1:




<?php
  
// Create an image object
$image = new Gmagick (
  
// Set the border in the given image
$image->borderImage('green', 100, 100);
  
header("Content-Type: image/jpg");
  
// Display image
echo $image;
?>


Output:
border 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 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'); 
   
// Set the border in the given image
$image->borderImage('green', 20, 20);
   
header("Content-Type: image/jpg");
   
// Display image
echo $image;
?>


Output:
border image

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

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32250 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6619 POSTS0 COMMENTS
Nicole Veronica
11792 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11840 POSTS0 COMMENTS
Shaida Kate Naidoo
6734 POSTS0 COMMENTS
Ted Musemwa
7014 POSTS0 COMMENTS
Thapelo Manthata
6689 POSTS0 COMMENTS
Umr Jansen
6704 POSTS0 COMMENTS