PHP | Función getimagechannel depth() de Gmagick

La función Gmagick::getimagechannel depth() es una función incorporada en PHP que se utiliza para devolver la profundidad de la imagen del canal.
Sintaxis: 
 

int Gmagick::getimagechanneldepth( $channel_type )

Parámetros: Esta función acepta un solo parámetro $channel_type que mantiene la constante del canal que es válida para el modo de canal. El valor predeterminado del canal es Gmagick::CHANNEL_DEFAULT .
Valor devuelto: esta función devuelve la profundidad del canal.
Los siguientes programas ilustran la función Gmagick::getimagechannel depth() en PHP:
Imagen original 1: 
 

https://media.geeksforgeeks.org/wp-content/uploads/geeks-21.png

Programa 1:
 

php

<?php
  
// Create new Gmagick object
$im = new Gmagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-15.png');
  
// Using getimagechanneldepth function
// with different channel
echo $im->getimagechanneldepth(Gmagick::CHANNEL_RED) . "</br>";
echo $im->getimagechanneldepth(Gmagick::CHANNEL_GRAY) . "</br>";
echo $im->getimagechanneldepth(Gmagick::CHANNEL_CYAN) . "</br>";
echo $im->getimagechanneldepth(Gmagick::CHANNEL_GREEN) . "</br>";
echo $im->getimagechanneldepth(Gmagick::CHANNEL_BLUE) . "</br>";
 
?>

Producción: 
 

8
8
8
8
8

Imagen original 2: 
 

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

Programa 2: 
 

php

<?php
  
$string = "Computer Science portal for Geeks!";
  
// Creating new image of above String
// and add color
$im = new Gmagick();
$draw = new GmagickDraw();
  
// Fill the color in image
$draw->setFillColor(new GmagickPixel('green'));
  
// Set the text font size
$draw->setFontSize(50);
  
$matrix = $im->queryFontMetrics($draw, $string);
$draw->annotation(0, 40, $string);
$im->newImage($matrix['textWidth'], $matrix['textHeight'],
        new GmagickPixel('white'));
 
// Draw the image        
$im->drawImage($draw);
$im->setImageFormat('jpeg');
  
// Using getImageChannelDepth function
// with different channel
echo $im->getimagechanneldepth(Gmagick::CHANNEL_RED) . "</br>";
echo $im->getimagechanneldepth(Gmagick::CHANNEL_GRAY) . "</br>";
echo $im->getimagechanneldepth(Gmagick::CHANNEL_CYAN) . "</br>";
echo $im->getimagechanneldepth(Gmagick::CHANNEL_GREEN) . "</br>";
echo $im->getimagechanneldepth(Gmagick::CHANNEL_BLUE) . "</br>";
?>

Producción: 
 

8
8
8
16
8

Referencia: http://php.net/manual/en/gmagick.getimagechannel depth.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 *