Friday, September 5, 2025
HomeLanguagesPHP | Imagick statisticImage() Function

PHP | Imagick statisticImage() Function

The Imagick::statisticImage() function is an inbuilt function in PHP which is used to replace each pixel with corresponding statistic from the neighborhood of the specified width and height.

Syntax:

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

Parameters: This function accepts four parameter as mentioned above and described below:

  • $type: This parameter is used to set the statistic type of image.
  • $width: This parameter set the pixel width of image.
  • $height: This parameter set the pixel height of image.
  • $channel: This parameter is used to set the channel. The default value of channel is Imagick::CHANNEL_DEFAULT.

Return Value: This function returns True on success.

Below program illustrates the Imagick::statisticImage() function in PHP:

Program:




<?php
  
// Create an Imagick object
$imagick = new Imagick(
  
// Use statisticImage function
$imagick->statisticImage(10, 5,    5);
  
header("Content-Type: image/jpg");
      
// Display the output image
echo $imagick->getImageBlob();
?>


Output:
statistics image

Related Articles:

Reference: http://php.net/manual/en/imagick.statisticimage.php

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32269 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6636 POSTS0 COMMENTS
Nicole Veronica
11802 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11865 POSTS0 COMMENTS
Shaida Kate Naidoo
6752 POSTS0 COMMENTS
Ted Musemwa
7026 POSTS0 COMMENTS
Thapelo Manthata
6703 POSTS0 COMMENTS
Umr Jansen
6721 POSTS0 COMMENTS