La función Imagick::setImageAlphaChannel() es una función incorporada en PHP que se usa para configurar el canal alfa de la imagen.
Sintaxis:
bool Imagick::setImageAlphaChannel( int $mode )
Parámetros: esta función acepta un solo parámetro $mode que contiene un valor entero correspondiente a una de las constantes ALPHACHANNEL .
La lista de constantes de ALPHACHANNEL se proporciona a continuación:
- imagick::ALPHACHANNEL_ACTIVATE (0)
- imagick::ALPHACHANNEL_DEACTIVATE (1)
- imagick::ALPHACHANNEL_RESET (2)
- imagick::ALFACHANNEL_SET (3)
- imagick::ALPHACHANNEL_UNDEFINED (4)
- imagick::ALPHACHANNEL_COPY (5)
- imagick::ALPHACHANNEL_EXTRACT (6)
- imagick::ALPHACHANNEL_OPAQUE (7)
- imagick::ALPHACHANNEL_SHAPE (8)
- imagick::ALPHACHANNEL_TRANSPARENT (9)
Valor de retorno: esta función devuelve VERDADERO en caso de éxito.
Los siguientes programas ilustran la función Imagick::setImageAlphaChannel() en PHP:
Programa 1:
<?php // Create a new imagick object $imagick = new Imagick( 'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png'); // Set background color $imagick->setImageBackgroundColor('blue'); // Set the ImageAlphaChannel to 9 which corresponds // to imagick::ALPHACHANNEL_TRANSPARENT $imagick->setImageAlphaChannel(9); // Display the image header("Content-Type: image/png"); echo $imagick->getImageBlob(); ?>
Producción:
Programa 2:
<?php // Create a new imagick object $imagick = new Imagick( 'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png'); // Set the ImageAlphaChannel to 3 which corresponds to // imagick::ALPHACHANNEL_SET $imagick->setImageAlphaChannel(3); // Display the image header("Content-Type: image/png"); echo $imagick->getImageBlob(); ?>
Producción:
Referencia: https://www.php.net/manual/en/imagick.setimagealphachannel.php