Файл: love/pr.php
Строк: 16
<?php // автор -=ШАХТЕР=- http://waphp.ru
$vote = abs(intval($_GET['pr']));
if ($vote > 100)
$vote = 100;
header("Content-type: image/gif");
$vote_img = imageCreateFromGIF("pr.gif");
$color = imagecolorallocate($vote_img, 234, 237, 237);
$color2 = imagecolorallocate($vote_img, 227, 222, 222);
$color3 = imagecolorallocate($vote_img, 204, 200, 200);
$color4 = imagecolorallocate($vote_img, 185, 181, 181);
$color5 = imagecolorallocate($vote_img, 197, 195, 195);
imagefilledrectangle($vote_img, 1, 1, 100, 2, $color);
imagefilledrectangle($vote_img, 1, 3, 100, 4, $color2);
imagefilledrectangle($vote_img, 1, 5, 100, 6, $color3);
imagefilledrectangle($vote_img, 1, 7, 100, 8, $color4);
imagefilledrectangle($vote_img, 1, 9, 100, 10, $color5);
$color = imagecolorallocate($vote_img, 50, 170, 255);
$color2 = imagecolorallocate($vote_img, 70, 153, 255);
$color3 = imagecolorallocate($vote_img, 70, 130, 255);
$color4 = imagecolorallocate($vote_img, 70, 153, 255);
$color5 = imagecolorallocate($vote_img, 70, 170, 255);
$color6 = imagecolorallocate($vote_img, 0, 0, 0);
if ($vote > 0) {
imagefilledrectangle($vote_img, 1, 1, $vote, 2, $color);
imagefilledrectangle($vote_img, 1, 1, $vote, 2, $color);
imagefilledrectangle($vote_img, 1, 3, $vote, 4, $color2);
imagefilledrectangle($vote_img, 1, 5, $vote, 6, $color3);
imagefilledrectangle($vote_img, 1, 7, $vote, 8, $color4);
imagefilledrectangle($vote_img, 1, 9, $vote, 10, $color5);
}
imageString($vote_img, 1, 78, 2, "$vote%", $color6);
ImageGIF($vote_img);
?>