picyan.vue
2.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<template>
<view class="canvas-img-code">
<canvas :style="{width:width+'px',height:height+'px'}" canvas-id="imgcanvas" @error="canvasIdErrorCallback" @click="refresh"></canvas>
</view>
</template>
<script>
export default {
name: "picyan",
//属性
props: {
picname: {
type: String,//属性类型
value: ""
},
},
data(){
return {
width:120,height:35
}
},
mounted:function(){
var _self=this;
_self.init();
},
methods: {
refresh(){
this.init()
},
init:function(){
console.log('start');
var context = uni.createCanvasContext('imgcanvas',this),w=this.width,h=this.height;
context.setFillStyle("white");
context.setLineWidth(5);
context.fillRect(0, 0, w, h);
// var pool=["A","B","C","D","E","F","G","H","I","J","K","L","I","M","N","O","P","Q","R","S","T","U","V","W","S","Y","Z","1","2","3","4","5","6","7","8","9","0"],str='';
var pool=["1","2","3","4","5","6","7","8","9","0"],str='';
for(var i=0;i<4;i++){
var c=pool[this.rn(0,pool.length-1)];//随机的字
var deg=this.rn(-30,30);//字体的旋转角度
context.setFontSize(18);
context.setTextBaseline("top");
context.setFillStyle(this.rc(80,150));
context.save();
context.translate(30*i+15,parseInt(h/1.5));
context.rotate(deg*Math.PI/180);
context.fillText(c,-15+5,-15);
context.restore();
str+=c;
this.$emit("picname",str)
}
uni.setStorage({
key:'imgcode',
data:str,
});
for(var i=0;i<40;i++){
context.beginPath();
context.arc(this.rn(0,w),this.rn(0,h),1,0,2*Math.PI);
context.closePath();
context.setFillStyle(this.rc(150,200));
context.fill();
}
context.draw(); console.log('end');
},
rc:function(min,max){
var r=this.rn(min,max);
var g=this.rn(min,max);
var b=this.rn(min,max);
return "rgb("+r+","+g+","+b+")";
},
rn:function(max,min){
return parseInt(Math.random()*(max-min))+min;
},
canvasIdErrorCallback: function (e) {
console.error(e.detail.errMsg)
}
}
}
</script>
<style lang="scss">
canvas{
height:50rpx;
}
.canvas-img-code{display: inline-block}
</style>