Here's a example of this function:
<?php
$img = new Imagick();
$img->readImage($image_file_name);
$img->whiteThresholdImage('grey');
$img->writeImage($thumb_file_name);
$img->clear();
$img->destroy();
?>
(PECL imagick 2, PECL imagick 3)
Imagick::whiteThresholdImage — Força todos os pixels acima de um limite para branco
É como Imagick::ThresholdImage() mas força todos os pixels acima do limite para branco, deixando todos os pixels abaixo do limite inalterados.
threshold
Retorna true
em caso de sucesso.
Versão | Descrição |
---|---|
PECL imagick 2.1.0 | Agora permite uma string representando a cor como parâmetro. As versões anteriores permitiam apenas um objeto ImagickPixel. |
Exemplo #1 Exemplo de Imagick::whiteThresholdImage()
<?php
function whiteThresholdImage($imagePath, $color) {
$imagick = new \Imagick(realpath($imagePath));
$imagick->whiteThresholdImage($color);
header("Content-Type: image/jpg");
echo $imagick->getImageBlob();
}
?>
Here's a example of this function:
<?php
$img = new Imagick();
$img->readImage($image_file_name);
$img->whiteThresholdImage('grey');
$img->writeImage($thumb_file_name);
$img->clear();
$img->destroy();
?>