微信小程序用canvas實(shí)現(xiàn)電子簽名
本文實(shí)例為大家分享了微信小程序用canvas實(shí)現(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 = [];//動(dòng)作橫坐標(biāo)
var arry = [];//動(dòng)作縱坐標(biāo)
var arrz = [];//總做狀態(tài),標(biāo)識(shí)按下到抬起的一個(gè)組合
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: '已成功保存到相冊(cè)',
? ? ? ? ? // ? ? ? duration: 2000
? ? ? ? ? // ? ? } );
? ? ? ? ? // ? }
? ? ? ? ? // })
? ? ? ? },
? ? ? ? fail: function () {
? ? ? ? ? wx.showModal({
? ? ? ? ? ? title: '提示',
? ? ? ? ? ? content: 'canvas生成圖片失敗。微信當(dāng)前版本不支持,請(qǐ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)聽用戶下拉動(dòng)作
? ?*/
? 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)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
JS遍歷JSON數(shù)組及獲取JSON數(shù)組長度操作示例【測(cè)試可用】
這篇文章主要介紹了JS遍歷JSON數(shù)組及獲取JSON數(shù)組長度操作,涉及javascript簡單json數(shù)組遍歷與運(yùn)算相關(guān)操作技巧,需要的朋友可以參考下2018-12-12
JavaScript?數(shù)據(jù)結(jié)構(gòu)之集合創(chuàng)建(2)
這篇文章主要介紹了JavaScript?數(shù)據(jù)結(jié)構(gòu)之集合創(chuàng)建,上一篇我們介紹了什么是集合,并且手動(dòng)實(shí)現(xiàn)了一個(gè)集合的類,本篇基于上篇內(nèi)容繼續(xù)深入介紹需要的小伙伴可以參考一下2022-04-04
JavaScript計(jì)劃任務(wù)后臺(tái)運(yùn)行的方法
這篇文章主要介紹了JavaScript計(jì)劃任務(wù)后臺(tái)運(yùn)行的方法,需要的朋友可以參考下2015-12-12
select、radio表單回顯功能實(shí)現(xiàn)避免使用jquery載入賦值
select、radio表單回顯避免使用jquery載入賦值,最好的做法是:在jsp頁面進(jìn)行邏輯判斷,具體實(shí)現(xiàn)如下,感興趣的朋友可以參考下哈,希望對(duì)大家有所幫助2013-06-06
antd項(xiàng)目實(shí)現(xiàn)彩蛋效果的詳細(xì)代碼
這篇文章主要介紹了antd項(xiàng)目如何實(shí)現(xiàn)彩蛋效果,首先在components目錄下創(chuàng)建Transform目錄,包括index.css、index.js,index.js是主要的邏輯代碼,下面對(duì)代碼進(jìn)行分析,需要的朋友可以參考下2022-09-09
用canvas 實(shí)現(xiàn)個(gè)圖片三角化(LOW POLY)效果
這篇文章主要介紹了用canvas 實(shí)現(xiàn)個(gè)圖片三角化(LOW POLY)效果 的相關(guān)資料,需要的朋友可以參考下2016-02-02

