getnamingo-registry/whois/web/captcha.php
2024-01-24 16:03:33 +02:00

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();