<?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);
?>