PHP | Función Imagick getImageChannelRange()

La función Imagick::getImageChannelRange() es una función incorporada en PHP que se usa para obtener el rango del canal.

Sintaxis:

array Imagick ::getImageChannelRange( $channel )

Parámetros: esta función acepta un único parámetro $canal que especifica el canal para encontrar el rango de canales de imagen. El valor predeterminado del canal es I magick::CHANNEL_DEFAULT .

Valor de retorno: esta función devuelve una array que contiene los mínimos y máximos del canal requerido.

Los siguientes programas ilustran la función Imagick ::getImageChannelRange() en PHP:

Programa 1:
Imagen original:
https://media.geeksforgeeks.org/wp-content/uploads/geeks-21.png

<?php
  
// Create new Imagick object
$im = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-15.png');
  
// Using getImageChannelRange function
// with red channel
$res = $im->getImageChannelRange(imagick::CHANNEL_RED);
  
// Display result
print_r($res);
?>

Producción:

Array ( [minima] => 0 [maxima] => 65535 ) 

Programa 2:
Imagen original:
https://media.geeksforgeeks.org/wp-content/uploads/Screenshot-from-2018-10-16-23-23-54.png

<?php 
  
$string = "Computer Science portal for Geeks!"; 
  
// Creating new image of above String 
// and add color
$im = new Imagick(); 
$draw = new ImagickDraw(); 
  
// Fill the color in image 
$draw->setFillColor(new ImagickPixel('green')); 
  
// Set the text font size 
$draw->setFontSize(50); 
  
$metrix = $im->queryFontMetrics($draw, $string); 
$draw->annotation(0, 40, $string); 
$im->newImage($metrix['textWidth'], $metrix['textHeight'], 
        new ImagickPixel('white')); 
// Draw the image         
$im->drawImage($draw); 
$im->setImageFormat('jpeg'); 
  
// Using getImageChannelRange function
// with red channel
$res = $im->getImageChannelRange(imagick::CHANNEL_GREEN);
  
// Display result
print_r($res);
?>

Producción:

Array ( [minima] => 32896 [maxima] => 65535 ) 

Referencia: http://php.net/manual/en/imagick.getimagechannelrange.php

Publicación traducida automáticamente

Artículo escrito por R_Raj y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *