Last active
August 29, 2015 14:11
-
-
Save jtarleton/57e04a511fbed06dfc73 to your computer and use it in GitHub Desktop.
Simple Captcha Image
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* Based on SIMPLE CAPTCHA IMAGE SCRIPT by Constantin Boiangiu | |
* This program is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation, either version 3 of the License, or | |
* (at your option) any later version. | |
* | |
* This program is distributed in the hope that it will be useful, | |
* but WITHOUT ANY WARRANTY; without even the implied warranty of | |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
* GNU General Public License for more details. | |
* | |
* You should have received a copy of the GNU General Public License | |
* along with this program. If not, see <http://www.gnu.org/licenses/>. | |
*/ | |
class JtCaptcha { | |
private $img, $security_number, $red, $green, $blue, $text_color, $text; | |
public function __construct($fpath, $secnum){ | |
//we create out image from the existing jpg image. | |
//You can replace that image with another of the | |
//same size. | |
$this->img=imagecreatefromjpeg($fpath); | |
//defines the text we use in our image, | |
//in our case the security number defined | |
//in usage.php | |
$this->security_number = empty($secnum) | |
? 'error' | |
: $secnum; | |
//we define 3 random numbers that will | |
//eventually create our text color code (RGB) | |
$this->red=rand(100,255); | |
$this->green=rand(100,255); | |
$this->blue=rand(100,255); | |
//in order to have different color for our text, | |
//we substract from the maximum 255 the random | |
//number generated above | |
$this->text_color=imagecolorallocate($this->img, | |
255-$this->red, | |
255-$this->green, | |
255-$this->blue | |
); | |
//this adds the text stored in $this->image_text to our | |
//capcha image | |
$this->text=imagettftext($this->img, | |
16, | |
rand(-10,10), | |
rand(10,30), | |
rand(25,35), | |
$this->text_color, | |
"fonts/courbd.ttf", | |
$this->security_number | |
); | |
} | |
public static function get($fpath, $secnum){ | |
return new self($fpath, $secnum); | |
} | |
public function send(){ | |
// | |
// we tell the browser that he's dealing | |
// with a jpg image, although that's not true, | |
// he will have to belive us | |
header("Content-type:image/jpeg"); | |
header("Content-Disposition:inline ; filename=secure.jpg"); | |
imagejpeg($this->img); | |
// and this is all. | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require('./JtCaptcha.class.php'); | |
session_start(); | |
$_SESSION['security_number']=rand(10000,99999); | |
JtCaptcha::get('texture.jpg', $_SESSION['security_number'])->send(); exit(0); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment