PHP简易汉字验证码
25-04-07 03:30
775
0
<?php /** * PHP实现简易汉字验证码的思路 */ // 创建画布 $image = imagecreatetruecolor(200, 60); $background = imagecolorallocate($image, 255, 255, 255); imagefill($image, 0, 0, $background); // 画干扰点 for ($i=0; $i < 300; $i++) { $pixColor = imagecolorallocate($image, rand(150, 240), rand(150, 240), rand(150, 240)); $pixX = rand(10, 190); $pixY = rand(5, 55); imagesetpixel($image, $pixX, $pixY, $pixColor); } // 画干扰线 //4条水平线 for ($i=0; $i < 5; $i++) { $lineColor = imagecolorallocate($image, rand(50, 150), rand(50, 150), rand(50, 150)); $lineX1 = 0; $lineX2 = 300; $lineY1 = ($i + 1) * 12; $lineY2 = ($i + 1) * 12; imageline($image, $lineX1, $lineY1, $lineX2, $lineY2, $lineColor); } //10条垂直线 for ($i=0; $i < 30; $i++) { $lineColor = imagecolorallocate($image, rand(50, 150), rand(50, 150), rand(50, 150)); $lineX1 = ($i + 1) * 10; $lineX2 = ($i + 1) * 10; $lineY1 = 0; $lineY2 = 60; imageline($image, $lineX1, $lineY1, $lineX2, $lineY2, $lineColor); } // 画汉字 $text = array('栀', '子', '花', '开'); for ($i=0; $i < 4; $i++) { $textColor = imagecolorallocate($image, rand(20, 100), rand(20, 100), rand(20, 100)); $textX = $i * 50 + 10; $textY = rand(40, 60); // 字体文件为英文名 imagettftext($image, 30, rand(20, 50), $textX, $textY, $textColor, "STFANGSO.TTF", $text[$i]); } // 输出图像 header("content-type:image/png"); imagepng($image); // 销毁图像 imagedestroy($image);
-
灵动云商城小程序(带php后端)
CodeigniterLeanCloudBootstrapAdmin-LTEjQueryfex-webuploaderCodeigniter是一个老牌的php框架,零配置,文档极其丰富,国内的流利... 1081 0 24-06-02 -
万兴数据恢复V7.2 电脑数据恢复专家
万兴数据恢复7.2版是国外顶尖的数据恢复工具,它可以帮助用户恢复电脑上、U盘上、SD卡上删除、格式化后的文件找回,非常管用。支持恢复的文... 1155 0 24-06-01 -
大学英语四级1989-2023历年真题及答案解析
1989-2012年(赠品,四级13年改版)2013年12月CET42013年6月CET42014年12月CET42014年6月CET42015年12月CET42015年6月CET42016年12月CET420... 1136 0 24-08-19 -
仿斗鱼直播小程序
"仿斗鱼直播小程序-微信小程序源码.zip" 涉及的主要知识点是微信小程序的开发和斗鱼直播平台的界面设计与功能实现。这个压缩包包含了一个... 867 0 24-09-19 -
教师资格面试资料包
2018下半年中小幼面试结构化试讲真题.pdf中学教师资格面试评分标准 3.19.pdf中学面试备考策略之结构化.docx中学面试大纲 3.19.pdf中小学... 1148 0 24-08-19 -
ASP.NET 4权威指南
众所周知,ASP.NET是当前最主流的Web应用程序开发技术之一,它构建在.NET Framework之上。.NET Framework属于企业级的技术开发平台,聚合... 1296 0 24-05-24 -
12306 Bypass 分流抢票软件
12306 Bypass 分流抢票软件完全免费,支持全自动抢票、自动候补、整点抢购预售票以及稳定捡漏功能。它具有多种实用功能,如多天、多车次... 1435 0 25-02-04 -
EmojiAll 中文官方网站
EmojiAll致力于推广和普及emoji,帮助大家了解emoji的意思、更准确的表达自己、更方便的使用emoji,希望emoji能为大家的日常生活带来更多欢... 1939 0 24-07-14
发表我的评论
共0条评论
- 这篇文章还没有收到评论,赶紧来抢沙发吧~