deno.land / x / docx@8.5.0 / demo / 92-declarative-custom-fonts.ts

92-declarative-custom-fonts.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
40
41
42
43
44
45
// Simple example to add text to a document
import * as fs from "fs";import { Document, Packer, Paragraph, Tab, TextRun } from "docx";
const font = fs.readFileSync("./demo/assets/Pacifico.ttf");
const doc = new Document({ styles: { default: { document: { run: { font: "Pacifico", }, }, }, }, sections: [ { properties: {}, children: [ new Paragraph({ children: [ new TextRun("Hello World"), new TextRun({ text: "Foo Bar", bold: true, size: 40, }), new TextRun({ children: [new Tab(), "Github is the best"], bold: true, }), ], }), ], }, ], fonts: [{ name: "Pacifico", data: font, characterSet: "00" }],});
Packer.toBuffer(doc).then((buffer) => { fs.writeFileSync("My Document.docx", buffer);});
docx

Version Info

Tagged at
4 months ago