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


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


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

用法:

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

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


  • $x:它指定白點色度的x坐標。
  • $y:它指定白點色度的y坐標。

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

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

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

示例1:

<?php 
  
// Create a new imagick object 
$imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Set the image white point 
$imagick->setImageWhitePoint(0.65, 0.89); 
  
// Get the image white point 
$whitepoint = $imagick->getImageWhitePoint(); 
print("<pre>".print_r($whitepoint, true)."</pre>"); 
?>

輸出:

Array
(
    [x] => 0.65
    [y] => 0.89
)

示例2:

<?php 
  
// Create a new imagick object 
$imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Set the image white point 
$imagick->setImageWhitePoint(0.2, 0.2); 
  
// Display the image 
header("Content-Type: image/png"); 
echo $imagick->getImagesBlob(); 
?>

輸出:

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



相關用法


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