mirror of
https://github.com/getnamingo/registry.git
synced 2025-05-18 18:39:19 +02:00
20 lines
No EOL
507 B
PHP
20 lines
No EOL
507 B
PHP
<?php
|
|
session_start();
|
|
use Gregwar\Captcha\CaptchaBuilder;
|
|
|
|
require 'vendor/autoload.php';
|
|
|
|
$captcha = new CaptchaBuilder;
|
|
//$captcha->setBackgroundColor(255, 255, 255);
|
|
$captcha->setMaxAngle(5);
|
|
$captcha->setMaxBehindLines(3);
|
|
$captcha->setMaxFrontLines(0);
|
|
$captcha->setTextColor(0, 0, 0);
|
|
$captcha->setInterpolation(false);
|
|
$captcha->setDistortion(false);
|
|
$captcha->build($width = 180, $height = 50);
|
|
|
|
$_SESSION['captcha'] = $captcha->getPhrase();
|
|
|
|
header('Content-type: image/jpeg');
|
|
$captcha->output(); |