-
Notifications
You must be signed in to change notification settings - Fork 0
/
bar.php
54 lines (50 loc) · 1.57 KB
/
bar.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
$x = addslashes(htmlspecialchars(trim($_REQUEST['long'])));
if($x < 1 or !is_numeric($x) or empty($x))
{
$x=1;
$image=ImageCreate($x,10);
if($x < 15)
$color=ImageColorAllocate($image,255,0,0);
elseif($x < 35)
$color=ImageColorAllocate($image,255,106,0);
elseif($x <= 50)
$color=ImageColorAllocate($image,255,216,0);
elseif($x > 50)
$color=ImageColorAllocate($image,0,255,33);
ImageFill($image,1,1,$color);
header("Content-type: image/gif");
imagegif($image);
}
elseif($x > 100)
{
$x=100;
$image=ImageCreate($x,10);
if($x < 15)
$color=ImageColorAllocate($image,255,0,0);
elseif($x < 35)
$color=ImageColorAllocate($image,255,106,0);
elseif($x <= 50)
$color=ImageColorAllocate($image,255,216,0);
elseif($x > 50)
$color=ImageColorAllocate($image,0,255,33);
ImageFill($image,1,1,$color);
header("Content-type: image/gif");
imagegif($image);
}
else
{
$image=ImageCreate($x,10);
if($x < 15)
$color=ImageColorAllocate($image,255,0,0);
elseif($x < 35)
$color=ImageColorAllocate($image,255,106,0);
elseif($x <= 50)
$color=ImageColorAllocate($image,255,216,0);
elseif($x > 50)
$color=ImageColorAllocate($image,0,255,33);
ImageFill($image,1,1,$color);
header("Content-type: image/gif");
imagegif($image);
}
?>