1
1
mirror of https://github.com/renbaoshuo/S2OJ.git synced 2025-02-13 16:26:41 +00:00

12 lines
171 B
PHP

<?php
require_once __DIR__.'/../vendor/autoload.php';
use Gregwar\Captcha\CaptchaBuilder;
$captcha = new CaptchaBuilder;
$captcha
->build()
->save('out.jpg')
;