diff options
Diffstat (limited to 'vendor/gregwar/captcha/demo/output.php')
-rw-r--r-- | vendor/gregwar/captcha/demo/output.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/vendor/gregwar/captcha/demo/output.php b/vendor/gregwar/captcha/demo/output.php new file mode 100644 index 00000000..2a4f3303 --- /dev/null +++ b/vendor/gregwar/captcha/demo/output.php @@ -0,0 +1,15 @@ +<?php + +include(__DIR__.'/../CaptchaBuilderInterface.php'); +include(__DIR__.'/../PhraseBuilderInterface.php'); +include(__DIR__.'/../CaptchaBuilder.php'); +include(__DIR__.'/../PhraseBuilder.php'); + +use Gregwar\Captcha\CaptchaBuilder; + +header('Content-type: image/jpeg'); + +CaptchaBuilder::create() + ->build() + ->output() +; |