php 验证码生成程序,可自动判断php gd库
发布:smiling 来源: PHP粉丝网 添加日期:2014-08-19 16:38:46 浏览: 评论:0
- function ShowKey()
- {
- $key=strtolower(domake_password(4));
- $set=esetcookie("checkkey",$key);
- //是否支持gd库
- if (function_exists("imagejpeg")) {
- header ("Content-type: image/jpeg");
- $img=imagecreate(69,20);
- $black=imagecolorallocate($img,255,255,255);
- $gray=imagecolorallocate($img,102,102,102);
- imagefill($img,0,0,$gray);
- imagestring($img,3,14,3,$key,$black);
- imagejpeg($img);
- imagedestroy($img);
- }
- elseif (function_exists("imagegif")) {
- header ("Content-type: image/gif");
- $img=imagecreate(69,20);
- $black=imagecolorallocate($img,255,255,255);
- $gray=imagecolorallocate($img,102,102,102);
- imagefill($img,0,0,$gray);
- imagestring($img,3,14,3,$key,$black);
- imagegif($img);
- imagedestroy($img);
- }
- elseif (function_exists("imagepng")) {
- header ("Content-type: image/png");
- $img=imagecreate(69,20);
- $black=imagecolorallocate($img,255,255,255);
- $gray=imagecolorallocate($img,102,102,102);
- imagefill($img,0,0,$gray);
- imagestring($img,3,14,3,$key,$black);
- imagepng($img);
- imagedestroy($img);
- }
- elseif (function_exists("imagewbmp")) {
- header ("Content-type: image/vnd.wap.wbmp");
- $img=imagecreate(69,20);
- $black=imagecolorallocate($img,255,255,255);
- $gray=imagecolorallocate($img,102,102,102);
- imagefill($img,0,0,$gray);
- imagestring($img,3,14,3,$key,$black);
- imagewbmp($img);
- imagedestroy($img);
- }
- else {
- $set=esetcookie("checkkey","ebak");
- @include("class/functions.php");
- echo ReadFiletext("images/ebak.jpg");
- }
- }//开源代码phpfensi.com
- ShowKey();
Tags: php验证码 判断php gd库
相关文章
- ·php两款生成图形验证码的代码(2014-08-19)
- ·php生成验证码类代码(2014-08-19)
- ·php生成验证码实现代码(2014-08-19)
- ·php生成验证码详细教程(2014-08-19)
- ·php中文汉字验证码生成程序(2014-08-19)
- ·php 中文汉字验证码生成程序(2014-08-19)
- ·php图片验证码代码(2014-08-19)
- ·php生成图片与验证码图片生成原理(2014-08-19)
- ·php生成图形验证码(2014-08-19)
- ·php 验证码图片程序(2014-08-20)
- ·php 生成验证码程序(2014-08-20)
- ·php 简单的验证码生成实例(2014-08-22)
- ·php验证码生成程序代码(2014-08-22)
- ·推荐一款php验证码程序(2014-08-23)
- ·php验证码生成与应用实例(2014-08-23)
- ·php 验证码详细生成与使用方法(2014-08-25)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)