Просмотр файла blogs/grafic.php

Размер файла: 511B
<?php
$percent = (int)$_GET['percent'];
$percent_2 = $percent;
if($percent_2 == '100'){$percent_2 = $percent_2-2;}
elseif($percent_2 == '99'){$percent_2 = $percent_2-1;}
header("Content-type: image/gif");
$image = imageCreateFromGIF("images/grafic.gif");
$color = imagecolorallocate($image, 204, 204, 204);
if($percent > 0){ imagefilledrectangle ($image, 1, 8, $percent_2, 1, $color);}
$txt = imagecolorallocate($image, 0, 0, 0);
ImageString($image, 1, 85, 1, $percent, $txt);
ImageGIF($image);
?>