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

PHP | Imagick getImageBorderColor() Function

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

Syntax:

ImagickPixel Imagick::getImageBorderColor( void )

Parameters: This function does not accept any parameters.

Exceptions: This function throws ImagickException on error.

Return Value: This function returns an ImagickPixel set to the border color of the image.

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

Program 1:




<?php
  
// Create a new imagick object
$imagick = new Imagick(
  
// Use getImageBluePrimary() function
$imagickPixelColor = $imagick->getImageBorderColor();
  
// Get the Color from ImagickPixel
$color = $imagickPixelColor->getColorAsString();
  
echo $color;
?>


Output:

srgb(223, 223, 223)

Program 2:




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


Output:

srgb(165, 42, 42)

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

RELATED ARTICLES

Most Popular

Dominic
32269 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6636 POSTS0 COMMENTS
Nicole Veronica
11802 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11865 POSTS0 COMMENTS
Shaida Kate Naidoo
6752 POSTS0 COMMENTS
Ted Musemwa
7027 POSTS0 COMMENTS
Thapelo Manthata
6703 POSTS0 COMMENTS
Umr Jansen
6721 POSTS0 COMMENTS