mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-10 13:08:41 +00:00
12 lines
171 B
PHP
12 lines
171 B
PHP
|
<?php
|
||
|
|
||
|
require_once __DIR__.'/../vendor/autoload.php';
|
||
|
|
||
|
use Gregwar\Captcha\CaptchaBuilder;
|
||
|
|
||
|
$captcha = new CaptchaBuilder;
|
||
|
$captcha
|
||
|
->build()
|
||
|
->save('out.jpg')
|
||
|
;
|