文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

微信小程序怎么实现手写签名

2023-06-29 06:02

关注

本文小编为大家详细介绍“微信小程序怎么实现手写签名”,内容详细,步骤清晰,细节处理妥当,希望这篇“微信小程序怎么实现手写签名”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。

在微信小程序上实现手写签名,获取canvascontext新版本和旧版本有点坑,新版本在获取canvas后如果页面有滑动,则签名坐标出现异常(在微信开发者工具上会出现2022-2-17),但是在真机上即使滑动也不会出现异常,为了防止出现问题,暂时使用旧版本获取canvascontext

1.效果图

微信小程序怎么实现手写签名

微信小程序怎么实现手写签名

2.相关代码

canvas代码

新版2d canvas

<canvas  id="canvas"  class="canvas"  canvas-id="canvas"  type="2d"  :disable-scroll="true"  @touchstart="handleTouchStart"  @touchmove="handleTouchMove"  @touchend="handleTouchEnd"  @touchcancel="handleTouchCancel"></canvas>

旧版canvas

<canvas  class="canvas"  canvas-id="canvas"  :disable-scroll="true"  @touchstart="handleTouchStart"  @touchmove="handleTouchMove"  @touchend="handleTouchEnd"  @touchcancel="handleTouchCancel"></canvas>

js相关

获取新版2d canvas对象

const query = uni.createSelectorQuery().in(this);query.select('.canvas').node(res => {  const {      _width,      _height  } = res.node;      this.canvas = res.node;  this.canvasWidth = _width;  this.canvasHeight = _height;    this.canvasContext= this.canvas.getContext('2d');      const ratio = wx.getSystemInfoSync().pixelRatio;  this.canvas.width = this.canvasWidth * ratio;  this.canvas.height = this.canvasHeight * ratio;  this.canvasContext.scale(ratio, ratio);      this.canvasContext.strokeStyle = '#2A2A2A';    this.canvasContext.lineWidth = 4;    this.canvasContext.lineCap = 'round';}).exec()

缩放设置canvas画布大小,防止笔迹错位,这点和页面滑动没有关系,不设置也会导致坐标错位

const ratio = wx.getSystemInfoSync().pixelRatio;this.canvas.width = this.canvasWidth * ratio;this.canvas.height = this.canvasHeight * ratio;this.canvasContext.scale(ratio, ratio);

旧版本获取canvas

this.canvasContext = uni.createCanvasContext('canvas', this);this.canvasContext.setStrokeStyle('#2A2A2A');this.canvasContext.setLineWidth(4);this.canvasContext.setLineCap('round');

签名js方法,新版本和旧版本只有一个draw的区别,新版本不需要使用draw方法

handleTouchStart(e) {  this.drawStartX = e.changedTouches[0].x;  this.drawStartY = e.changedTouches[0].y;    this.canvasContext.beginPath();},handleTouchMove(e) {        const tempX = e.changedTouches[0].x;    const tempY = e.changedTouches[0].y;        this.canvasContext.moveTo(this.drawStartX, this.drawStartY);    this.canvasContext.lineTo(tempX, tempY);    this.canvasContext.stroke();        this.canvasContext.draw(true);        this.drawStartX = tempX;    this.drawStartY = tempY;},handleTouchEnd(e) {    this.canvasContext.save();},handleTouchCancel(e) {    this.canvasContext.save();},clearCanvas() {    this.canvasContext.clearRect(0, 0, this.canvasWidth, this.canvasHeight);},

canvas生成本地图片(我这里封装了组件,需要传入this防止this指向异常)

generateSignImage() {    return new Promise((resolve, reject) => {        uni.canvasToTempFilePath({          x: 0,          y: 0,          // canvas: this.canvas, // 新版          canvasId: 'canvas', // 旧版使用id          width: this.canvasWidth,          height: this.canvasHeight,          destWidth: this.canvasWidth,          destHeight: this.canvasHeight,          fileType: 'png',          quality: 1,          success: res => {              resolve(res.tempFilePath)          },          fail: err => {              reject(err);          }        }, this)    })},

新版本的canvas主要是canvas wxml节点和canvas context中做了区分,旧版则只有一个canvas context就可以做全部的操作,在生成图片时,新版本是传入wxml对象,旧版本则是传入唯一canvasId,新版本canvas取消了draw方法

读到这里,这篇“微信小程序怎么实现手写签名”文章已经介绍完毕,想要掌握这篇文章的知识点还需要大家自己动手实践使用过才能领会,如果想了解更多相关内容的文章,欢迎关注编程网行业资讯频道。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯