Tuesday, October 7, 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
32340 POSTS0 COMMENTS
Milvus
86 POSTS0 COMMENTS
Nango Kala
6708 POSTS0 COMMENTS
Nicole Veronica
11872 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11936 POSTS0 COMMENTS
Shaida Kate Naidoo
6829 POSTS0 COMMENTS
Ted Musemwa
7090 POSTS0 COMMENTS
Thapelo Manthata
6780 POSTS0 COMMENTS
Umr Jansen
6784 POSTS0 COMMENTS