Файл: 402m/img.php
Строк: 67
<?
include_once '../sys/inc/start.php';
include_once '../sys/inc/sess.php';
include_once '../sys/inc/home.php';
include_once '../sys/inc/settings.php';
include_once '../sys/inc/db_connect.php';
include_once '../sys/inc/ipua.php';
$set['antidos']=0;
include_once '../sys/inc/fnc.php';
include_once '../sys/inc/user.php';
if (!isset($_GET['p']) || !isset($_GET['in']))exit;
$p=max(0,min(100,intval($_GET['p'])));
$in=max(0,min(100,intval($_GET['in'])));
if($in=='1'){
$x=128;
$y=10;
$x2=@intval($x/(100/$p));
$img=imagecreate($x,$y);
$col['back']=imagecolorallocate($img, 101,177,105);
$col['draw']=imagecolorallocate($img, 0,232,58);
$col['font']=imagecolorallocate($img, 0,0,0);
$col['border']=imagecolorallocate($img, 155,155,155);
imagefill($img, $x, $y, $col['back']);
imagefilledrectangle($img, 0, 0, $x2, $y, $col['draw']);
imagerectangle($img, 0, 0, $x-1, $y-1, $col['border']);
imagettftext ($img, 7, 0, 55, $y-2, $col['font'], 'tahoma.ttf', "$p%");
header("Content-type: image/png");
imagepng($img);
}
if($in=='2'){
$x=128;
$y=10;
$x2=@intval($x/(100/$p));
$img=imagecreate($x,$y);
$col['back']=imagecolorallocate($img, 255,255,195);
$col['draw']=imagecolorallocate($img, 255,255,0);
$col['font']=imagecolorallocate($img, 0,0,0);
$col['border']=imagecolorallocate($img, 155,155,155);
imagefill($img, $x, $y, $col['back']);
imagefilledrectangle($img, 0, 0, $x2, $y, $col['draw']);
imagerectangle($img, 0, 0, $x-1, $y-1, $col['border']);
imagettftext ($img, 7, 0, 55, $y-2, $col['font'], 'tahoma.ttf', "$p%");
header("Content-type: image/png");
imagepng($img);
}
if($in=='3'){
$x=128;
$y=10;
$x2=@intval($x/(100/$p));
$img=imagecreate($x,$y);
$col['back']=imagecolorallocate($img, 101,177,105);
$col['draw']=imagecolorallocate($img, 0,232,58);
$col['font']=imagecolorallocate($img, 0,0,0);
$col['border']=imagecolorallocate($img, 155,155,155);
imagefill($img, $x, $y, $col['back']);
imagefilledrectangle($img, 0, 0, $x2, $y, $col['draw']);
imagerectangle($img, 0, 0, $x-1, $y-1, $col['border']);
imagettftext ($img, 7, 0, 55, $y-2, $col['font'], 'tahoma.ttf', "$p%");
header("Content-type: image/png");
imagepng($img);
}
?>