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

PHP | Imagick thresholdImage() Function

The Imagick::thresholdImage() function is an inbuilt function in PHP which is used to changes the value of individual pixels based on the threshold value.

Syntax:

bool Imagick::thresholdImage( $threshold, $channel )

Parameters: This function accepts two parameters as mentioned above and described below:

  • $threshold: This parameter set the threshold value.
  • $channel: This parameter set the channel of image. CHANNEL_DEFAULT is used as a default channel.

Return Value: This function returns True on success.

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

Program:




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


Output:
thresholdimage

Related Articles:

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

RELATED ARTICLES

Most Popular

Dominic
32265 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6634 POSTS0 COMMENTS
Nicole Veronica
11801 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11863 POSTS0 COMMENTS
Shaida Kate Naidoo
6752 POSTS0 COMMENTS
Ted Musemwa
7025 POSTS0 COMMENTS
Thapelo Manthata
6701 POSTS0 COMMENTS
Umr Jansen
6718 POSTS0 COMMENTS