Friday, October 24, 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
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS