yolo/captcha

A php captcha package

v1.0.0 2024-11-28 03:51 UTC

This package is not auto-updated.

Last update: 2025-04-04 03:46:36 UTC


README

要求

  • PHP >= 8.1
  • gd2
  • mbstring

安装

composer require yolo/captcha

使用

<?php

use Yolo\Captcha\Captcha;
use Yolo\Captcha\Core\CaptchaEngine;

require_once __DIR__ . '/../../vendor/autoload.php';

// Global config
Captcha::setConfig([
    'height' => 50,
    'width' => 250,
    'length' => 6, // only for character engine
    'font' => __DIR__ . '/fonts/Arial.ttf',
    'fontSize' => 25,
    'quality' => 0, // 0-9, No effect now
    'backgroundColor' => [255, 255, 255],
    'fontColor' => [0, 0, 0], // No effect now
    'engine' => CaptchaEngine::CHARACTER, // or CaptchaEngine::SIMPLE_ARITHMETIC
]);

$captcha = new Captcha();

$image = $captcha->createCaptcha();

imagepng($image, __DIR__ . '/captcha.png');

// Set the content type and output the image
//header('Content-Type: image/png');
//imagepng($image);

$captcha->destroyCaptcha($image);

// Get the captcha answer
$answer = $captcha->getCaptchaAnswer();