Open In App

PHP | Gmagick getimagebackgroundcolor() Function

Last Updated : 17 Jan, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

The Gmagick::getimagebackgroundcolor() function is an inbuilt function in PHP which is used to get the image background color.

Syntax:

Gmagickpixel Gmagick::getimagebackgroundcolor( void )

Parameters: This function doesn’t accept any parameter.

Return Value: This function returns an Gmagickpixel value containing the color.

Exceptions: This function throws GmagickException on error.

Used Image: To capture the canvas area.

Below given programs illustrate the Gmagick::getimagebackgroundcolor() function in PHP:

Program 1:




<?php
  
// Create a new Gmagick object
$gmagick = new Gmagick('geeksforgeeks.png');
  
// Get the background color
$color = $gmagick->getimagebackgroundcolor();
print("<pre>".print_r($color->getcolor(), true)."</pre>");
?>  


Output:

rgb(65535, 65535, 65535)  // Which is the default image background color.

Program 2:




<?php
  
// Create a new Gmagick object
$gmagick = new Gmagick('geeksforgeeks.png');
  
// Set the background color
$gmagick->setimagebackgroundcolor('#ba5959');
  
// Get the background color
$color = $gmagick->getimagebackgroundcolor();
print("<pre>".print_r($color->getcolor(), true)."</pre>");
?>


Output:

rgb(47802, 22873, 22873)

Reference: https://www.php.net/manual/en/gmagick.getimagebackgroundcolor.php


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads