Thursday, September 25, 2025
HomeLanguagesPHP | Imagick getImageMatteColor() Function

PHP | Imagick getImageMatteColor() Function

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

Syntax:

ImagickPixel Imagick::getImageMatteColor( void )

Parameters: This function does not accept any parameter.

Return Value: This function returns ImagickPixel object containing image matte color.

Exceptions: This function throws ImagickException on error.

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

Program 1:




<?php
  
// Create a new imagick object
$imagick = new Imagick(
  
// Get the Matte Color Pixel
$matteColorPixel = $imagick->getImageMatteColor();
  
// Convert ImagickPixel into Color
$matteColor = $matteColorPixel->getColorAsString();
echo $matteColor;
?>


Output:

srgb(189, 189, 189)

Program 2:




<?php
  
// Create a new imagick object
$imagick = new Imagick(
  
// Set the Matte Color Pixel
$imagick->setImageMatteColor('purple');
  
// Get the Matte Color Pixel
$matteColorPixel = $imagick->getImageMatteColor();
  
// Convert ImagickPixel into Color
$matteColor = $matteColorPixel->getColorAsString();
echo $matteColor;
?>


Output:

srgb(128, 0, 128)

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

RELATED ARTICLES

Most Popular

Dominic
32319 POSTS0 COMMENTS
Milvus
84 POSTS0 COMMENTS
Nango Kala
6681 POSTS0 COMMENTS
Nicole Veronica
11854 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11910 POSTS0 COMMENTS
Shaida Kate Naidoo
6794 POSTS0 COMMENTS
Ted Musemwa
7070 POSTS0 COMMENTS
Thapelo Manthata
6753 POSTS0 COMMENTS
Umr Jansen
6761 POSTS0 COMMENTS