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


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


Imagick::linearStretchImage()函數是PHP中的內置函數,用於飽和拉伸圖像強度。 Imagick::linearStretchImage()函數的計算是同時用blackPoint和whitePoint乘以像素倍數。

用法:

bool Imagick::linearStretchImage( $blackPoint, $whitePoint )

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


  • $blackPoint:此參數保存圖像黑點。
  • $whitePoint:此參數保存圖像白點。

返回值:成功時此函數返回TRUE,失敗時返回FALSE。

下麵的示例說明了PHP中的Imagick::linearStretchImage()函數:

程序:該程序使用Imagick::linearStretchImage()函數以飽和度拉伸圖像強度。

<?php 
  
// Store the image into variable 
$imagePath= 
"https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png"; 
  
// Store the value of variables 
$blackThreshold = 23; 
$whiteThreshold = 45; 
  
// Declare new Imagick object 
$imagick = new \Imagick($imagePath); 
    
// Calculate the pixels of image 
$pixels = $imagick->getImageWidth() * $imagick->getImageHeight(); 
  
// Use linearStretchImage() function to stretches with 
// saturation the image intensity 
$imagick->linearStretchImage($blackThreshold * $pixels, $whiteThreshold * $pixels); 
  
header("Content-Type: image/jpeg"); 
  
// Display the image 
echo $imagick->getImageBlob(); 
  
?>

輸出:

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



相關用法


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