The ImagickPixel::getColorAsString() function is an inbuilt function in PHP which is used to get the color of the ImagickPixel object as a string.
Syntax:
string ImagickPixel::getColorAsString( void )
Parameters: This function doesn’t accepts any parameters.
Return Value: This function returns TRUE on success.
Exceptions: This function throws ImagickException on error.
Below programs illustrate the ImagickPixel::getColorAsString() function in PHP:
Program 1:
<?php // Create a new imagickPixel object $imagickPixel = new ImagickPixel(); // Get the color as string $color = $imagickPixel ->getColorAsString(); echo $color ; ?> |
Output:
srgb(0, 0, 0) // Which is the default color
Program 2:
<?php // Create a new imagick object $imagickPixel = new ImagickPixel(); // Set the color $imagickPixel ->setColor( '#5b7db3' ); // Get the color $color = $imagickPixel ->getColorAsString(); echo $color ; ?> |
Output:
srgb(91, 125, 179)
Reference: https://www.php.net/manual/en/imagickpixel.getcolorasstring.php