<?php
$w = $h = 600;
$i = imagecreatetruecolor($w, $h);

$color = 0;
for ($x = $w; $x > 0; --$x) {
    $color = 255 / $w * ($w - $x);
    $col = imagecolorallocate($i, 0, $color, 0);
    imagefilledellipse($i, $w / 2, $h / 2, $x, $x, $col);
}

header('Content-type: image/png');
imagepng($i);
?>
