📜  PHP |想象一下 setColorspace()函数

📅  最后修改于: 2022-05-13 01:56:51.265000             🧑  作者: Mango

PHP |想象一下 setColorspace()函数

Imagick::setColorspace()函数是PHP中的一个内置函数,用于设置图像的全局色彩空间值。

句法:

bool Imagick::setColorspace( int $colorspace )

参数:此函数接受单个参数$colorspace ,该参数保存一个对应于COLORSPACE常量之一的整数值。

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

返回值:此函数在成功时返回 TRUE。

异常:此函数在出错时抛出 ImagickException。

下面给出的程序说明了PHP中的Imagick::setColorspace()函数

方案一:

setColorspace(imagick::COLORSPACE_RGB);
  
// Get the colorspace
$colorSpace = $imagick->getColorSpace();
  
// Display the colorspace
echo $colorSpace;
?>

输出:

1

方案二:

setColorspace(imagick::COLORSPACE_YIQ);
  
// Get the colorspace
$colorSpace = $imagick->getColorSpace();
  
// Display the colorspace
echo $colorSpace;
?>

输出:

9

参考: https://www. PHP.net/manual/en/imagick.setcolorspace。 PHP