<?php
include_once '../../start.php';
$id = $_GET['id'];
$img = @imagecreatefromjpeg(H."/dark_war/all_img/clans/voting/null.jpg");
$screen = @imagecreatefromjpeg(H."/dark_war/all_img/clans/voting/red.jpg");
imagecopy($img,$screen,0,0,0,0,$id,20);
imagettftext ($img, 10, 0, 40, 15, 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);
?>