当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP Imagick setColorspace()用法及代码示例


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

用法:

bool Imagick::setColorspace( int $colorspace )

参数:该函数接受单个参数$colorspace,该参数保存一个与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)

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

异常:该函数在错误时引发ImagickException。

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

程序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; 
?>

输出:

1

程序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; 
?>

输出:

9

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



相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | Imagick setColorspace() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。