PHP | GmagickDraw setfillcolor() Function Last Updated : 30 Jan, 2020 Summarize Comments Improve Suggest changes Share Like Article Like Report 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 <?php // Create a new Gmagick object $gmagick = new Gmagick('geeksforgeeks.png'); // Create a GmagickDraw object $draw = new GmagickDraw(); // 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 <?php // Create a new Gmagick object $gmagick = new Gmagick('geeksforgeeks.png'); // Create a GmagickDraw object $draw = new GmagickDraw(); // 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, 'GeeksforGeeks'); // 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 Comment More infoAdvertise with us Next Article PHP | ImagickDraw setFillColor() Function G gurrrung Follow Improve Article Tags : Web Technologies PHP PHP-function PHP-Gmagick Similar Reads PHP | ImagickDraw setFillColor() Function The ImagickDraw::setFillColor() function is an inbuilt function in PHP which is used to set the fill color to be used for drawing. Syntax: bool ImagickDraw::setFillColor( $fill_pixel ) Parameters: This function accepts single parameter $fill_pixel which is used to hold the value of pixel color. Retu 2 min read PHP | ImagickDraw setFillRule() Function The ImagickDraw::setFillRule() function is an inbuilt function in PHP which is used to set the fill rule to use while drawing the polygons. Syntax: bool ImagickDraw::setFillRule( int $fill_rule ) Parameters: This function accepts a single parameter $fill_rule which holds an integer value correspondi 2 min read PHP | GmagickDraw setfillopacity() Function The GmagickDraw ::setfillopacity() function is an inbuilt function in PHP which is used to set the opacity of a drawing image. It is used when drawing the image using the filled color or filled texture. Syntax: public GmagickDraw::setfillopacity( $fill_opacity ) : GmagickDraw Parameters: This functi 2 min read PHP | GmagickDraw setstrokecolor() Function The GmagickDraw ::setstrokecolor() function is an inbuilt function in PHP which is used to set the color used for stroking object outlines. Syntax: public GmagickDraw::setstrokecolor( $color ) : GmagickDraw Parameters: This function accepts single parameter $color which is used to hold the color val 2 min read PHP | GmagickDraw setfont() function The GmagickDraw::setfont() function is an inbuilt function in PHP which is used to set the fully-specified font to use when annotating with text. Syntax: GmagickDraw GmagickDraw::setfont( string $font ) Parameters:This function accepts a single parameter $font which is used to hold the value of font 1 min read PHP | ImagickDraw setFillAlpha() Function The ImagickDraw::setFillAlpha() function is an inbuilt function in PHP which is used to set the opacity to use when drawing using the fill color or fill texture. Syntax: bool ImagickDraw::setFillAlpha( float $opacity ) Parameters: This function accepts a single parameter $opacity which holds the opa 2 min read Like