前台生成验证码

来源:互联网 发布:隋菲菲wnba数据 编辑:程序博客网 时间:2024/06/03 16:01

<%@ page contentType="image/jpg; charset=GBK" import="java.awt.*,java.awt.image.*,java.util.*,javax.imageio.*"%>
<%!
Color getRandColor(int fc,int bc){//给定范围获得随机颜色
        Random random = new Random();
        if(fc>255) fc=255;
        if(bc>255) bc=255;
        int r=fc+random.nextInt(bc-fc);
        int g=fc+random.nextInt(bc-fc);
        int b=fc+random.nextInt(bc-fc);
        return new Color(r,g,b);
        }

原创粉丝点击