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
Recommended Posts:
- PHP | Imagick removeImage() Function
- PHP | Imagick resetImagePage() Function
- PHP | Imagick removeImageProfile() Function
- PHP | Imagick resizeImage() Function
- PHP | Imagick sampleImage() Function
- PHP | Imagick roundCorners() Function
- PHP | Imagick montageImage() Function
- PHP | Imagick mergeImageLayers() Function
- PHP | Imagick previousImage() Function
- PHP | Imagick quantizeImage() Function
- PHP | Imagick current() Function
- PHP | Imagick annotateImage() Function
- PHP | Imagick queryFormats() Function
- PHP | Imagick quantizeImages() Function
- PHP | Imagick setFirstIterator() function
- PHP | Imagick setColorspace() Function
- PHP | Imagick sepiaToneImage() Function
- PHP | Imagick stripImage() Function
- PHP | Imagick setImageColorspace() Function
- PHP | Imagick setImageScene() Function
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.

