PHP | Función Imagick setColorspace()

La función Imagick::setColorspace() es una función incorporada en PHP que se utiliza para establecer el valor del espacio de color global de una imagen.

Sintaxis:

bool Imagick::setColorspace( int $colorspace )

Parámetros: esta función acepta un solo parámetro $colorspace que contiene un valor entero correspondiente a una de las constantes COLORSPACE .

  • imagick::COLORSPACE_UNDEFINED (0)
  • imagick::COLORSPACE_RGB (1)
  • imagick::COLORSPACE_GRAY (2)
  • imagick::COLORSPACE_TRANSPARENT (3)
  • imagick::COLORSPACE_OHTA (4)
  • imagick::COLORSPACE_LAB (5)
  • imagick::COLORSPACE_XYZ (6)
  • imagick::COLORSPACE_YCBCR (7)
  • imagick::COLORSPACE_YCC (8)
  • imagick::COLORSPACE_YIQ (9)
  • imagick::COLORSPACE_YPBPR (10)
  • imagick::COLORSPACE_YUV (11)
  • imagick::COLORSPACE_CMYK (12)
  • imagick::COLORSPACE_SRGB (13)
  • imagick::COLORSPACE_HSB (14)
  • imagick::COLORSPACE_HSL (15)
  • imagick::COLORSPACE_HWB (16)
  • imagick::COLORSPACE_REC601LUMA (17)
  • imagick::COLORSPACE_REC709LUMA (19)
  • imagick::COLORSPACE_LOG (21)
  • imagick::COLORSPACE_CMY (22)

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::setColorspace() en PHP:

Programa 1:

<?php
  
// Create a new imagick object
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png');
  
// Set the colorspace
$imagick->setColorspace(imagick::COLORSPACE_RGB);
  
// Get the colorspace
$colorSpace = $imagick->getColorSpace();
  
// Display the colorspace
echo $colorSpace;
?>

Producción:

1

Programa 2:

<?php
  
// Create a new imagick object
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png');
  
// Set the colorspace
$imagick->setColorspace(imagick::COLORSPACE_YIQ);
  
// Get the colorspace
$colorSpace = $imagick->getColorSpace();
  
// Display the colorspace
echo $colorSpace;
?>

Producción:

9

Referencia: https://www.php.net/manual/en/imagick.setcolorspace.php

Publicación traducida automáticamente

Artículo escrito por gurrrung y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *