summary refs log tree commit diff stats
path: root/includes/securimage/securimage_show_example2.php
diff options
context:
space:
mode:
authorStarla Insigna <hatkirby@fourisland.com>2010-08-17 13:46:39 -0400
committerStarla Insigna <hatkirby@fourisland.com>2010-08-17 13:46:39 -0400
commit86eb02fb248b2df07919889c47686bd77e6865d7 (patch)
tree2e3879b17e43084e183c2f51e2fc36ed872874d5 /includes/securimage/securimage_show_example2.php
parent07be6bd4ac8e85b3c940abcd4b4d4a70a3d93593 (diff)
parent0085e272b2002437f11f74ccdde0d6975f2cd9f2 (diff)
downloadfourisland-86eb02fb248b2df07919889c47686bd77e6865d7.tar.gz
fourisland-86eb02fb248b2df07919889c47686bd77e6865d7.tar.bz2
fourisland-86eb02fb248b2df07919889c47686bd77e6865d7.zip
Merged unforgiving heads (and...)
Also updated public and private keys for reCAPTCHA. As well as the use of the new keys, Four Island now stores the private key along with the other
protected information that is not source controlled, instead of with the public key.
Diffstat (limited to 'includes/securimage/securimage_show_example2.php')
-rwxr-xr-xincludes/securimage/securimage_show_example2.php55
1 files changed, 0 insertions, 55 deletions
diff --git a/includes/securimage/securimage_show_example2.php b/includes/securimage/securimage_show_example2.php deleted file mode 100755 index 941379b..0000000 --- a/includes/securimage/securimage_show_example2.php +++ /dev/null
@@ -1,55 +0,0 @@
1<?php
2
3/**
4 * Project: Securimage: A PHP class for creating and managing form CAPTCHA images<br />
5 * File: securimage_show_example2.php<br />
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or any later version.<br /><br />
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.<br /><br />
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA<br /><br />
20 *
21 * Any modifications to the library should be indicated clearly in the source code
22 * to inform users that the changes are not a part of the original software.<br /><br />
23 *
24 * If you found this script useful, please take a quick moment to rate it.<br />
25 * http://www.hotscripts.com/rate/49400.html Thanks.
26 *
27 * @link http://www.phpcaptcha.org Securimage PHP CAPTCHA
28 * @link http://www.phpcaptcha.org/latest.zip Download Latest Version
29 * @link http://www.phpcaptcha.org/Securimage_Docs/ Online Documentation
30 * @copyright 2009 Drew Phillips
31 * @author Drew Phillips <drew@drew-phillips.com>
32 * @version 2.0.1 BETA (December 6th, 2009)
33 * @package Securimage
34 *
35 */
36
37include 'securimage.php';
38
39$img = new securimage();
40
41//Change some settings
42$img->image_width = 280;
43$img->image_height = 100;
44$img->perturbation = 0.9;
45$img->code_length = rand(5,6);
46$img->image_bg_color = new Securimage_Color("#ffffff");
47$img->use_transparent_text = true;
48$img->text_transparency_percentage = 75; // 100 = completely transparent
49$img->num_lines = 15;
50$img->image_signature = '';
51$img->text_color = new Securimage_Color("#000000");
52$img->line_color = new Securimage_Color("#cccccc");
53
54$img->show(''); // alternate use: $img->show('/path/to/background_image.jpg');
55