La función Imagick::setImageMatteColor() es una función incorporada en PHP que se utiliza para establecer el color mate de la imagen.
Sintaxis:
bool Imagick::setImageMatteColor( mixed $matte )
Parámetros: Esta función acepta un único parámetro $mate que contiene el color mate de la imagen.
Valor de retorno: esta función devuelve VERDADERO en caso de éxito.
Excepciones: esta función lanza ImagickException en caso de error.
Los siguientes programas ilustran la función Imagick::setImageMatteColor() en PHP:
Programa 1:
<?php // Create a new imagick object $imagick = new Imagick( 'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); // 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; ?>
Producción:
srgb(135, 206, 235)
Programa 2:
<?php // Create a new imagick object $imagick = new Imagick( 'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); // 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; ?>
Producción:
srgb(64, 224, 208)
Referencia: https://www.php.net/manual/en/imagick.setimagemattecolor.php