-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimg.js
79 lines (67 loc) · 2.37 KB
/
img.js
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
var Canvas = require('canvas');
var Image = Canvas.Image;
var Draw = function(conf){
this.width = parseInt(conf.w || conf.width || 200,10);
this.height = parseInt(conf.h || conf.height || 200,10);
this.fontText = this.width + 'X' +this.height;
this.fontSize = conf.fontSize || "24px";
this.fontFamily= conf.fontFamily || "sans-serif";
this.fontColor= conf.fontColor || "#000";
this.textAlign= conf.textAlign || "center";
this.background = conf.background || conf.bgn ? conf.bgn : ( conf.bgc && (conf.bgc != "#000000") ? conf.bgc :"#09f");
};
Draw.prototype.gen = function(){
var self =this;
var canvas = new Canvas(self.width,self.height);
var ctx = canvas.getContext('2d');
ctx.fillStyle = self.background;
ctx.fillRect(0,0,self.width,self.height);
// ctx.strokeStyle="blue";
// ctx.moveTo(cw/2,0);
// ctx.lineTo(cw/2,ch);
// ctx.stroke();
ctx.font = self.fontSize +"px Sans Serif";
ctx.fillStyle = self.fontColor;
// ctx.textAlign="start";
// ctx.fillText("start",cw/2,10);
// ctx.textAlign="end";
// ctx.fillText("end",cw/2,40);
// ctx.textAlign="left";
// ctx.fillText("left",cw/2,80);
// ctx.textAlign="center";
// ctx.fillText("center",cw/2,120);
// ctx.textAlign="right";
// ctx.fillText("right",cw/2,140);
ctx.textAlign= "center";
ctx.fillText(self.fontText,self.width/2,self.height/2);
//ctx.font = self.fontSize +"px Sans Serif";
// ctx.strokeStyle = fcolor;
// ctx.strokeText(ct,cw/2,ch/2);
// 绘制圆形
//
// ctx.fillStyle="yellow";
// ctx.beginPath();
// ctx.arc(cw/2,ch/2,cw/2,0,Math.PI*2,true); //Math.PI*2是JS计算方法,是圆
// ctx.closePath();
// ctx.fill();
// ctx.lineWidth = 5;
// ctx.strokeStyle = '#003300';
// ctx.stroke();
//绘制边框
// ctx.strokeStyle = self.background;
// ctx.lineWidth = 1;
// ctx.strokeRect(0,0,self.width,self.height);
//
//// //添加图片
// // fs.readFile(__dirname + '\\pic.png', function(err, pic){
// // if (err) throw err;
// // img = new Image;
// // img.src = pic;
// // ctx.drawImage(img,0,0,cw,ch);
// // reply(canvas.toBuffer()).type('image/png');
// // });
return canvas;
};
Draw.prototype.circle = function(){
};
exports = module.exports = Draw;