library captcha
PHP Captcha Package
cocoa/captcha
PHP Captcha Package
- Friday, May 19, 2017
- by mx
- Repository
- 2 Watchers
- 12 Stars
- 269 Installations
- PHP
- 1 Dependents
- 0 Suggesters
- 1 Forks
- 0 Open issues
- 2 Versions
- 7 % Grown
PHP Captcha Library
Based on mewebstudio/captcha., (*1)
Preview
, (*2)
Requirements
Composer Installation
composer require cocoa/captcha
Usage
use Cocoa\Captcha\CaptchaBuilder;
$builder = new CaptchaBuilder;
$captcha = $builder->build();
$builder->output();
use Cocoa\Captcha\CaptchaBuilder;
$builder = new CaptchaBuilder;
$length = 5;
$captcha = $builder->build($length);
$builder->setWidth(120)->setHeight(36)->setContrast(0)->setInvert(false)->setSharpen(0)->setBgColor('#ffffff')->setBgImage(true)->setBlur(0)->setQuality(90)->setLines(3)->setAngle(10)->output();