imagefilledellipse
(PHP 4 >= 4.0.6, PHP 5, PHP 7, PHP 8)
Draw a filled ellipse
Description
Draws an ellipse centered at the specified coordinate on the given image.
Parameters
center_xx-coordinate of the center.
center_yy-coordinate of the center.
widthThe ellipse width.
heightThe ellipse height.
colorThe fill color. Color
Return Values
Always
Changelog
| Version | Description |
|---|
Examples
imagefilledellipse() example
<?php
// create a blank image
$image = imagecreatetruecolor(400, 300);
// fill the background color
$bg = imagecolorallocate($image, 0, 0, 0);
// choose a color for the ellipse
$col_ellipse = imagecolorallocate($image, 255, 255, 255);
// draw the white ellipse
imagefilledellipse($image, 200, 150, 300, 200, $col_ellipse);
// output the picture
header("Content-type: image/png");
imagepng($image);
?>The above example will output something similar to: Output of example : imagefilledellipse()
Notes
imagefilledellipse() ignores imagesetthickness().