deno.land / x / docx@8.5.0 / demo / 19-export-to-base64.ts

19-export-to-base64.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
// Export to base64 string - Useful in a browser environment.
import * as fs from "fs";import { Document, Packer, Paragraph, Tab, TextRun } from "docx";
const doc = new Document({ sections: [ { children: [ new Paragraph({ children: [ new TextRun("Hello World"), new TextRun({ text: "Foo", bold: true, }), new TextRun({ children: [new Tab(), "Bar"], bold: true, }), ], }), ], }, ],});
Packer.toBase64String(doc).then((str) => { fs.writeFileSync("My Document.docx", str);});
docx

Version Info

Tagged at
4 months ago