<?php
$i = $_GET['i'];
header ("Content-type: image/gif");
$im = imagecreate(20,10);
$c1 = imagecolorallocate($im, 246, 247, 249);
$c2 = imagecolorallocate($im, 0, 0, 0);
imagettftext($im, 7,0,0,10, $c2, "font/font.ttf", $i."");
imagepng($im);
imagedestroy($im);
?>