13 lines
185 B
PHP
13 lines
185 B
PHP
<?php
|
|
|
|
require_once __DIR__.'/../vendor/autoload.php';
|
|
|
|
use Webman\Captcha\CaptchaBuilder;
|
|
|
|
header('Content-type: image/jpeg');
|
|
|
|
CaptchaBuilder::create()
|
|
->build()
|
|
->output()
|
|
;
|