微信小程序用canvas實現(xiàn)電子簽名
更新時間:2022年07月08日 11:17:15 作者:拈花醉。
這篇文章主要為大家詳細(xì)介紹了微信小程序用canvas實現(xiàn)電子簽名,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下
本文實例為大家分享了微信小程序用canvas實現(xiàn)電子簽名的具體代碼,供大家參考,具體內(nèi)容如下
<view class="sign-contain">
?? ?<view class="signName">
?? ??? ?<canvas id="canvas" canvas-id="canvas" class="{{ sysType === 'iOS' ? 'canvas' : 'canvas bg000'}}" disable-scroll="true" bindtouchstart="canvasStart" bindtouchmove="canvasMove" bindtouchend="canvasEnd" touchcancel="canvasEnd" binderror="canvasIdErrorCallback"></canvas>
?? ?</view>
?? ?<view class="btn-wrap">
?? ??? ?<button ?catchtap="cleardraw">清除簽名</button>
?? ??? ?<button ?catchtap="uploadImg">上傳簽名</button>
?? ?</view>
</view>var context = null;// 使用 wx.createContext 獲取繪圖上下文 context
var isButtonDown = false;//是否在繪制中
var arrx = [];//動作橫坐標(biāo)
var arry = [];//動作縱坐標(biāo)
var arrz = [];//總做狀態(tài),標(biāo)識按下到抬起的一個組合
var canvasw = 0;//畫布寬度
var canvash = 0;//畫布高度
Page({
? data: {
? ? canvasw: '',
? ? canvash: '',
? ? imgUrl: '',
? ? info: {},
? ? signBase64: '',
? ? sysType: '' // 判斷機(jī)型
? },
? onLoad: function (options) {
? ? let that = this
? ? let res = wx.getSystemInfoSync()
? ? const system = res.system.split(' ')
? ? that.setData({
? ? ? sysType: system[0],
? ? })
? ? let params = JSON.parse(options.params)
? ? that.setData({
? ? ? info: params,
? ? })
? ? that.startCanvas();
? ? that.initCanvas()
? },
? /**
? * 以下 - 手寫簽名 / 上傳簽名
? */
? startCanvas() {//畫布初始化執(zhí)行
? ? var that = this;
? ? //獲取系統(tǒng)信息
? ? wx.getSystemInfo({
? ? ? success: function (res) {
? ? ? ? canvasw = res.windowWidth;
? ? ? ? canvash = res.windowHeight;
? ? ? ? that.setData({ canvasw: canvasw });
? ? ? ? that.setData({ canvash: canvash });
? ? ? }
? ? });
? ? this.initCanvas();
? ? this.cleardraw();
? },
? //初始化函數(shù)
? initCanvas() {
? ? context = wx.createCanvasContext('canvas');
? ? context.beginPath()
? ? if(this.data.sysType === 'iOS') {
? ? ? context.fillStyle = 'rgba(255, 255, 255, 1)';
? ? ? context.setStrokeStyle('#444');
? ? } else {
? ? ? context.fillStyle = 'rgba(0, 0, 0, 1)';
? ? ? context.setStrokeStyle('#aaa');
? ? }
? ? context.setLineWidth(4);
? ? context.setLineCap('round');
? ? context.setLineJoin('round');
? },
? canvasStart(event) {
? ? isButtonDown = true;
? ? arrz.push(0);
? ? arrx.push(event.changedTouches[0].x);
? ? arry.push(event.changedTouches[0].y);
? },
? canvasMove(event) {
? ? if (isButtonDown) {
? ? ? arrz.push(1);
? ? ? arrx.push(event.changedTouches[0].x);
? ? ? arry.push(event.changedTouches[0].y);
? ? }
? ? for (var i = 0; i < arrx.length; i++) {
? ? ? if (arrz[i] == 0) {
? ? ? ? context.moveTo(arrx[i], arry[i])
? ? ? } else {
? ? ? ? context.lineTo(arrx[i], arry[i])
? ? ? }
? ? }
? ? context.clearRect(0, 0, canvasw, canvash);
? ? if(this.data.sysType === 'iOS') {
? ? ? context.fillStyle = 'rgba(255, 255, 255, 1)';
? ? ? context.setStrokeStyle('#444');
? ? } else {
? ? ? context.fillStyle = 'rgba(0, 0, 0, 1)';
? ? ? context.setStrokeStyle('#aaa');
? ? }
? ? context.setLineWidth(3);
? ? context.setLineCap('round');
? ? context.setLineJoin('round');
? ? context.stroke();
? ? context.draw(false);
? },
? canvasEnd(event) {
? ? isButtonDown = false;
? },
? //清除畫布
? cleardraw() {
? ? arrx = [];
? ? arry = [];
? ? arrz = [];
? ? context.clearRect(0, 0, canvasw, canvash);
? ? if(this.data.sysType === 'iOS') {
? ? ? context.fillStyle = 'rgba(255, 255, 255, 1)';
? ? ? context.setStrokeStyle('#444');
? ? } else {
? ? ? context.fillStyle = 'rgba(0, 0, 0, 1)';
? ? ? context.setStrokeStyle('#aaa');
? ? }
? ? context.draw(true);
? },
? uploadImg() {
? ? var that = this
? ? //生成圖片
? ? // context.draw(true,()=> {
? ? setTimeout(() => {
? ? ? wx.canvasToTempFilePath({
? ? ? ? canvasId: 'canvas',
? ? ? ? //設(shè)置輸出圖片的寬高
? ? ? ? fileType: 'jpg',
? ? ? ? quality: 1,
? ? ? ? success: function (res) {
? ? ? ? ? // canvas圖片地址 res.tempFilePath
? ? ? ? ? let imgBase64 = wx.getFileSystemManager().readFileSync(res.tempFilePath, 'base64')
? ? ? ? ? that.setData({
? ? ? ? ? ? imgUrl: res.tempFilePath,
? ? ? ? ? ? signBase64: imgBase64
? ? ? ? ? })
? ? ? ? ? that.submitSign()
? ? ? ? ? console.log('imgBase64', 'data:image/jpeg;base64,' + imgBase64)
? ? ? ? ? // wx.saveImageToPhotosAlbum({
? ? ? ? ? // ? filePath: res.tempFilePath,
? ? ? ? ? // ? success(res4) {?
? ? ? ? ? // ? ? console.log(res,'保存res4');
? ? ? ? ? // ? ? wx.showToast( {
? ? ? ? ? // ? ? ? title: '已成功保存到相冊',
? ? ? ? ? // ? ? ? duration: 2000
? ? ? ? ? // ? ? } );
? ? ? ? ? // ? }
? ? ? ? ? // })
? ? ? ? },
? ? ? ? fail: function () {
? ? ? ? ? wx.showModal({
? ? ? ? ? ? title: '提示',
? ? ? ? ? ? content: 'canvas生成圖片失敗。微信當(dāng)前版本不支持,請更新到最新版本!',
? ? ? ? ? ? showCancel: false
? ? ? ? ? });
? ? ? ? },
? ? ? ? complete: function () { }
? ? ? }, 5000)
? ? })
? ? // })
? },
? // 提交簽名
? submitSign() {
? ? let that = this
? ? wx.showLoading({
? ? ? title: '正在提交...',
? ? ? mask: true
? ? })
? ? let type = '1'
? ? if(that.data.sysType === 'iOS') {
? ? ? type = '0'
? ? } else {
? ? ? type = '1'
? ? }
? ? wx.$getWxLoginCode(resp => {
? ? ? const params = {
? ? ? ? qmbase64: that.data.signBase64,
? ? ??
? ? ? }
? ? ? console.info("入?yún)?, params)
? ? ? wx.kservice.yyyurl(params, res => {
? ? ? ? wx.hideLoading()
? ? ? ? if (res.statusCode === '200') {
? ? ? ? ? wx.showModal({
? ? ? ? ? ? title: '提示',
? ? ? ? ? ? content: res.message,
? ? ? ? ? ? showCancel: false,
? ? ? ? ? ? confirmText: '返回首頁',
? ? ? ? ? ? success(res) {
? ? ? ? ? ? ? if (res.confirm) {
? ? ? ? ? ? ? ? wx.reLaunch({
? ? ? ? ? ? ? ? ? url: '/pages/index/index'
? ? ? ? ? ? ? ? })
? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? ? })
? ? ? ? } else {
? ? ? ? ? wx.showModal({
? ? ? ? ? ? title: '提示',
? ? ? ? ? ? content: res.message,
? ? ? ? ? ? showCancel: true,
? ? ? ? ? ? cancelText: '返回首頁',
? ? ? ? ? ? confirmText: '重新提交',
? ? ? ? ? ? success: (result) => {
? ? ? ? ? ? ? if (result.cancel) {
? ? ? ? ? ? ? ? // 取消停留
? ? ? ? ? ? ? ? wx.reLaunch({
? ? ? ? ? ? ? ? ? url: '/pages/index/index'
? ? ? ? ? ? ? ? })
? ? ? ? ? ? ? } else if (result.confirm) {
? ? ? ? ? ? ? ? //重新提交
? ? ? ? ? ? ? ? that.submitSign()
? ? ? ? ? ? ? }
? ? ? ? ? ? },
? ? ? ? ? });
? ? ? ? }
? ? ? }, {}, true, true)
? ? })
? },
? /**
? * 生命周期函數(shù)--監(jiān)聽頁面卸載
? */
? onUnload: function () {
? },
? /**
? ?* 頁面相關(guān)事件處理函數(shù)--監(jiān)聽用戶下拉動作
? ?*/
? onPullDownRefresh: function () {
? },
? /**
? ?* 頁面上拉觸底事件的處理函數(shù)
? ?*/
? onReachBottom: function () {
? },
? /**
? ?* 用戶點(diǎn)擊右上角分享
? ?*/
? onShareAppMessage: function () {
? }
}).sign-contain {
? display: flex;
? flex-direction:column;
? width: 100%;
? height: 100%;
}
.signName {
? flex: 1;
}
.canvas {
? width: 100%;
? height: 100%;
}
.bg000{
? background-color: #000;
}
.btn-wrap{
? display: block;
? width:100%;
? height: 100rpx;
? margin: 20rpx 0;
? position: relative;
}
.btn-wrap button{
? width: 43%;
}以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
JavaScript中統(tǒng)計Textarea字?jǐn)?shù)并提示還能輸入的字符
是在文本框中輸入文字的時候,會自動統(tǒng)計輸入的字符,并顯示用戶還能輸入的字符,其實js也可以實現(xiàn),下面就以示例的方式為大家講解下2014-06-06
javascript RadioButtonList獲取選中值
js獲取RadioButtonList值的代碼。2009-04-04
原生js基于canvas實現(xiàn)一個簡單的前端截圖工具代碼實例
這篇文章主要介紹了原生js基于canvas實現(xiàn)一個簡單的前端截圖工具代碼實例,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友可以參考下2019-09-09
ES6初步了解原始數(shù)據(jù)類型Symbol的用法
ES6中為我們新增了一個原始數(shù)據(jù)類型Symbol,大家是否知道Symbol可以作用在哪?用來定義對象的私有變量如何寫入對象,本文對ES6 Symbol的用法介紹的非常詳細(xì),需要的朋友參考下吧2023-10-10
JavaScript和TypeScript中的void的具體使用
這篇文章主要介紹了JavaScript和TypeScript中的void的具體使用,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2019-09-09

