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


PHP Imagick setImageColorspace()用法及代碼示例


Imagick::setImageColorspace()函數是PHP中的內置函數,用於設置圖像色彩空間。

用法:

bool Imagick::setImageColorspace( 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::setImageColorspace()函數:

程序1:

<?php 
  
// Create a new imagick object 
$imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
   
// Set the image colorspace 
$imagick->setImageColorspace(imagick::COLORSPACE_RGB); 
  
// Display the image 
header("Content-Type: image/png"); 
echo $imagick->getImageBlob(); 
?>

輸出:

程序2:

<?php 
  
// Create a new imagick object 
$imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
   
// Set the image colorspace 
$imagick->setImageColorspace(imagick::COLORSPACE_OHTA); 
  
// Display the image 
header("Content-Type: image/png"); 
echo $imagick->getImageBlob(); 
?>

輸出:

參考: https://www.php.net/manual/en/imagick.setimagecolorspace.php



相關用法


注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | Imagick setImageColorspace() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。