PHP | GmagickDraw setfillcolor() Function

The GmagickDraw::setfillcolor() function is an inbuilt function in PHP which is used to set the fill color to be used for drawing.
Syntax:
GmagickDraw GmagickDraw::setfillcolor( mixed $color )
Parameters: This function accepts a single parameter $color which is used to hold the value of pixel color.
Return Value: This function returns GmagickDraw object on success.
Exceptions: This function throws GmagickDrawException on error.
Used Image:
Below given programs illustrate the GmagickDraw::setfillcolor() function in PHP:
Program 1: Rectangle with fill color.
| <?php  Â// Create a new Gmagick object $gmagick= newGmagick('zambiatek.png');  Â// Create a GmagickDraw object $draw= newGmagickDraw();  Â// Draw rectangle for background $draw->rectangle(5, 10, 660, 100);  Â// Set the fill color $draw->setfillcolor('green');  Â// Use of drawimage function $gmagick->drawImage($draw);  Â// Display the output image header("Content-Type: image/png"); echo$gmagick->getImageBlob(); ?>  | 
Output:
Program 2: Text with fill color.
| <?php  Â// Create a new Gmagick object $gmagick= newGmagick('zambiatek.png');  Â// Create a GmagickDraw object $draw= newGmagickDraw();  Â// Draw rectangle for background $draw->rectangle(-100, -1000, 800, 400);  Â// Set the fill color $draw->setfontsize(90);  Â// Set the stroke color $draw->setstrokecolor('red');  Â// Set the fill color for background rectangle and text $draw->setfillcolor('blue');  Â// Create a rectangle $draw->annotate(20, 110, 'zambiatek');  Â// Use of drawimage function $gmagick->drawImage($draw);  Â// Display the output image header("Content-Type: image/png"); echo$gmagick->getImageBlob(); ?>  | 
Output:
Reference: https://www.php.net/manual/en/gmagickdraw.setfillcolor.php
 
				 
					



