La función Imagick::getImageWhitePoint() es una función incorporada en PHP que se usa para obtener el punto blanco de cromaticidad de un objeto Imagick.
Sintaxis:
bool Imagick::getImageWhitePoint( void)
Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: esta función devuelve el punto blanco de cromaticidad como una array asociativa con el valor de las claves x e y.
Los siguientes programas ilustran la función Imagick::getImageWhitePoint() en PHP:
Programa 1:
Imagen original:
<?php // Craeate new imagic object $imagick = new Imagick( 'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-15.png'); // Getting Length of image // using getimagerelength function $res = $imagick->getImageWhitePoint(); // Display result print_r($res); ?>
Producción:
Array ( [x] => 0.31270000338554 [y] => 0.3289999961853 )
Programa 2:
Imagen original:
<?php $string = "Computer Science portal for Geeks!"; // Creating new image of above String // and add color and background $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); // getting Length of image // using getimagerelength function $res = $im->getImageWhitePoint(); // Display result print_r($res); ?>
Producción:
Array ( [x] => 0.31270000338554 [y] => 0.3289999961853 )
Referencia: http://php.net/manual/en/imagick.getimagewhitepoint.php