利用canvas生成图片验证码
程序员文章站
2022-01-02 10:22:41
...
创建canvas
<canvas onClick={this.createCode} width="80" height='39' ref={el => this.canvas = el} id="myCanvas" />
创建一个生成验证码的函数
state = {
code: '' //验证码
}
//创建验证码
createCode = () => {
//getContext()方法返回一个用于在画布上绘图的环境
const ctx = this.canvas.getContext('2d')//获取元素创造环境
const chars = [1, 2, 3, 4, 5, 6, 7, 8, 9, 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'n', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'J', 'K', 'L', 'M', 'N', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z']
let code = ''
ctx.clearRect(0, 0, 80, 39)
for (let i = 0; i < 4; i++) {
const char = chars[randomNum(0, 57)]//生成四位随机数
code += char
ctx.font = randomNum(20, 25) + 'px SimHei' //设置字体随机大小
ctx.fillStyle = '#D3D7F7'//设置颜色
ctx.textBaseline = 'middle'//设置文字对齐方式
ctx.shadowOffsetX = randomNum(-3, 3)//设置阴影左右侧偏移量
ctx.shadowOffsetY = randomNum(-3, 3)//设置阴影上下偏移量
ctx.shadowBlur = randomNum(-3, 3)//设置阴影的模糊值
ctx.shadowColor = 'rgba(0, 0, 0, 0.3)'//设置阴影颜色
let x = 80 / 5 * (i + 1)
let y = 39 / 2
let deg = randomNum(-25, 25)
/**设置旋转角度和坐标原点**/
ctx.translate(x, y)//设置偏移量
ctx.rotate(deg * Math.PI / 180)//设置旋转
ctx.fillText(char, 0, 0)//将验证码写入画布
/**恢复旋转角度和坐标原点**/
ctx.rotate(-deg * Math.PI / 180)
ctx.translate(-x, -y)
}
this.setState({
code
})
}
componentDidMount() {
this.createCode()
}