forked from Ziv-Barber/officegen
-
Notifications
You must be signed in to change notification settings - Fork 1
/
make_docx.js
165 lines (122 loc) · 3.57 KB
/
make_docx.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
var async = require ( 'async' );
var officegen = require('../lib/index.js');
var fs = require('fs');
var path = require('path');
var docx = officegen ( 'docx' );
// Remove this comment in case of debugging Officegen:
// officegen.setVerboseMode ( true );
docx.on ( 'error', function ( err ) {
console.log ( err );
});
var pObj = docx.createP ();
pObj.addText ( 'Simple' );
pObj.addText ( ' with color', { color: '000088' } );
pObj.addText ( ' and back color.', { color: '00ffff', back: '000088' } );
var pObj = docx.createP ();
pObj.addText ( 'Bold + underline', { bold: true, underline: true } );
var pObj = docx.createP ( { align: 'center' } );
pObj.addText ( 'Center this text.' );
var pObj = docx.createP ();
pObj.options.align = 'right';
pObj.addText ( 'Align this text to the right.' );
var pObj = docx.createP ();
pObj.addText ( 'Those two lines are in the same paragraph,' );
pObj.addLineBreak ();
pObj.addText ( 'but they are separated by a line break.' );
docx.putPageBreak ();
var pObj = docx.createP ();
pObj.addText ( 'Fonts face only.', { font_face: 'Arial' } );
pObj.addText ( ' Fonts face and size.', { font_face: 'Arial', font_size: 40 } );
docx.putPageBreak ();
var pObj = docx.createP ();
pObj.addImage ( path.resolve(__dirname, 'images_for_examples/image3.png' ) );
docx.putPageBreak ();
var pObj = docx.createP ();
pObj.addImage ( path.resolve(__dirname, 'images_for_examples/image1.png' ) );
var pObj = docx.createP ();
pObj.addImage ( path.resolve(__dirname, 'images_for_examples/sword_001.png' ) );
pObj.addImage ( path.resolve(__dirname, 'images_for_examples/sword_002.png' ) );
pObj.addImage ( path.resolve(__dirname, 'images_for_examples/sword_003.png' ) );
pObj.addText ( '... some text here ...', { font_face: 'Arial' } );
pObj.addImage ( path.resolve(__dirname, 'images_for_examples/sword_004.png' ) );
var pObj = docx.createP ();
pObj.addImage ( path.resolve(__dirname, 'images_for_examples/image1.png' ) );
docx.putPageBreak ();
var pObj = docx.createListOfNumbers ();
pObj.addText ( 'Option 1' );
var pObj = docx.createListOfNumbers ();
pObj.addText ( 'Option 2' );
pObj.addHorizontalLine ();
var pObj = docx.createP ({ backline: 'E0E0E0' });
pObj.addText ( 'Backline text1' );
pObj.addText ( ' text2' );
var table = [
[{
val: "No.",
opts: {
cellColWidth: 4261,
b:true,
sz: '48',
shd: {
fill: "7F7F7F",
themeFill: "text1",
"themeFillTint": "80"
},
fontFamily: "Avenir Book"
}
},{
val: "Title1",
opts: {
b:true,
color: "A00000",
align: "right",
shd: {
fill: "92CDDC",
themeFill: "text1",
"themeFillTint": "80"
}
}
},{
val: "Title2",
opts: {
align: "center",
cellColWidth: 42,
b:true,
sz: '48',
shd: {
fill: "92CDDC",
themeFill: "text1",
"themeFillTint": "80"
}
}
}],
[1,'All grown-ups were once children',''],
[2,'there is no harm in putting off a piece of work until another day.',''],
[3,'But when it is a matter of baobabs, that always means a catastrophe.',''],
[4,'watch out for the baobabs!','END'],
]
var tableStyle = {
tableColWidth: 4261,
tableSize: 24,
tableColor: "ada",
tableAlign: "left",
tableFontFamily: "Comic Sans MS"
}
var pObj = docx.createTable (table, tableStyle);
var out = fs.createWriteStream ( 'out.docx' );
out.on ( 'error', function ( err ) {
console.log ( err );
});
async.parallel ([
function ( done ) {
out.on ( 'close', function () {
console.log ( 'Finish to create a DOCX file.' );
done ( null );
});
docx.generate ( out );
}
], function ( err ) {
if ( err ) {
console.log ( 'error: ' + err );
} // Endif.
});