当前位置: 首页 > article >正文

获得 随机验证码(以图片为底层)

1:工具类

@Slf4j
public class RandomValidateCode {


    private static String baseNumLetter = "1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ";
    private static String font = "微软雅黑";

    //绘制验证码图片,返回验证码文本内容
    public static String drawRandomText(int width, int height, BufferedImage verifyImg) {

        Graphics2D graphics = (Graphics2D) verifyImg.getGraphics();
        graphics.setColor(Color.WHITE);//设置画笔颜色-验证码背景色
        graphics.fillRect(0, 0, width, height);//填充背景
        graphics.setFont(new Font(font, Font.BOLD, 30));

        StringBuffer sBuffer = new StringBuffer();
        int x = 10;  //旋转原点的 x 坐标
        String ch = "";
        Random random = new Random();
        for (int i = 0; i < 4; i++) {
            graphics.setColor(getRandomColor());
            //设置字体旋转角度
            int degree = random.nextInt() % 30;  //角度小于30度
            int dot = random.nextInt(baseNumLetter.length());
            ch = baseNumLetter.charAt(dot) +"";
            sBuffer.append(ch);
            //正向旋转
            graphics.rotate(degree * Math.PI / 180, x, 45);
            graphics.drawString(ch, x, 45);
            //反向旋转
            graphics.rotate(-degree * Math.PI / 180, x, 45);
            x += 48;
        }

        //画干扰线
        /*for (int i = 0; i < 30; i++) {
            // 设置随机颜色
            graphics.setColor(getRandomColor());
            // 随机画线
            graphics.drawLine(random.nextInt(width), random.nextInt(height),
                    random.nextInt(width), random.nextInt(height));

        }

        //添加噪点
        for (int i = 0; i < 200; i++) {
            int x1 = random.nextInt(width);
            int y1 = random.nextInt(height);
            graphics.setColor(getRandomColor());
            graphics.fillRect(x1, y1, 2, 2);

        }*/
        log.info("======图文验证:{}", sBuffer.toString());
        return sBuffer.toString();
    }

    //获取随机颜色

    private static Color getRandomColor() {
        Random ran = new Random();
        Color color = new Color(ran.nextInt(256),
                ran.nextInt(256), ran.nextInt(256));
        return color;
    }

2:方法层

String getCheckCode(String phone, BufferedImage verifyImg);

3:业务层

@Override
public String getCheckCode(String phone, BufferedImage verifyImg) {
    String randomText = RandomValidateCode.drawRandomText(BaseUtils.TWO_HUNDRED, BaseUtils.SIXTY, verifyImg);
    log.info("RandomValidateCode randomText:{} ", randomText);
    this.stringRedisTemplateOne.opsForValue().set(BaseUtils.KEY_IMAGE + phone, randomText, BaseUtils.CODE_TIME, BaseUtils.TIME_UNIT);
    return randomText;
}

4:控制层

@PostMapping("/getCheckCode")
public void getCheckCode(HttpServletResponse response, HttpServletRequest request, @RequestParam(value = "phone") String phone) {
    try {
        BufferedImage verifyImg = new BufferedImage(BaseUtils.TWO_HUNDRED, BaseUtils.SIXTY, BufferedImage.TYPE_INT_RGB);
        request.getSession().setAttribute("verifyCode", userService.getCheckCode(phone, verifyImg));
        response.setContentType("image/png");//必须设置响应内容类型为图片,否则前台不识别
        OutputStream os = response.getOutputStream(); //获取文件输出流
        ImageIO.write(verifyImg, "png", os);//输出图片流
        os.flush();
        os.close();//关闭流
    } catch (IOException e) {

    }
}

5:页面效果


http://www.kler.cn/a/18225.html

相关文章:

  • 以色列支付龙头遭DDoS攻击,各地超市加油站等POS机瘫痪
  • FreeRTOS学习13——任务相关API函数
  • RoseTTAFold MSA_emb类解读
  • 2024开发者浏览器必备扩展,不允许还有人不知道~
  • 【Qt-ROS开发】使用 Qt Creator 构建和编译含 ROS 库的 Qt 项目
  • 【go从零单排】Random Numbers、Number Parsing
  • OmniVerse + ChatGPT = 智能3D建模
  • 416. 分割等和子集
  • JavaWeb综合案例-Servlet优化
  • Selenium:三种等待方式
  • 【C++学习】文件操作
  • c++ cuda加速学习笔记
  • cookie和session的简单介绍(lnh25)
  • OJ练习第93题——数青蛙
  • Docker启动多个mysql容器
  • (六)【平衡小车制作】位置式PID、直立环与速度环编程
  • CompletableFutrue异步处理
  • React 第三方插件 —— Cron 表达式生成器(qnn-react-cron)
  • Java 多线程知识
  • K8S:K8S自动化运维容器化(Docker)集群程序
  • 《python爬虫练习》之随机的User-Agent请求头
  • SOFA Weekly|开源之夏 MOSN 与 Layotto 项目简介、社区会议预告、社区本周贡献
  • java计算矩形的面积和周长的方法
  • OpenFeign详解
  • 前端基于uniapp[uniPush]实现APP消息推送(安卓、IOS)
  • 为什么选择云计算