imageellipse
    (PHP 4 >= 4.0.6, PHP 5)
imageellipse -- 楕円を描画する
説明
bool 
imageellipse ( resource image, int cx, int cy, int w, int h, int color )
     ImageEllipse() は、image
     で表したイメージに
     cx,cy (左上が0,0)を
     中心とした楕円を描画します。w と
     h は、それぞれ楕円の幅と高さを指定します。
     楕円の色を col で指定します。
    
    
例 1. imageellipse() の例 
<?php
  // 空の画像を生成 $image = imagecreatetruecolor(400, 300);
  // 背景色を塗る $bg = imagecolorallocate($image, 0, 0, 0);
  // 楕円の色を選択する $col_ellipse = imagecolorallocate($image, 255, 255, 255);
  // 白い楕円を描画する imageellipse($image, 200, 150, 300, 200, $col_ellipse);
  // 画像を出力する header("Content-type: image/png"); imagepng($image);
  ?>
 |  
  | 
   
    imagefilledellipse(),
    imagearc()
    も参照ください。