PHP | Gmagick getimagewhitepoint() Function

The Gmagick::getimagewhitepoint() function is an inbuilt function in PHP which is used to get the chromaticity white point as an associative array with the keys “x” and “y”.
Syntax:
array Gmagick::getimagewhitepoint( void )
Parameters:This function doesn’t accepts any parameter.
Return Value: This function returns an array value containing the chromaticity white point.
Exceptions: This function throws GmagickException on error.
Below given programs illustrate the Gmagick::getimagewhitepoint() function in PHP:
Used Image:
Program 1:
<?php // Create a new Gmagick object $gmagick = new Gmagick('zambiatek.png'); // Get the white point $res = $gmagick->getimagewhitepoint(); print("<pre>".print_r($res, true)."</pre>"); ?> |
Output:
Array
(
[x] => 0.31270000338554
[y] => 0.3289999961853
)
Program 2:
<?php // Create a new Gmagick object $gmagick = new Gmagick('zambiatek.png'); // Set the white point $gmagick->setimagewhitepoint(5, 5); // Get the white point $res = $gmagick->getimagewhitepoint(); print("<pre>".print_r($res, true)."</pre>"); ?> |
Output:
Array
(
[x] => 5
[y] => 5
)
Reference: https://www.php.net/manual/en/gmagick.getimagewhitepoint.php
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, zambiatek Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!




