<?php
// 空の画像を生成します
$image = imagecreatetruecolor(400, 300);
// 背景色を選択します
$bg = imagecolorallocate($image, 0, 0, 0);
// 上で選択した色で背景を塗ります
imagefill($image, 0, 0, $bg);
// 楕円の色を選択します
$col_ellipse = imagecolorallocate($image, 255, 255, 255);
// 楕円を描画します
imageellipse($image, 200, 150, 300, 200, $col_ellipse);
// 画像を出力します
header("Content-type: image/png");
imagepng($image);
?>