Файл: CMS/votes/graph.php
Строк: 12
<?php
define('CMS',TRUE);
define('ROOT','../');
include('../core/init.php');
$rat = !empty($_GET['rat']) ? num($_GET['rat']) : 0;
$per = !empty($_GET['per']) ? check($_GET['per']) : 0;
if ($rat < 0 || $rat > 200) {
$rat = 0;
}
if ($per < 0 || $per > 100) {
$per = 0;
}
$clr = !empty($_SESSION[SP]['color']) ? $_SESSION[SP]['color'] : array(99, 151, 188);
$im = @ImageCreate(202, 11);
$color = imagecolorallocate ($im, 239, 255, 234);
$color1 = imagecolorallocate($im, 0, 0, 0);
$color2 = imagecolorallocate ($im, $clr[0], $clr[1], $clr[2]);
$color3 = imagecolorallocate($im, 78, 135, 178);
imagefilledrectangle ($im, 1, 1, $rat, 7, $color2);
imagerectangle ($im, 0, 0, 201, 8, $color3);
imageTTFtext($im, 6, 0, 175, 7, $color1, ROOTPATH . '/gallery/fonts/font.ttf', "$per %");
header("Content-type: image/gif");
ImageGIF($im);
ImageDestroy($im);
exit;
?>