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
$image = new Imagick(
$image ->borderImage( 'green' , 100, 100);
header( "Content-Type: image/jpg" );
echo $image ;
?>
|
Output:

Program 2:
<?php
$image = new Imagick(
$image ->borderImage( 'green' , 20, 20);
header( "Content-Type: image/jpg" );
echo $image ;
?>
|
Output:

Related Articles:
Reference: http://php.net/manual/en/imagick.borderimage.php
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks 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!
Last Updated :
26 Aug, 2019
Like Article
Save Article