deno.land / x / docx@8.5.0 / demo / 65-page-sizes.ts

65-page-sizes.ts
نووسراو ببینە
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
// Example of how to set the document page sizes// Reference from https://papersizes.io/a/a3
import * as fs from "fs";import { convertMillimetersToTwip, Document, Packer, PageOrientation, Paragraph } from "docx";
const doc = new Document({ sections: [ { properties: { page: { size: { orientation: PageOrientation.LANDSCAPE, height: convertMillimetersToTwip(210), width: convertMillimetersToTwip(148), }, }, }, children: [new Paragraph("Hello World")], }, { properties: { page: { size: { orientation: PageOrientation.PORTRAIT, height: convertMillimetersToTwip(420), width: convertMillimetersToTwip(297), }, }, }, children: [new Paragraph("Hello World")], }, ],});
Packer.toBuffer(doc).then((buffer) => { fs.writeFileSync("My Document.docx", buffer);});
docx

Version Info

Tagged at
4 months ago