Tuesday, December 23, 2025
HomeLanguagesPHP | GmagickDraw setfillcolor() Function

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 = new Gmagick('neveropen.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
  
// Create a new Gmagick object
$gmagick = new Gmagick('neveropen.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, 'neveropen');
  
// 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

RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32456 POSTS0 COMMENTS
Milvus
111 POSTS0 COMMENTS
Nango Kala
6825 POSTS0 COMMENTS
Nicole Veronica
11959 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12038 POSTS0 COMMENTS
Shaida Kate Naidoo
6958 POSTS0 COMMENTS
Ted Musemwa
7203 POSTS0 COMMENTS
Thapelo Manthata
6912 POSTS0 COMMENTS
Umr Jansen
6890 POSTS0 COMMENTS