La función Gmagick::getimagewhitepoint() es una función incorporada en PHP que se usa para obtener el punto blanco de cromaticidad como una array asociativa con las teclas «x» e «y».
Sintaxis:
array Gmagick::getimagewhitepoint( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: esta función devuelve un valor de array que contiene el punto blanco de cromaticidad.
Excepciones: esta función lanza GmagickException en caso de error.
Los siguientes programas ilustran la función Gmagick::getimagewhitepoint() en PHP:
Imagen usada:
Programa 1:
<?php // Create a new Gmagick object $gmagick = new Gmagick('geeksforgeeks.png'); // Get the white point $res = $gmagick->getimagewhitepoint(); print("<pre>".print_r($res, true)."</pre>"); ?>
Producción:
Array ( [x] => 0.31270000338554 [y] => 0.3289999961853 )
Programa 2:
<?php // Create a new Gmagick object $gmagick = new Gmagick('geeksforgeeks.png'); // Set the white point $gmagick->setimagewhitepoint(5, 5); // Get the white point $res = $gmagick->getimagewhitepoint(); print("<pre>".print_r($res, true)."</pre>"); ?>
Producción:
Array ( [x] => 5 [y] => 5 )
Referencia: https://www.php.net/manual/en/gmagick.getimagewhitepoint.php