Tuesday, June 16, 2026
HomeLanguagesPHP | ImagickPixel getColorAsString() Function

PHP | ImagickPixel getColorAsString() Function

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

RELATED ARTICLES

Most Popular

Dominic
32516 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6897 POSTS0 COMMENTS
Nicole Veronica
12013 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6964 POSTS0 COMMENTS