Skip to content

Instantly share code, notes, and snippets.

@raulandregp
Created June 20, 2013 20:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save raulandregp/5826401 to your computer and use it in GitHub Desktop.
Save raulandregp/5826401 to your computer and use it in GitHub Desktop.
<?php
/*require('php-captcha.inc.php');
$aFonts = array('captcha/fonts/VeraBd.ttf', 'captcha/fonts/VeraIt.ttf', 'captcha/fonts/Vera.ttf');
$oVisualCaptcha = new PhpCaptcha($aFonts, 200, 50);
$oPhpCaptcha->UseColour(true);
$oVisualCaptcha->Create();*/
require('php-captcha.inc.php');
# // define fonts
$aFonts = array('captcha/fonts/VeraBd.ttf', 'captcha/fonts/VeraIt.ttf', 'captcha/fonts/Vera.ttf');
# // create new image
$oPhpCaptcha = new PhpCaptcha($aFonts, 200, 50);
$oPhpCaptcha->UseColour(true);
$oPhpCaptcha->Create();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment