La función Imagick::thresholdImage() es una función incorporada en PHP que se utiliza para cambiar el valor de los píxeles individuales en función del valor del umbral.
Sintaxis:
bool Imagick::thresholdImage( $threshold, $channel )
Parámetros: esta función acepta dos parámetros, como se mencionó anteriormente y se describe a continuación:
- $umbral: este parámetro establece el valor del umbral.
- $channel: este parámetro establece el canal de la imagen. CHANNEL_DEFAULT se utiliza como canal predeterminado.
Valor de retorno: esta función devuelve True en caso de éxito.
El siguiente programa ilustra la función Imagick::thresholdImage() en PHP:
Programa:
<?php // Create an imagick object $imagick = new Imagick( 'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png'); // Use thresholdimage function $imagick->thresholdimage(0.5, 2); header("Content-Type: image/jpg"); // Display the output image echo $imagick->getImageBlob(); ?>
Producción:
Artículos relacionados:
Referencia: http://php.net/manual/en/imagick.thresholdimage.php