Создаём файл image.php с таким содержимым:
<?php
$img = imagecreatetruecolor(80, 100);
imageline($img, 10, 10, 10, 90, 0xffffff);
imageellipse($img, 40, 50, 50, 80, 0xffffff);
imageline($img, 70, 90, 70, 10, 0xffffff);
Header('Content-type: image/png');
imagepng($img);
imagedestroy($img);
?>
И потом, например в index.php
<?
echo '<img src="image.php" alt="lol"/>';
?>