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


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


Imagick::statisticImage()函數是PHP中的一個內置函數,用於從指定寬度和高度的鄰域中用相應的統計信息替換每個像素。

用法:

bool Imagick::statisticImage( $type, $width, $height, $channel )

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


  • $type:此參數用於設置圖像的統計類型。
  • $width:此參數設置圖像的像素寬度。
  • $height:此參數設置圖像的像素高度。
  • $channel:此參數用於設置通道。頻道的默認值為Imagick::CHANNEL_DEFAULT。

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

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

程序:

<?php 
  
// Create an Imagick object 
$imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png'); 
  
// Use statisticImage function 
$imagick->statisticImage(10, 5,    5); 
  
header("Content-Type: image/jpg"); 
      
// Display the output image 
echo $imagick->getImageBlob(); 
?>

輸出:
statistics image

相關文章:

參考: http://php.net/manual/en/imagick.statisticimage.php



相關用法


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