Friday, September 5, 2025
HomeLanguagesPHP | Imagick borderImage() Function

PHP | Imagick borderImage() Function

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

Syntax:

bool Imagick::borderImage( $bordercolor, $width, $height )

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

  • $bordercolor: This parameter is an ImagickPixel object or 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 True on success.

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

Program 1:




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


Output:
border image

Related Articles:

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

RELATED ARTICLES

Most Popular

Dominic
32267 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6635 POSTS0 COMMENTS
Nicole Veronica
11801 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11865 POSTS0 COMMENTS
Shaida Kate Naidoo
6752 POSTS0 COMMENTS
Ted Musemwa
7026 POSTS0 COMMENTS
Thapelo Manthata
6703 POSTS0 COMMENTS
Umr Jansen
6720 POSTS0 COMMENTS