1
|
<?php
|
2
|
|
3
|
// $Id: calc_image.php 915 2009-01-21 19:27:01Z Ruebenwurzel $
|
4
|
|
5
|
/*
|
6
|
|
7
|
Website Baker Project <http://www.websitebaker.org/>
|
8
|
Copyright (C) 2004-2009, Ryan Djurovich
|
9
|
|
10
|
Website Baker is free software; you can redistribute it and/or modify
|
11
|
it under the terms of the GNU General Public License as published by
|
12
|
the Free Software Foundation; either version 2 of the License, or
|
13
|
(at your option) any later version.
|
14
|
|
15
|
Website Baker is distributed in the hope that it will be useful,
|
16
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
17
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
18
|
GNU General Public License for more details.
|
19
|
|
20
|
You should have received a copy of the GNU General Public License
|
21
|
along with Website Baker; if not, write to the Free Software
|
22
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
23
|
|
24
|
*/
|
25
|
|
26
|
require_once("../../../config.php");
|
27
|
require_once(WB_PATH.'/include/captcha/captcha.php');
|
28
|
|
29
|
if(!isset($_SESSION['captcha_time']))
|
30
|
exit;
|
31
|
unset($_SESSION['captcha_time']);
|
32
|
|
33
|
// Captcha
|
34
|
$_SESSION['captcha'] = '';
|
35
|
mt_srand((double)microtime()*1000000);
|
36
|
$n = mt_rand(1,3);
|
37
|
switch ($n) {
|
38
|
case 1:
|
39
|
$x = mt_rand(1,9);
|
40
|
$y = mt_rand(1,9);
|
41
|
$_SESSION['captcha'] = $x + $y;
|
42
|
$cap = "$x+$y";
|
43
|
break;
|
44
|
case 2:
|
45
|
$x = mt_rand(10,20);
|
46
|
$y = mt_rand(1,9);
|
47
|
$_SESSION['captcha'] = $x - $y;
|
48
|
$cap = "$x-$y";
|
49
|
break;
|
50
|
case 3:
|
51
|
$x = mt_rand(2,10);
|
52
|
$y = mt_rand(2,5);
|
53
|
$_SESSION['captcha'] = $x * $y;
|
54
|
$cap = "$x*$y";
|
55
|
break;
|
56
|
}
|
57
|
|
58
|
// create reload-image
|
59
|
$reload = ImageCreateFromPNG(WB_PATH.'/include/captcha/reload_120_30.png'); // reload-overlay
|
60
|
|
61
|
$image = imagecreate(120, 30);
|
62
|
|
63
|
$white = imagecolorallocate($image, 0xFF, 0xFF, 0xFF);
|
64
|
$gray = imagecolorallocate($image, 0xC0, 0xC0, 0xC0);
|
65
|
$darkgray = imagecolorallocate($image, 0x30, 0x30, 0x30);
|
66
|
|
67
|
for($i = 0; $i < 30; $i++) {
|
68
|
$x1 = mt_rand(0,120);
|
69
|
$y1 = mt_rand(0,30);
|
70
|
$x2 = mt_rand(0,120);
|
71
|
$y2 = mt_rand(0,30);
|
72
|
imageline($image, $x1, $y1, $x2, $y2 , $gray);
|
73
|
}
|
74
|
|
75
|
$x = 10;
|
76
|
$l = strlen($cap);
|
77
|
for($i = 0; $i < $l; $i++) {
|
78
|
$fnt = mt_rand(3,5);
|
79
|
$x = $x + mt_rand(12 , 20);
|
80
|
$y = mt_rand(7 , 12);
|
81
|
imagestring($image, $fnt, $x, $y, substr($cap, $i, 1), $darkgray);
|
82
|
}
|
83
|
|
84
|
imagealphablending($reload, TRUE);
|
85
|
imagesavealpha($reload, TRUE);
|
86
|
|
87
|
// overlay
|
88
|
imagecopy($reload, $image, 0,0,0,0, 120,30);
|
89
|
imagedestroy($image);
|
90
|
$image = $reload;
|
91
|
|
92
|
captcha_header();
|
93
|
imagepng($image);
|
94
|
imagedestroy($image);
|
95
|
|
96
|
?>
|