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

PHP | Imagick blackThresholdImage() Function

The Imagick::blackThresholdImage() function is an inbuilt function in PHP which forces all pixels below the threshold value into black while leaving all pixels above the threshold unchanged.

Syntax:

bool Imagick::blackThresholdImage( $threshold )

Parameters: This function accepts a single parameter $threshold which is mandatory. All the pixel value below threshold value which everything turns black.

Return Value: This function returns True on success.

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

Program:




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


Output:

Related Articles:

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

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
7027 POSTS0 COMMENTS
Thapelo Manthata
6703 POSTS0 COMMENTS
Umr Jansen
6721 POSTS0 COMMENTS