-
Notifications
You must be signed in to change notification settings - Fork 3
/
faitPDF.html
82 lines (66 loc) · 1.83 KB
/
faitPDF.html
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
<!DOCTYPE html>
<html>
<head>
<title>gilboo.net (gabarit de statue en tranches sur 1 axe)</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.5.3/jspdf.debug.js" integrity="sha384-NaWTHo/8YCBYJ59830LTz/P4aQZK1sS0SneOgAvhsIl3zBu8r9RevNg5lHCHAuQ/" crossorigin="anonymous"></script>
<script>
function init(){
zoneCopie.value = "";
var reader = new FileReader();
reader.onload = onReaderLoad;
reader.readAsText(event.target.files[0]);
}
function boutonFaitPDF(){
texte = zoneCopie.value;
faitPDF(texte);
}
function onReaderLoad(event){
var texte = event.target.result;
faitPDF(texte);
}
function faitPDF(texte){
var obj = JSON.parse(texte);
var doc = new jsPDF();
doc.setDrawColor(0, 0, 255);
doc.setLineWidth(0.1);
var n = 0;
for(i=0; i< obj.length; i++){
o = obj[i];
switch(o.t){
case 1: // cadre
doc.line(o.x1, o.y1, o.x1, o.y2);
doc.line(o.x1, o.y2, o.x2, o.y2);
doc.line(o.x2, o.y2, o.x2, o.y1);
doc.line(o.x2, o.y1, o.x1, o.y1);
// n° au milieu
n++;
x = (o.x1 + o.x2)/2;
y = (o.y1 + o.y2)/2;
doc.text(n.toString(), x, y, 'center');
break;
case 2: // ligne
doc.line(o.x1, o.y1, o.x2, o.y2);
break;
case 3: // texte
break;
case 4: // page
doc.addPage();
}
}
doc.save('a4.pdf');
}
</script>
</head>
<body>
<h3>Sélectionner le fichier contenant les données</h3>
<input id="fichier" type="file" onChange="init()"/>
<br/>
<h3>Ou<br/> coller ici les données puis cliquer sur le bouton</h3>
<textarea id="zoneCopie"></textarea>
<button onclick="boutonFaitPDF()">Fait PDF</button>
</body>
</html>