Файл: DARK WARS/dark_war/percent.php
Строк: 26
<?php
include_once 'start.php';
$id = $_GET['id'];
$max = $_GET['max'];
$img = @imagecreatefromjpeg(H."/dark_war/all_img/percent_profile/null.jpg");
switch ($_GET['color']) {
case 'red':
$screen = @imagecreatefromjpeg(H."/dark_war/all_img/percent_profile/red.jpg");
break;
case 'blue':
$screen = @imagecreatefromjpeg(H."/dark_war/all_img/percent_profile/blue.jpg");
break;
case 'golden':
$screen = @imagecreatefromjpeg(H."/dark_war/all_img/percent_profile/golden.jpg");
break;
}
imagecopy($img,$screen,0,0,0,0,$id,20);
if ($id > 100 && $id < 201) {
$pro = $id - 100;
$screen1 = @imagecreatefromjpeg(H."/dark_war/all_img/percent_profile/".$_GET['color']."_plus100.jpg");
imagecopy($img,$screen1,0,0,0,0,$pro,20);
} elseif ($id > 200 && $id < 301) {
$prol = $id - 200;
$screen1 = @imagecreatefromjpeg(H."/dark_war/all_img/percent_profile/".$_GET['color']."_plus200.jpg");
imagecopy($img,$screen1,0,0,0,0,$prol,20);
}
imagettftext ($img, 10, 0, 10, 15, imagecolorallocate ($img, 0, 0, 0), 'style/font/shrift.ttf', "$id/$max");
@ob_end_clean();
header("Content-type: image/jpeg");
imagejpeg($img,null,90);
?>