Canvas系列-随机字符验证码

前言

 前面的文章写过使用Canvas来模拟实现一个滑动验证功能,接下来几篇文章我计划写一个验证码的系列,会谈论如何实现各种验验证码,如随机字符串验证码、加减算术验证码、文字点选验证码等。

 之前的文章有写过Canvas系列小功能文章,有兴趣的可以瞧上一瞧~
Canvas系列-下雪特效
Canvas系列-签字功能
Canvas系列-滑动验证

实现随机字符串验证功能

 效果图如下,源码链接

canvas随机字符串验证演示.gif

基本思路

1、定义随机字符串,这里我们使用数字和大小写字母【0-9a-zA-Z】

2、根据传入的length参数随机生成字符串,并保存下来用于验证

3、在canvas画布中绘制随机生成的字符,然后绘制干扰线条和圆点

4、根据规则验证输入的字符串和生成的字符串是否相等

具体实现代码

// HTML
<div id="app" v-cloak>
  <div class="verify-character" :style="{width: `${width}px`}">
    <canvas class="canvas_character"
      ref="canvas_character"
      :width="width"
      :height="height"
      @click="reset">
    </canvas>
    <div class="verfify-input">
      <input class="input" type="text" v-model="inputCharacter">
      <button @click="reset">重新加载</button>
    </div>
  </div>
  <button :class="['confirm', state]" @click="verify">
    {{ {active:'验证', success:'验证通过', fail:'验证失败'}[state] }}
  </button>
</div>
// JS
const App = {
  props: {
    width: {
      type: Number,
      default: 320
    },
    height: {
      type: Number,
      default: 60
    },
    length: {
      type: Number,
      default: 4
    },
    accuracy: { // 精度控制 是否判断大小写 0区分大小写
      type: Number,
      default: 0
    }
  },
  data() {
    return {
      codeCharacter: '', // 生成字符
      inputCharacter: '', // 验证字符
      state: 'active', // 验证 成功 失败
    }
  },
  mounted () {
    this.init()
  },
  methods: {
    init () {
      this.$nextTick(() => {
        this.ctx = this.$refs['canvas_character'].getContext('2d');

        this.drawCharater();
      })
    },
    // 绘制图形码
    drawCharater () {
      // this.ctx.textBaseline = 'bottom';
      this.ctx.fillStyle = this.randomColor(180, 240);
      this.ctx.fillRect(0, 0, this.width, this.height);

      const strLen = 'ABCDEFGHIJKLMNPQRSTUVWXYZ123456789abcdefghijklmnpqrstuvwxyz';

      for (let i = 0; i < this.length; i++) {
        let txt = strLen[this.randomNum(0, strLen.length)];
        
        // 随机生成字体颜色
        this.ctx.fillStyle = this.randomColor(50, 160);
        // 随机生成字体大小(0.5 - 0.75)高的范围
        this.ctx.font = this.randomNum(this.height * 2 / 4, this.height * 3 / 4) + 'px SimHei';
        // 字体对齐位置
        this.ctx.textBaseline = 'top';

        let x = 20 + i * (this.width / this.length);
        let y = this.randomNum(5, this.height / 4);
        let deg = this.randomNum(-45, 45);
        this.ctx.translate(x, y);
        this.ctx.rotate(deg * Math.PI / 180);
        this.ctx.fillText(txt, 0, 0);
        // // 恢复坐标原点和旋转角度
        this.ctx.rotate(-deg * Math.PI / 180);
        this.ctx.translate(-x, -y);

        // 保存生成的字符串
        this.codeCharacter += txt;
      }
      // 绘制干扰线
      for (let j = 0; j < this.length; j++) {
        this.ctx.strokeStyle = this.randomColor(40, 180)
        this.ctx.beginPath()
        this.ctx.moveTo(this.randomNum(0, this.width), this.randomNum(0, this.height))
        this.ctx.lineTo(this.randomNum(0, this.width), this.randomNum(0, this.height))
        this.ctx.stroke()
      }
      // 绘制干扰点
      for (let k = 0; k < 30; k++) {
        this.ctx.fillStyle = this.randomColor(0, 255)
        this.ctx.beginPath()
        this.ctx.arc(this.randomNum(0, this.width), this.randomNum(0, this.height), 1, 0, 2 * Math.PI)
        this.ctx.fill()
      }
    },
    randomColor (min, max) {
      let r = this.randomNum(min, max)
      let g = this.randomNum(min, max)
      let b = this.randomNum(min, max)
      return 'rgb(' + r + ',' + g + ',' + b + ')'
    },
    randomNum (min, max) {
      return Math.floor(Math.random() * (max - min) + min)
    },
    reset () {
      this.codeCharacter = '';
      this.inputCharacter = '';
      this.verifyResult = false;
      this.state = 'active';
      this.drawCharater();
    },
    verify () {
      // console.log('输入>>>', this.inputCharacter)
      // console.log('生成>>>', this.codeCharacter)
      // console.log(this.inputCharacter === this.codeCharacter)
      if (!this.inputCharacter || !this.codeCharacter) {
        return
      }

      let result = false;
      if (this.accuracy === 0) {
        result = this.inputCharacter.toUpperCase() === this.codeCharacter.toUpperCase()
      } else {
        result = this.inputCharacter === this.codeCharacter;
      }
      this.state = result ? 'success' : 'fail';
      
      this.$emit('verify', result); // 暴露给父组件使用
    }
  }
}
Vue.createApp(App).mount('#app');

解析:先获取画布和画笔,然后使用fillRect()方法渲染随机颜色背景,接下来最重要的部分就是随机生成字符串并使用fillText()方法绘制随机字符,然后使用stroke()方法绘制线条,使用fill()方法绘制随机分布的小圆点,最后根据需求验证即可。

结尾

上面就是【随机字符串验证码】的实现原理,代码是使用vue编写的小demo,可能存在一些兼容性问题,也没有封装成组件,但是具有一些参考意义,用于生产可以自己去封装成组件使用,完整的代码在我的GitHub仓库


本文是笔者总结编撰,如有偏颇,欢迎留言指正,若您觉得本文对你有用,不妨点个赞~

关于作者:
GitHub
简书
掘金

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,386评论 6 479
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,939评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,851评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,953评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,971评论 5 369
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,784评论 1 283
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,126评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,765评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,148评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,744评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,858评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,479评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,080评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,053评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,278评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,245评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,590评论 2 343

推荐阅读更多精彩内容