PHP Code:
<?php
error_reporting(E_ALL & ~E_NOTICE);
$id = intval($_GET['id']);
if ($_GET['generatehtml'])
{
echo "<html><body><img src=\"" . $_SERVER['PHP_SELF'] . "?id=$id\" /></body></html>";
}
else
{
$im = imagecreatefrompng("anonavatar.png");
$black = imagecolorallocate($im, 0, 0, 0);
imagettftext($im, 7, 10, 31, 60, $black, "anonavatar.ttf", $id);
header("Content-type: image/png");
imagepng($im);
imagedestroy($im);
}
?>