downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

Imagick::blurImage> <Imagick::averageImages
[edit] Last updated: Fri, 17 May 2013

view this page in

Imagick::blackThresholdImage

(PECL imagick 2.0.0)

Imagick::blackThresholdImageForces all pixels below the threshold into black

Descrizione

bool Imagick::blackThresholdImage ( mixed $threshold )

Is like Imagick::thresholdImage() but forces all pixels below the threshold into black while leaving all pixels above the threshold unchanged.

Elenco dei parametri

threshold

The threshold below which everything turns black

Valori restituiti

Restituisce TRUE in caso di successo.

Log delle modifiche

Versione Descrizione
2.1.0 Now allows a string representing the color as a parameter. Previous versions allow only an ImagickPixel object.



add a note add a note User Contributed Notes Imagick::blackThresholdImage - [2 notes]
up
0
Iddles
1 year ago
You need to pass this function a colour:

<?php

$img
->blackThresholdImage( "#FFFFFF" );

?>

E.g. this blackens any pixel which isn't pure white.
up
0
elmer at web-axis dot net
4 years ago
Here's a example of this function:

<?php
  $img
= new Imagick();
 
$img->readImage($image_file_name);
 
$img->blackThresholdImage('grey');
 
$img->writeImage($thumb_file_name);
 
$img->clear();
 
$img->destroy();
?>

 
show source | credits | stats | sitemap | contact | advertising | mirror sites