Skip to content

gjerokrsteski/php-captcha-generator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Introduction

Creates a security-captcha-image with the PHP's GD library for your web form. It's easy to use - just check it out now!

Build Status

Requirements & Installation

If you have the GD library (available at » http://www.libgd.org/) you will also be able to create and manipulate images. The format of images you are able to manipulate depend on the version of GD you install, and any other libraries GD might need to access those image formats. Versions of GD older than gd-1.6 support GIF format images, and do not support PNG, where versions greater than gd-1.6 and less than gd-2.0.28 support PNG, not GIF. GIF support was re-enabled in gd-2.0.28. Read more: http://www.php.net/manual/en/image.requirements.php

How to use it?

  1. Create a file "captcha.php" and make an instance of the CaptchaGenerator in it. You have to save the security-phrase for sample at the session. (see sample below)

  2. Integrate the capture-image into you form, using HTML-Tag img src="captcha.php".

<img src="captcha.php" border="0">
  1. After sending the form-data you can check if the value of the input-field "captcha-confirmation" equals with the security-phrase from the session. So that is all an the image should look like this:

Captcha Image

Easy use

try
{
  $captcha = new CaptchaGenerator(
    'path/to/your/font.ttf',
    'path/to/your/background-image.gif',
    $the_length_of_your_phrase = 4
  );

  // Intervene here the phrase
  // and save it into the database or at the session.
  $the_captcha_phrase = $captcha->getPhrase();

  $captcha->render();
}
catch (InvalidArgumentException $e)
{
  print $e->getMessage();
}

Customize some options

// ...

$captcha->setFontcolor(CaptchaGenerator::FONT_COLOR_BLUE)
        ->setFontsize(16)
        ->setPhraselength(5)
        ->setFontxmargin(55)
        ->setFontymargin(4)
        ->render();

// ...

About

Creates a security-captcha-image with the PHP's GD library for your web form.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published