Open In App

PHP | Imagick getImageBorderColor() Function

Last Updated : 20 Nov, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
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
<?php

// Create a new imagick object
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');

// Use getImageBluePrimary() function
$imagickPixelColor = $imagick->getImageBorderColor();

// Get the Color from ImagickPixel
$color = $imagickPixelColor->getColorAsString();

echo $color;
?>
Output:
srgb(223, 223, 223)
Program 2: php
<?php

// Create a new imagick object
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');

// 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

Similar Reads