S2OJ/web/vendor/gregwar/captcha/demo/output.php
2022-03-14 13:49:48 +00:00

13 lines
186 B
PHP

<?php
require_once __DIR__.'/../vendor/autoload.php';
use Gregwar\Captcha\CaptchaBuilder;
header('Content-type: image/jpeg');
CaptchaBuilder::create()
->build()
->output()
;