imagefilledellipse
imagefilledellipse
Draw a filled ellipse
true **imagefilledellipse** GdImage $image int $center_x int $center_y int $width int $height int $color
Draws an ellipse centered at the specified coordinate on the given
.
image
center_xx-coordinate of the center.
center_yy-coordinate of the center.
widthThe ellipse width.
heightThe ellipse height.
colorThe fill color. gd.identifier.color
return.true.always
Voorbeeld: 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);
?>
Opmerking: > ignores .
imagefilledellipse``imagesetthickness
imageellipse``imagefilledarc