Friday, December 12, 2025
HomeLanguagesPHP | Imagick setImageMatteColor() Function

PHP | Imagick setImageMatteColor() Function

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

Syntax:

bool Imagick::setImageMatteColor( mixed $matte )

Parameters: This function accepts a single parameter $matte which holds the image matte color.

Return Value: This function returns TRUE on success.

Exceptions: This function throws ImagickException on error.

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

Program 1:




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


Output:

srgb(135, 206, 235)

Program 2:




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


Output:

srgb(64, 224, 208)

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

RELATED ARTICLES

Most Popular

Dominic
32445 POSTS0 COMMENTS
Milvus
105 POSTS0 COMMENTS
Nango Kala
6814 POSTS0 COMMENTS
Nicole Veronica
11952 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12029 POSTS0 COMMENTS
Shaida Kate Naidoo
6949 POSTS0 COMMENTS
Ted Musemwa
7199 POSTS0 COMMENTS
Thapelo Manthata
6895 POSTS0 COMMENTS
Umr Jansen
6882 POSTS0 COMMENTS