php生成图片验证码
发布:smiling 来源: PHP粉丝网 添加日期:2014-08-25 13:38:43 浏览: 评论:0
首先,有一个在php.ini看看gd库是不是开启的,下一步,我们会考虑每一个细节的图像生成步骤.
php生成图片验证码实例代码如下:
- <?php
- //Send a generated image to the browser
- create_image();
- exit();
- function create_image()
- {
- //Let's generate a totally random string using md5
- $md5 = md5(rand(0,999));
- //We don't need a 32 character long string so we trim it down to 5
- $pass = substr($md5, 10, 5);
- //Set the image width and height
- $width = 100;
- $height = 20;
- //Create the image resource
- $image = ImageCreate($width, $height);
- //We are making three colors, white, black and gray
- $white = ImageColorAllocate($image, 255, 255, 255);
- $black = ImageColorAllocate($image, 0, 0, 0);
- $grey = ImageColorAllocate($image, 204, 204, 204);
- //Make the background black
- ImageFill($image, 0, 0, $black);
- //Add randomly generated string in white to the image
- ImageString($image, 3, 30, 3, $pass, $white);
- //Throw in some lines to make it a little bit harder for any bots to
- break
- ImageRectangle($image,0,0,$width-1,$height-1,$grey);
- imageline($image, 0, $height/2, $width, $height/2, $grey);
- imageline($image, $width/2, 0, $width/2, $height, $grey);
- //Tell the browser what kind of file is come in
- header("Content-Type: image/jpeg");
- //开源代码phpfensi.com
- //Output the newly created image in jpeg format
- ImageJpeg($image);
- //Free up resources
- ImageDestroy($image);
- }
- ?>
验证码调用方法,代码如下:
<img height="120" alt="Dynamically generated image" src="generate_image.php" width="200">
Tags: php生成图片验证码
- 上一篇:PHP验证码的产生和生成验证码程序
- 下一篇:超简单的php图片统计器
相关文章
- ·PHP生成图片验证码练习笔记(2014-08-18)
- ·php生成图片验证码的实例讲解(2021-06-15)
- ·php生成图片验证码-附五种验证码(2021-06-16)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)