<?php
include_once '../start.php';
$id = $_GET['id'];
$img = @imagecreatefrompng(H."/dark_war/all_img/village/fortune/font.png");
imagettftext ($img, 16, 0, 36, 32, imagecolorallocate ($img, 0, 0, 0), H.'/dark_war/style/font/shrift.ttf', "$id");
@ob_end_clean();
header("Content-type: image/jpeg");
imagejpeg($img,null,100);
?>