S2OJ/web/app/vendor/gregwar/captcha/demo/output.php
Baoshuo 2fcc71029e
All checks were successful
continuous-integration/drone/push Build is passing
chore(web): move gregwar/captcha
2022-10-08 19:58:22 +08: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()
;