PHP | Función Gmagick setimageblueprimary()

La función Gmagick::setimageblueprimary() es una función incorporada en PHP que se usa para establecer la profundidad de un canal de imagen en particular.

Sintaxis: 

Gmagick Gmagick::setimageblueprimary( $x, $y )

Parámetros: esta función acepta dos parámetros, como se mencionó anteriormente y se describe a continuación:  

  • $x: Especifica el punto x primario azul.
  • $y: especifica el punto y primario azul.

Valor devuelto: esta función devuelve una array que contiene las coordenadas x e y del punto.

Los siguientes programas ilustran la función Gmagick::setimageblueprimary() en PHP:

Programa 1:  
Imagen original: 

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

PHP

// Create new Gmagick object
$Gmagick = new Gmagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-15.png');
    
// Using getImageBluePrimary function
echo "Before Set Blue Primary: ";
$res = $Gmagick->getImageBluePrimary();
print_r($res);
    
// Set blue primary point
$Gmagick->setImageBluePrimary( 1.765, 2.5698 );
    
echo "</br>  After Set Blue Primary: ";
$res = $Gmagick->getImageBluePrimary();
   
print_r($res);
?>

Producción: 

Before Set Blue Primary: Array ( [x] => 0.15000000596046 [y] => 
0.059999998658895 )
After Set Blue Primary: Array ( [x] => 1.765 [y] => 2.5698 ) 

Programa 2:  
Imagen original: 

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

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); 
    
$metrix = $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 getImageBluePrimary function
echo "Before Set Blue Primary: ";
$res = $im->getImageBluePrimary();
print_r($res);
    
    
// Set blue primary point
$im->setImageBluePrimary(20.765, 14.1698);
    
echo "</br>  After Set Blue Primary: ";
$res = $im->getImageBluePrimary();
print_r($res);
?>

Producción: 

Before Set Blue Primary: Array ( [x] => 0.15000000596046 [y] => 
0.059999998658895 )
After Set Blue Primary: Array ( [x] => 20.765 [y] => 14.1698 ) 

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