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();
?>
輸出:
相關文章:
- PHP - Imagick getImageColors()用法及代碼示例
- PHP - Imagick chopImage()用法及代碼示例
- PHP - Imagick vignetteImage()用法及代碼示例
參考: http://php.net/manual/en/imagick.statisticimage.php
相關用法
- PHP Imagick distortImage()用法及代碼示例
- PHP Imagick readImage()用法及代碼示例
- PHP Imagick readImageFile()用法及代碼示例
- PHP Imagick remapImage()用法及代碼示例
- PHP Imagick getCopyright()用法及代碼示例
- PHP Imagick extentImage()用法及代碼示例
- PHP Imagick readImages()用法及代碼示例
- PHP Imagick separateImageChannel()用法及代碼示例
- PHP Imagick sepiaToneImage()用法及代碼示例
- PHP Imagick convolveImage()用法及代碼示例
- PHP Imagick despeckleImage()用法及代碼示例
- PHP Imagick setColorspace()用法及代碼示例
- PHP Imagick polaroidImage()用法及代碼示例
- PHP Imagick enhanceImage()用法及代碼示例
- PHP Imagick encipherImage()用法及代碼示例
注:本文由純淨天空篩選整理自Mahadev99大神的英文原創作品 PHP | Imagick statisticImage() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。