Syntax:ImagickPixel Imagick::getImageMatteColor (void)
Parameters:This function takes no parameters.
Return Value:This function returns an ImagickPixel object containing the matte color of the image.
Exceptions:This function throws an ImagickException on error.The following programs illustrate the
Imagick::getImageMatteColor()function in PHP:
Program 1:
// Create a new imagick object
$imagick
=
new
Imagick (
’ https://media.engineerforengineer.org/wp-content/uploads/engineerforengineer-13.png ’
);
// Get a matte color pixel
$matteColorPixel
=
$imagick
-> getImageMatteColor();
// Convert ImagickPixel to color
$matteColor
=
$matteColorPixel
-> getColorAsString();
echo
$matteColor
;
?>
Output:srgb (189, 189, 189)
Program 2:
// Create a new imagick object
$imagick
=
new
Imagick (
’ https://media.engineerforengineer.org/wp-content/uploads/engineerforengineer-13.png ’
);
// Set pixel to matte color
$imagick
-> setImageMatteColor (
’purple’
);
// Get a matte color pixel
$matteColorPixel
=
$imagick
-> getImageMatteColor();
// Convert ImagickPixel to color
$matteColor
=
$matteColorPixel
-> getColorAsString();
echo
$matteColor
;
?>
Output:srgb (128, 0, 128)
Link: https://www.php.net/manual/en/imagick.getimagemattecolor.php