鸿蒙ArkTS自定义图形验证码组件

本文详细介绍了如何在ArkTS项目中使用Canvas和CanvasRenderingContext2D绘制图形验证码,并通过监听点击事件实现验证码的动态刷新。作者还提到使用clearRect方法作为取巧方法,以实现点击验证码图片更换验证码的功能。
摘要由CSDN通过智能技术生成

本文介绍ArkTS中利用Canvas绘制图形验证码,话不多说,直接上代码

定义组件ImageCode

import CommonUtil from '../utils/CommonUtil';

@Component
export default struct ImageCode {
  //用来配置CanvasRenderingContext2D对象的参数,包括是否开启抗锯齿,true表明开启抗锯齿。
  private settings: RenderingContextSettings = new RenderingContextSettings(true)
  //用来创建CanvasRenderingContext2D对象,通过在canvas中调用CanvasRenderingContext2D对象来绘制。
  private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
  //指定canvas要绘制的图形的宽(可使用@Prop装饰器装饰,由调用此组件的父组件传递)
  @State canvas_width: number = 100;
  //指定canvas要绘制的图形的高
  @State canvas_height: number = 40;
  //用于接收图形验证码的文本值
  @State showCode: string = ''

  build() {
    Row() {
      //在canvas中调用CanvasRenderingContext2D对象。
      Canvas(this.context)
        .width(this.canvas_width)
        .height(this.canvas_height)
        .backgroundColor('#CCC')
        .onReady(() => {
          //在这里绘制图形
          this.showCode = CommonUtil.drawImgCode(this.context,this.canvas_width,this.canvas_height)
          console.log(this.showCode)
        })
        .onClick(() => {
          this.showCode = CommonUtil.drawImgCode(this.context,this.canvas_width,this.canvas_height)
          console.log(this.showCode)
        })
    }
    .width('100%')
    .height('100%')
  }
}

上述代码使用CanvasRenderingContext2D对象进行图形绘制,具体使用参考OffscreenCanvasRenderingContext2D对象

在Canvas的属性方法onReady()中进行绘制操作,具体的图形绘制代码封装为了一个工具类方法代码在下边。

绘制图形验证码

//随机生成文本内容时使用的值
  sCode: string = "1,2,3,4,5,6,7,8,9,0";
  aCode: string[] = this.sCode.split(",");
  aLength: number = this.aCode.length; //获取到数组的长度

  /**
   * 绘制图形验证码
   * @param context
   * @param canvas_width
   * @param canvas_height
   * @returns
   */
  drawImgCode(context: CanvasRenderingContext2D, canvas_width: number = 100, canvas_height: number = 40): string {
    //用于保存验证码
    let showCode: string = ''
    //清楚当前画布内容,用作刷新画布
    context.clearRect(0, 0, canvas_width, canvas_height)

    for (let i = 0; i < 4; i++) { //这里的for循环可以控制验证码位数
      const j = Math.floor(Math.random() * this.aLength); //获取到随机的索引值
      const deg = Math.random() - 0.5; //产生一个随机弧度
      const txt = this.aCode[j]; //得到随机的一个内容
      showCode += txt.toLowerCase(); //转小写
      const x = 10 + i * 20; //文字在canvas上的x坐标
      const y = canvas_height / 2 + Math.random() * 8; //文字在canvas上的y坐标
      context.font = "20vp sans-serif";
      context.translate(x, y);
      context.rotate(deg);
      context.fillStyle = this.getColor();
      context.fillText(txt, 0, 0);
      context.rotate(-deg);
      context.translate(-x, -y);
    }
    for (let i = 0; i <= 5; i++) { //验证码上显示线条
      context.strokeStyle = this.getColor();
      context.beginPath();
      context.moveTo(Math.random() * canvas_width, Math.random() * canvas_height);
      context.lineTo(Math.random() * canvas_width, Math.random() * canvas_height);
      context.stroke();
    }
    for (let i = 0; i <= 20; i++) { //验证码上的小点
      context.strokeStyle = this.getColor(); //随机生成
      context.beginPath();
      const x = Math.random() * canvas_width;
      const y = Math.random() * canvas_height;
      context.moveTo(x, y);
      context.lineTo(x + 1, y + 1);
      context.stroke();
    }
    return showCode
  }

  /**
   * 获取随机颜色 rgb
   * @returns
   */
  getColor() {
    const r = Math.floor(Math.random() * 256);
    const g = Math.floor(Math.random() * 256);
    const b = Math.floor(Math.random() * 256);
    return "rgb(" + r + "," + g + "," + b + ")";
  }

调用图形验证码组件

import ImageCode from './ImageCode';

@Entry
@Component
struct Index {
  build() {
    Row() {
      TextInput({placeholder:'请输入验证码'})
        .layoutWeight(1)
      ImageCode()
        .width(100)
        .height(40)
    }
    .height('100%')
    .width('100%')
  }
}

效果图如下:

补充说明

由于我想达到点击验证码图片实现验证码更换的效果,但官方似乎未提供相应的api,这里我使用了算是取巧的方法,在开始绘制前调用了CanvasRenderingContext2D的clearRect方法,并传入这个要即将要绘制Canvas图形的宽高,用于清除当前整张画布的内容,为Canvas组件添加点击事件,里面调用drawImgCode方法,达到刷新验证码的效果。

 //清除当前画布内容,用作刷新画布
 context.clearRect(0, 0, canvas_width, canvas_height)

  • 7
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值