Tuesday, October 7, 2025
HomeLanguagesPHP | Imagick setImageBorderColor() Function

PHP | Imagick setImageBorderColor() Function

The Imagick::setImageBorderColor() function is an inbuilt function in PHP which is used to set the image border color.

Syntax:

bool Imagick::setImageBorderColor( mixed $border )

Parameters: This function accepts single parameter $border which holds the border color.

Return Value: This function returns TRUE on success.

Exceptions: This function throws ImagickException on error.

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

Program 1:




<?php
  
// Create a new imagick object
$imagick = new Imagick(
  
// Set the Border Color
$imagick->setImageBorderColor('violet');
  
// Get the Border Color
$imagickPixelColor = $imagick->getImageBorderColor();
  
// Get the Color from ImagickPixel
$color = $imagickPixelColor->getColorAsString();
  
echo $color;
?>


Output:

srgb(238, 130, 238)

Program 2:




<?php
  
// Create a new imagick object
$imagick = new Imagick(
  
// Set the Border Color
$imagick->setImageBorderColor('pink');
  
// Get the Border Color
$imagickPixelColor = $imagick->getImageBorderColor();
  
// Get the Color from ImagickPixel
$color = $imagickPixelColor->getColorAsString();
  
echo $color;
?>


Output:

srgb(255, 192, 203)

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

RELATED ARTICLES

Most Popular

Dominic
32340 POSTS0 COMMENTS
Milvus
86 POSTS0 COMMENTS
Nango Kala
6708 POSTS0 COMMENTS
Nicole Veronica
11872 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11936 POSTS0 COMMENTS
Shaida Kate Naidoo
6829 POSTS0 COMMENTS
Ted Musemwa
7090 POSTS0 COMMENTS
Thapelo Manthata
6780 POSTS0 COMMENTS
Umr Jansen
6784 POSTS0 COMMENTS