mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-10 08:38:42 +00:00
13 lines
186 B
PHP
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()
|
|
;
|