當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。