java 图片验证码

public void produceCaptcha(HttpServletRequest request,HttpServletResponse response) throws IOException{
	//设置不缓存图片  
        response.setHeader("Pragma", "No-cache");  
        response.setHeader("Cache-Control", "No-cache");  
        response.setDateHeader("Expires", 0);  
        
        //指定生成的响应图片,一定不能缺少这句话,否则错误.  
        response.setContentType("image/png");  
        //指定生成验证码的宽度和高度  
        int width=120,height=40;     
        BufferedImage image=new BufferedImage(width,height,BufferedImage.TYPE_INT_RGB); //创建BufferedImage对象,其作用相当于一图片  
        
        //创建Graphics对象,其作用相当于画笔  
        Graphics g=image.getGraphics();
        
        //创建Grapchics2D对象  
        Graphics2D g2d=(Graphics2D)g;
        //定义字体样式  
        Font mfont=new Font("宋体",Font.BOLD,40); 
        //定义随机数获取实例
        Random random=new Random(); 
        
        g.setColor(getRandColor(200,250));  
        //绘制背景  
        g.fillRect(0, 0, width, height); 
        //设置字体  
        g.setFont(mfont);
        g.setColor(getRandColor(180,200));  
          
        //绘制100条颜色和位置全部为随机产生的线条,该线条为2f  
        for(int i=0;i<100;i++){  
            int x=random.nextInt(width-1);  
            int y=random.nextInt(height-1);  
            int x1=random.nextInt(6)+1;  
            int y1=random.nextInt(12)+1;  
            BasicStroke bs=new BasicStroke(2f,BasicStroke.CAP_BUTT,BasicStroke.JOIN_BEVEL); //定制线条样式  
            Line2D line=new Line2D.Double(x,y,x+x1,y+y1);  
            g2d.setStroke(bs);  
            //绘制直线  
            g2d.draw(line);     
        }  
        
        //输出由英文,数字,和中文随机组成的验证文字,具体的组合方式根据生成随机数确定。  
        String sRand="";  
        String ctmp="";  
        int itmp=0;  
        
        //制定输出的验证码为四位  
        for(int i=0;i<4;i++){  
            switch(random.nextInt(2)){ 
            	//生成A-Z的字母  
                case 1:     
                     itmp=random.nextInt(26)+65;  
                     ctmp=String.valueOf((char)itmp);  
                     break; 
                //生成汉字  
                case 2:     
                     String[] rBase={"0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f"};   
                     //生成第一位区码  
                     int r1=random.nextInt(3)+11;  
                     String str_r1=rBase[r1];  
                     //生成第二位区码  
                     int r2;  
                     if(r1==13){  
                         r2=random.nextInt(7);     
                     }else{  
                         r2=random.nextInt(16);  
                     }  
                     String str_r2=rBase[r2];  
                     //生成第一位位码  
                     int r3=random.nextInt(6)+10;  
                     String str_r3=rBase[r3];  
                     //生成第二位位码  
                     int r4;  
                     if(r3==10){  
                         r4=random.nextInt(15)+1;  
                     }else if(r3==15){  
                         r4=random.nextInt(15);  
                     }else{  
                         r4=random.nextInt(16);  
                     }  
                     String str_r4=rBase[r4];  
                     //将生成的机内码转换为汉字  
                     byte[] bytes=new byte[2];  
                     //将生成的区码保存到字节数组的第一个元素中  
                     String str_12=str_r1+str_r2;  
                     int tempLow=Integer.parseInt(str_12, 16);  
                     bytes[0]=(byte) tempLow;  
                     //将生成的位码保存到字节数组的第二个元素中  
                     String str_34=str_r3+str_r4;  
                     int tempHigh=Integer.parseInt(str_34, 16);  
                     bytes[1]=(byte)tempHigh;  
                     ctmp=new String(bytes);  
                     break;  
                default:  
                     itmp=random.nextInt(10)+48;  
                     ctmp=String.valueOf((char)itmp);  
                     break;  
            }  
            sRand+=ctmp;  
            Color color=new Color(20+random.nextInt(110),20+random.nextInt(110),random.nextInt(110));  
            g.setColor(color);  
            //将生成的随机数进行随机缩放并旋转制定角度 PS.建议不要对文字进行缩放与旋转,因为这样图片可能不正常显示  
            /*将文字旋转制定角度*/  
           // Graphics2D g2d_word=(Graphics2D)g;  
            //AffineTransform trans=new AffineTransform();  
            //trans.rotate((45)*3.14/180,15*i+8,20);  
            /*缩放文字*/  
            float scaleSize=random.nextFloat()+0.8f;  
            if(scaleSize>1f) scaleSize=1f;  
           // trans.scale(scaleSize, scaleSize);  
           // g2d_word.setTransform(trans);  
            g.drawString(ctmp, 15*i+18, 34);  
        }  
        HttpSession session=request.getSession(true);  
        session.setAttribute("randCheckCode", sRand); 
        //释放g所占用的系统资源  
        g.dispose();    
        //释放g所占用的系统资源  
        ImageIO.write(image,"png",response.getOutputStream()); 
}
<img src="${contextPath}/web/user/produceCaptcha" id="createCheckCode" align="middle">


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值