Wednesday, June 17, 2026
HomeLanguagesPHP | ImagickDraw getFillColor() Function

PHP | ImagickDraw getFillColor() Function

The ImagickDraw::getFillColor() function is an inbuilt function in PHP which is used to get the fill color used for drawing filled objects.

Syntax:

ImagickPixel ImagickDraw::getFillColor( void )

Parameters: This function doesn’t accept any parameter.

Return Value: This function returns an ImagickPixel value containing the fill color.

Exceptions: This function throws ImagickException on error.

Below given programs illustrate the ImagickDraw::getFillColor() function in PHP:

Program 1:




<?php
// Create a new ImagickDraw object
$draw = new ImagickDraw();
  
// Get the Fill Color
$colorPixel = $draw->getFillColor();
  
// Convert ImagickPixel into string
$color = $colorPixel->getColorAsString();
echo $color;
?>


Output:

srgb(0, 0, 0) // which is black the default color.

Program 2:




<?php
// Create a new ImagickDraw object
$draw = new ImagickDraw();
  
// Set the Fill Color
$draw->setFillColor('purple');
  
// Get the Fill Color
$colorPixel = $draw->getFillColor();
  
// Convert ImagickPixel into string
$color = $colorPixel->getColorAsString();
echo $color;
?>


Output:

srgb(128, 0, 128)

Program 3:




<?php
  
// Create a new imagick object
$imagick = new Imagick();
  
// Create a image on imagick object
$imagick->newImage(800, 250, 'black');
  
// Create a new ImagickDraw object
$draw = new ImagickDraw();
  
// Set the fill color
$draw->setFillColor('cyan');
  
// Set the font size
$draw->setFontSize(20);
  
// Annotate a text
$draw->annotation(50, 100, 'The fill color here is ' 
               . $draw->getFillColor()->getColorAsString());
  
// Set the fill color
$draw->setFillColor('red');
  
// Annotate a text
$draw->annotation(50, 200, 'The fill color here is ' 
               . $draw->getFillColor()->getColorAsString());
  
// Render the draw commands
$imagick->drawImage($draw);
  
// Show the output
$imagick->setImageFormat('png');
header("Content-Type: image/png");
echo $imagick->getImageBlob();
?>


Output:

Reference: https://www.php.net/manual/en/imagickdraw.getfillcolor.php

RELATED ARTICLES

Most Popular

Dominic
32516 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6898 POSTS0 COMMENTS
Nicole Veronica
12014 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