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:
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:
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