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


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


Imagick::setImageBluePrimary()函數是PHP中的內置函數,用於設置圖像色度藍色基點。

用法:

bool Imagick::setImageBluePrimary( float $x, float $y )

參數:該函數接受上述和以下所述的兩個參數:


  • $x:它指定了藍色的主x-point。
  • $y:它指定了藍色的主y-point。

返回值:成功時此函數返回TRUE。

異常:該函數在錯誤時引發ImagickException。

以下示例程序旨在說明PHP中的Imagick::setImageBluePrimary()函數:

示例1:

<?php 
  
// Create a new imagick object 
$imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Use setImageBluePrimary() function 
$imagick->setImageBluePrimary(10, 10); 
  
// Use getImageBluePrimary() function 
$result = $imagick->getImageBluePrimary(); 
  
print_r($result); 
?>

輸出:

Array ( [x] => 10 [y] => 10 )

示例2:

<?php 
  
// Create a new imagick object 
$imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Use setImageBluePrimary() function 
$imagick->setImageBluePrimary(0.2, 0.2); 
  
// Display the image 
$imagick->setformat('png'); 
  
header("Content-Type: image/png"); 
echo $imagick->getImageBlob(); 
?>

輸出:

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



相關用法


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