La función Gmagick::setimagecolorspace() es una función incorporada en PHP que se usa para establecer el espacio de color de la imagen.
Sintaxis:
Gmagick Gmagick::setimagecolorspace( int $colorspace )
Parámetros: esta función acepta un solo parámetro $colorspace que contiene un número entero correspondiente a una de las constantes COLORSPACE.
Constantes de ESPACIO DE COLOR:
- Gmagick::COLORSPACE_UNDEFINED (0)
- Gmagick::COLORSPACE_RGB (1)
- Gmagick::COLORSPACE_GRAY (2)
- Gmagick::COLORSPACE_TRANSPARENT (3)
- Gmagick::COLORSPACE_OHTA (4)
- Gmagick::COLORSPACE_LAB (5)
- Gmagick::COLORSPACE_XYZ (6)
- Gmagick::COLORSPACE_YCBCR (7)
- Gmagick::COLORSPACE_YCC (8)
- Gmagick::COLORSPACE_YIQ (9)
- Gmagick::COLORSPACE_YPBPR (10)
- Gmagick::COLORSPACE_YUV (11)
- Gmagick::COLORSPACE_CMYK (12)
- Gmagick::COLORSPACE_SRGB (13)
- Gmagick::COLORSPACE_HSB (14)
- Gmagick::COLORSPACE_HSL (15)
- Gmagick::COLORSPACE_HWB (16)
- Gmagick::COLORSPACE_REC601LUMA (17)
- Gmagick::COLORSPACE_REC709LUMA (19)
- Gmagick::COLORSPACE_LOG (21)
- Gmagick::COLORSPACE_CMY (22)
Valor de retorno: esta función devuelve VERDADERO en caso de éxito.
Excepciones: esta función lanza GmagickException en caso de error.
Imagen utilizada: Para capturar el área del lienzo.
Los siguientes programas ilustran la función Gmagick::setimagecolorspace() en PHP:
Programa 1: Haciendo la imagen Gris.
<?php // Create a new Gmagick object $gmagick = new Gmagick('geeksforgeeks.png'); // Set the image colorspace to Gmagick::COLORSPACE_GRAY $gmagick->setimagecolorspace(Gmagick::COLORSPACE_GRAY); // Display the image header("Content-Type: image/png"); echo $gmagick; ?>
Producción:
Programa 2: Espacio de color SRGB.
<?php // Create a new Gmagick object $gmagick = new Gmagick('geeksforgeeks.png'); // Set the image colorspace to Gmagick::COLORSPACE_SRGB $gmagick->setimagecolorspace(Gmagick::COLORSPACE_SRGB); // Display the image header("Content-Type: image/png"); echo $gmagick; ?>
Producción:
Referencia: https://www.php.net/manual/en/gmagick.setimagecolorspace.php