imagefilledellipse
    (PHP 4 >= 4.0.6, PHP 5)
imagefilledellipse -- 塗りつぶされた楕円を描画する
Description
bool 
imagefilledellipse ( resource image, int cx, int cy, int w, int h, int color )
   imagefilledellipse() は、
   image で表したイメージに
   cx, cy (左上が0, 0)
   を中心とした楕円を描画します。w および
   h で楕円の幅と高さをそれぞれ指定します。
   楕円は、color で塗りつぶされます。成功した場合に TRUE を、失敗した場合に FALSE を返します。
  
   
例 1. imagefilledellipse() の例 
<?php
  // 空の画像を作成 $image = imagecreatetruecolor(400, 300);
  // 背景色を塗る $bg = imagecolorallocate($image, 0, 0, 0);
  // 楕円の色を選択する $col_ellipse = imagecolorallocate($image, 255, 255, 255);
  // 白い楕円を描画する imagefilledellipse($image, 200, 150, 300, 200, $col_ellipse);
  // 画像を出力する header("Content-type: image/png"); imagepng($image);
  ?>
 |  
  | 
  注意: この関数は、GD 2.0.1 以降を必要とします (2.0.28 以降を推奨します)。
   imageellipse() および
   imagefilledarc() も参照ください。