php生成验证码图片学习笔记
发布:smiling 来源: PHP粉丝网 添加日期:2014-08-19 09:34:50 浏览: 评论:0
这里是自己的学习时的验证码图形生成的学习笔记,后来经过自己的深入学习,可以获取远程的图片到本地,不过这里需要php gd库开启,代码如下:
- header("Content-type:image/png");
- set_time_limit(0);//设置PHP超时时间
- $url = $_GET['url'];
- $url = "http://vcer.baidu.com/verify";
- $imginfo = GetImageSize ( $url );
- $imgw = $imginfo [0];
- $imgh = $imginfo [1];
- $bg = imagecreatetruecolor($imgw,$imgh);
- $image = imagecreatefromjpeg($url);
- imagecolorallocate($image,255,255,255);
- imagecopy($bg,$image,0,0, 0,0,$imgw,$imgh);
- imagedestroy($image);
- ImagePng($bg);//开源代码phpfensi.com
php获取远程验证码到本地,代码如下:
- header("Content-type:image/png");
- set_time_limit(0);//设置PHP超时时间
- $url = $_GET['url'];
- $url = "http://vcer.baidu.com/verify";
- if(emptyempty($url)){
- echo "没有图片";
- die;
- }
- $imginfo = GetImageSize ( $url );
- $type = exif_imagetype($url);
- $imgw = $imginfo [0];
- $imgh = $imginfo [1];
- $bg = imagecreatetruecolor($imgw,$imgh);
- if($type==IMAGETYPE_GIF){
- $image = imagecreatefromgif($url);
- }elseif($type==IMAGETYPE_JPEG){
- $image = imagecreatefromjpeg($url);
- }elseif($type==IMAGETYPE_PNG){
- $image = imagecreatefrompng($url);
- }
- imagecolorallocate($image,255,255,255);
- imagecopy($bg,$image,0,0, 0,0,$imgw,$imgh);
- imagedestroy($image);
- ImagePng($bg);
Tags: PHP生成验证码 PHP图片
- 上一篇:php中生成透明背景png缩略图程序
- 下一篇:php常用图片处理类
相关文章
- ·PHP生成GIF动态图片验证码(2014-08-18)
- ·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-22)
- ·php生成验证码图片程序(2014-08-23)
- ·PHP验证码生成类完整代码(2014-08-28)
- ·php生成数字字母的验证码图片(2021-06-12)
- ·php生成验证码,缩略图及水印图的类分享(2021-07-27)
- ·PHP为图片添加水印的实例(2013-11-14)
- ·php 给图片加灰色透明效果(2013-11-14)
- ·在PHP中将图片存放ORACLE中(2013-12-08)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)