mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 01:39:24 +02:00
10 lines
474 B
PHP
10 lines
474 B
PHP
<?php
|
|
require_once 'captcha.php';
|
|
|
|
$largura = empty($_GET['l']) ? 120 : $_GET['l']; // recebe a largura
|
|
$altura = empty($_GET['a']) ? 40 : $_GET['a']; // recebe a altura
|
|
$tamanho_fonte = empty($_GET['tf']) ? 18 : $_GET['tf']; // recebe o tamanho da fonte
|
|
$quantidade_letras = empty($_GET['ql']) ? 5 : $_GET['ql']; // recebe a quantidade de letras que o captcha terá
|
|
|
|
$capcha = new Captcha($largura, $altura, $tamanho_fonte, $quantidade_letras);
|
|
$capcha->getCaptchaImage();
|