Размер файла: 1.42Kb
<?php
#-----------------------------------------------------#
# ********* ROTORCMS ********* #
# Made by : VANTUZ #
# E-mail : [email protected] #
# Site : http://pizdec.ru #
# WAP-Site : http://visavi.net #
# ICQ : 36-44-66 #
# Вы не имеете право вносить изменения в код скрипта #
# для его дальнейшего распространения #
#-----------------------------------------------------#
require_once ('../includes/start.php');
require_once ('../includes/functions.php');
if (isset($_GET['rat'])) {
$rat = abs(intval($_GET['rat']));
} else {
$rat = 0;
}
if (isset($_GET['per'])) {
$per = check($_GET['per']);
} else {
$per = 0;
}
if ($rat < 0 || $rat > 200) {
$rat = 0;
}
if ($per < 0 || $per > 100) {
$per = 0;
}
$im = ImageCreate (202, 9);
$color = imagecolorallocate ($im, 239, 255, 234);
$color1 = imagecolorallocate($im, 0, 0, 0);
$color2 = imagecolorallocate ($im, 133, 224, 97);
$color3 = imagecolorallocate($im, 79, 187, 49);
imagefilledrectangle ($im, 1, 1, $rat, 7, $color2);
imagerectangle ($im, 0, 0, 201, 8, $color3);
imageTTFtext($im, 6, 0, 175, 7, $color1, BASEDIR."gallery/fonts/font.ttf", "$per %");
header("Content-type: image/gif");
ImageGIF($im);
ImageDestroy($im);
?>