uniapp使用画布生成验证码

2023-12-28 12:34:44

html:

<canvas
   style="width: 200rpx;height: 60rpx;"
   @click="refreshCaptcha"
   id="canvas"
   canvas-id="canvas" >
</canvas>

js: 画布初始化显示延迟一下。

// 引入封装的验证码文件
import {createCode, drawCanvas} from '@/util/verifyCode.js';

 onShow(){
// 画布上下文
    setTimeout(()=>{
      this.init();
    }, 100)
  },
    methods: {
	    init(){
	      this.ctx = uni.createCanvasContext('canvas', this);
	      this.code = createCode()
	      // canvas生成验证码
	      drawCanvas(this.ctx, this.code, 134, 55);
	    },
	      refreshCaptcha(){
		      this.init();
		    },
    }

下面是封装的 js文件

/** 获取四位随机码
 * @return  string
 */
export function createCode(){
    var str = '1234567890qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM'
    let codeText = ''
    for(let i = 1; i <= 4; i++){
        let index = Math.floor(Math.random() * 62 )
        let code = str.charAt(index)
        codeText += code
    }
    return codeText;
}

/**
 *  @desc   随机颜色
 *  @return     string
 */
function randomColor() {
    var colorValue = "0,1,2,3,4,5,6,7,8,9,a,b,c,d,e,f";
    var colorArray = colorValue.split(",");
    var color = "#";
    for (var i = 0; i < 6; i++) {
        color += colorArray[Math.floor(Math.random() * 16)];
    }
    return color;
}
/**
 *  @desc   干扰线是就是在画布上在随机的位置上生成随机长度的线
 *  @return     string
 */
function randomLine(ctx, canWidth, canHeight){
    for(let i =0; i< 8; i++){   //绘制条线
        ctx.beginPath();
        ctx.moveTo(Math.floor(Math.random() * canWidth), Math.floor(Math.random() * canHeight));    //绘制线的初始位置
        ctx.lineTo(Math.floor(Math.random() * canWidth), Math.floor(Math.random() * canHeight));    //绘制线的末位置
        ctx.setStrokeStyle(randomColor());  //设置线的颜色
        ctx.stroke();   //绘制
    }
}
/**
 *  @desc   随机字符位置。
 *  @return string
 */
function randomCode(ctx, str){
    for (let i = 0; i < 4; i++) {
        ctx.setFontSize(28 + Math.floor(Math.random() * 4 - 2));
        ctx.fillText(str[i], 20 * i + 10, 24);
        ctx.setFillStyle(randomColor());
    }
}

/**
 *  @desc   画线和字符
 *  @return string
 */
export function drawCanvas(ctx, str, canWidth, canHeight){
    randomCode(ctx, str)
    randomLine(ctx, canWidth, canHeight)
    ctx.draw()
}

文章来源:https://blog.csdn.net/return_js/article/details/135265171
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。