guojikai / captcha-image-creator
一个PHP写的中文验证码图片生成工具,仅生成验证码图片不进行缓存,需封装使用。
Installs: 4 800
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: >=5.4.0
This package is not auto-updated.
Last update: 2024-11-09 18:38:19 UTC
README
一个PHP写的中文验证码图片生成工具,仅生成验证码图片不进行缓存,需封装使用。
安装
使用 Composer 安装:
composer require guojikai/captcha-image-creator
在入口文件引入 Composer 启动脚本: (eg. index.php)
require 'vendor/autoload.php';
使用
<?php use Pcic\Pcic; use Pcic\PcicException; try { //Print captcha image with params: String, Width, Height (eg. 宫保鸡丁, 180, 60) Pcic::createCaptchaImage('宫保鸡丁'); } catch (PcicException $e) { echo $e->getMessage(); } //将直接显示验证码图片 ?>