php制作验证码图片
php
图片
验证码
1. [代码]制作随机字符串
<?php print_r(join("",array_merge(range("a","z"),range("A","Z")))); echo '<br />'; $chars = join("",array_merge(range("a","z"),range("A","Z"),range("0","9"))); $chars = str_shuffle($chars); echo $chars; foreach (range(0, 12) as $number) { echo $number,'<br />'; } ?>
登录后复制
2. [代码]利用GD库制作验证码
<?php require_once("string_func.php"); //通过GD库做验证码 //创建画布 /* * @param $sess_name SESSION名称 * @param $type 验证码样式. 1:纯数字验证码; 2:纯字母验证码; 3:数字和字母混合验证码; * @param $length 验证码字符数量。 * @param $pixel 干扰点数量 * @param $line 干扰线数量 * */ function image_func($sess_name = "verify",$type = 1,$length = 4,$pixel = 50,$line=3) { session_start(); $width = 80; $height = 30; $image = imagecreatetruecolor($width, $height); $white = imagecolorallocate($image, 255, 255, 255); $black = imagecolorallocate($image, 0, 0, 0); //填充画布 imagefilledrectangle($image, 1, 1, $width - 2, $height - 2, $white); $chars = buildRandomString($type, $length); $_SESSION[$sess_name] = $chars; $fontfiles = array("msyh.ttc", "msyhbd.ttc", "simhei.ttf", "simsun.ttc", "Deng.ttf", "Dengb.ttf", "Dengl.ttf"); for ($i = 0; $i < $length; $i++) { $size = mt_rand(14, 18); $angle = mt_rand(-15, 15); $x = 5 + $i * $size; $y = mt_rand(20, 26); $fontfile = "fonts/" . $fontfiles[mt_rand(0, count($fontfiles) - 1)]; $color = imagecolorallocate($image, mt_rand(50, 90), mt_rand(80, 120), mt_rand(90, 180)); $text = substr($chars, $i, 1); imagettftext($image, $size, $angle, $x, $y, $color, $fontfile, $text); } if ($pixel) { for ($i = 0; $i < $pixel; $i++) { $pointer_color = imagecolorallocate($image, mt_rand(50, 200), mt_rand(50, 200), mt_rand(50, 200)); imagesetpixel($image, mt_rand(0, 80), mt_rand(0, 30), $pointer_color); } } if ($line) { for ($i = 0; $i < $line; $i++) { $line_color = imagecolorallocate($image, mt_rand(100, 220), mt_rand(100, 220), mt_rand(100, 220)); imageline($image, mt_rand(0, 80), mt_rand(0, 30), mt_rand(0, 80), mt_rand(0, 30), $line_color); } } header("content-type:image/gif"); imagegif($image); imagedestroy($image); } return image_func('a',1,4,100,3); ?>
登录后复制
3. [代码]效果测试
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <img src="image_func.php" alt=""> </body> </html>
登录后复制
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章
R.E.P.O.能量晶体解释及其做什么(黄色晶体)
2 周前
By 尊渡假赌尊渡假赌尊渡假赌
击败分裂小说需要多长时间?
1 个月前
By DDD
R.E.P.O.最佳图形设置
2 周前
By 尊渡假赌尊渡假赌尊渡假赌
刺客信条阴影:贝壳谜语解决方案
1 周前
By DDD
R.E.P.O.如果您听不到任何人,如何修复音频
2 周前
By 尊渡假赌尊渡假赌尊渡假赌

热工具

记事本++7.3.1
好用且免费的代码编辑器

SublimeText3汉化版
中文版,非常好用

禅工作室 13.0.1
功能强大的PHP集成开发环境

Dreamweaver CS6
视觉化网页开发工具

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

PHP 8.4 带来了多项新功能、安全性改进和性能改进,同时弃用和删除了大量功能。 本指南介绍了如何在 Ubuntu、Debian 或其衍生版本上安装 PHP 8.4 或升级到 PHP 8.4

CakePHP 是 PHP 的开源框架。它的目的是使应用程序的开发、部署和维护变得更加容易。 CakePHP 基于类似 MVC 的架构,功能强大且易于掌握。模型、视图和控制器 gu
