Open In App

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

Similar Reads