后端生成随机验证码

该博客内容展示了如何使用Java实现生成随机验证码的功能,包括创建BufferedImage对象、绘制随机文字、添加干扰线和噪点,并将验证码保存到Redis中。同时,通过Graphics2D进行文字旋转和颜色随机化,增加了验证码的复杂性和安全性。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

    /**
     *  获取随机 验证码
     * @param response
     * @param request
     */
    @GetMapping("/getCode")
    public void getVerificationCode(HttpServletResponse response, HttpServletRequest request) {
        try {
            int width = 200;
            int height = 69;
            BufferedImage verifyImg = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
            String randomText = AuthCodeUtils.drawRandomText(width, height, verifyImg);
            ValueOperations<String, String> ops = redisTemplate.opsForValue();
            ops.set("AuthCode", randomText);

            response.setContentType("image/png");               //响应类型
            OutputStream os = response.getOutputStream();       //获取文件输出流
            ImageIO.write(verifyImg, "png", os);    //输出图片流

            os.flush();
            os.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

封装工具类

public class AuthCodeUtils {
    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.BOLD, 40));

        //数字和字母组合
        String baseNumLetter ="123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNPQRSTUVWXYZ";
        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 < 6; i++) {
            // 设置随机颜色
            graphics.setColor(getRandomColor());
            // 随机画线
            graphics.drawLine(random.nextInt(width), random.nextInt(height),
                    random.nextInt(width), random.nextInt(height));
        }

        //添加噪点
        for (int i = 0; i < 30; i++) {
            int x1 = random.nextInt(width);
            int y1 = random.nextInt(height);
            graphics.setColor(getRandomColor());
            graphics.fillRect(x1, y1, 2, 2);
        }
        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;
    }
}
### Python 实现后端生成验证码图片 为了实现在后端使用Python生成验证码图片的功能,可以创建几个辅助函数来处理不同部分的任务。这些任务包括生成随机验证码字符串、基于该字符串绘制图像以及保存最终的图像文件。 #### 生成随机验证码字符串 首先定义`generate_verification_code(length)` 函数用于生成指定长度的随机字母数字组合作为验证码: ```python import random import string def generate_verification_code(length=4): characters = string.ascii_letters + string.digits return ''.join(random.choice(characters) for i in range(length)) ``` 此段代利用了Python标准库中的`random`模块和`string`模块来构建一个由大小写字母加数字组成的字符池,并从中随机选取一定数量的字符组成验证码[^1]。 #### 创建带有文字的验证码图片 接着编写 `generate_verification_image(code)` 方法用来根据给定的验证码文本制作一张包含相应内容的PNG格式图片对象: ```python from PIL import Image, ImageDraw, ImageFont def generate_verification_image(code): width = 100 height = 40 im = Image.new('RGB', (width, height), color=(255, 255, 255)) draw = ImageDraw.Draw(im) font_path = "/usr/share/fonts/truetype/dejavu/DejaVuSans.ttf" try: fnt = ImageFont.truetype(font_path, size=30) except IOError: fnt = ImageFont.load_default() text_width, text_height = draw.textsize(code, font=fnt) position_x = (width - text_width) / 2 position_y = (height - text_height) / 2 draw.text((position_x, position_y), code, fill="black", font=fnt) return im ``` 这里借助Pillow库(即PIL的一个分支)来进行图形操作。这段程序会新建一幅白色背景的空白画布,在中心位置写入传入参数code所代表的文字串;如果找不到特定字体,则回退至默认字体。 #### 存储验证码图片到本地磁盘 最后一步是调用 `save_verification_image(image, filename)` 来把之前得到的Image对象存储成物理文件形式存放在服务器硬盘上供前端访问下载或展示: ```python def save_verification_image(image, filepath): image.save(filepath, 'PNG') ``` 上述过程展示了完整的流程——从无到有地制造出可供使用的验证码图片并妥善保管起来等待后续用途。整个过程中涉及到的技术要点已经按照需求进行了说明。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值