I have the following code and the map image displays, however there is no red ellipse:
<?php
Header("Content-Type: image/jpeg");
$im = imagecreatefromjpeg("map720.jpg");
$white = imagecolorallocate($im, 255, 255, 255);
$red = imagecolorallocate($im, 255, 0, 0);
imagefilledellipse($im, 70, 70, 15, 15, $red);
imagejpeg($im);
imagedestroy($im);
?>