Thursday, July 4, 2024
HomeLanguagesPhpPHP | ImagickPixel getColor() Function

PHP | ImagickPixel getColor() Function

The ImagickPixel::getColor() function is an inbuilt function in PHP which is used to get the color described by the ImagickPixel object, as an array. If the color has an opacity channel set, this is provided as a fourth value in the list. Keys of the array are r is (red), b is (blue), g is (green) and a is (alpha/opacity).

Syntax:

array ImagickPixel::getColor( int $normalized )

Parameters: This function accepts a single parameter $normalized which tells whether to normalize the values or not.

Return Value: This function returns TRUE on success.

Exceptions: This function throws ImagickException on error.

Below given programs illustrate the ImagickPixel::getColor() function in PHP:

Program 1:




<?php
  
// Create a new imagickPixel object
$imagickPixel = new ImagickPixel(); 
  
// Get the color
$color = $imagickPixel->getColor();
  
// Print the color
print("<pre>".print_r($color, true)."</pre>");
?>


Output:

Array       // which is the default value
(
    [r] => 0
    [g] => 0
    [b] => 0
    [a] => 1
)

Program 2:




<?php
  
// Create a new imagickPixel object
// with a color
$imagickPixel = new ImagickPixel('#3539bd'); 
  
// Get the color
$color = $imagickPixel->getColor();
  
// Print the color
print("<pre>".print_r($color, true)."</pre>");
?>


Output:

Array
(
    [r] => 53
    [g] => 57
    [b] => 189
    [a] => 1
)

Program 3:




<?php
  
// Create a new imagickPixel object
$imagickPixel = new ImagickPixel(); 
  
// Set the color
$imagickPixel->setColor('#38d9d3');
  
// Get the color
$color = $imagickPixel->getColor();
  
// Print the color
print("<pre>".print_r($color, true)."</pre>");
?>


Output:

Array
(
    [r] => 56
    [g] => 217
    [b] => 211
    [a] => 1
)

Reference: https://www.php.net/manual/en/imagickpixel.getcolor.php

Nicole Veronica Rubhabha
Nicole Veronica Rubhabha
A highly competent and organized individual DotNet developer with a track record of architecting and developing web client-server applications. Recognized as a personable, dedicated performer who demonstrates innovation, communication, and teamwork to ensure quality and timely project completion. Expertise in C#, ASP.Net, MVC, LINQ, EF 6, Web Services, SQL Server, MySql, Web development,
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments