forked from bpampuch/pdfmake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPDFDocument.js
127 lines (101 loc) · 2.74 KB
/
PDFDocument.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
import PDFKit from '@foliojs-fork/pdfkit';
const typeName = (bold, italics) => {
let type = 'normal';
if (bold && italics) {
type = 'bolditalics';
} else if (bold) {
type = 'bold';
} else if (italics) {
type = 'italics';
}
return type;
};
class PDFDocument extends PDFKit {
constructor(fonts = {}, images = {}, options = {}, virtualfs = null) {
super(options);
this.fonts = {};
this.fontCache = {};
for (let font in fonts) {
if (fonts.hasOwnProperty(font)) {
let fontDef = fonts[font];
this.fonts[font] = {
normal: fontDef.normal,
bold: fontDef.bold,
italics: fontDef.italics,
bolditalics: fontDef.bolditalics
};
}
}
this.images = images;
this.virtualfs = virtualfs;
}
getFontType(bold, italics) {
return typeName(bold, italics);
}
getFontFile(familyName, bold, italics) {
let type = this.getFontType(bold, italics);
if (!this.fonts[familyName] || !this.fonts[familyName][type]) {
return null;
}
return this.fonts[familyName][type];
}
provideFont(familyName, bold, italics) {
let type = this.getFontType(bold, italics);
if (this.getFontFile(familyName, bold, italics) === null) {
throw new Error(`Font '${familyName}' in style '${type}' is not defined in the font section of the document definition.`);
}
this.fontCache[familyName] = this.fontCache[familyName] || {};
if (!this.fontCache[familyName][type]) {
let def = this.fonts[familyName][type];
if (!Array.isArray(def)) {
def = [def];
}
if (this.virtualfs && this.virtualfs.existsSync(def[0])) {
def[0] = this.virtualfs.readFileSync(def[0]);
}
this.fontCache[familyName][type] = this.font(...def)._font;
}
return this.fontCache[familyName][type];
}
provideImage(src) {
const realImageSrc = src => {
let image = this.images[src];
if (!image) {
return src;
}
if (this.virtualfs && this.virtualfs.existsSync(image)) {
return this.virtualfs.readFileSync(image);
}
let index = image.indexOf('base64,');
if (index < 0) {
return this.images[src];
}
return Buffer.from(image.substring(index + 7), 'base64');
};
if (this._imageRegistry[src]) {
return this._imageRegistry[src];
}
let image;
try {
image = this.openImage(realImageSrc(src));
if (!image) {
throw new Error('No image');
}
} catch (error) {
throw new Error(`Invalid image: ${error.toString()}\nImages dictionary should contain dataURL entries (or local file paths in node.js)`);
}
image.embed(this);
this._imageRegistry[src] = image;
return image;
}
setOpenActionAsPrint() {
let printActionRef = this.ref({
Type: 'Action',
S: 'Named',
N: 'Print'
});
this._root.data.OpenAction = printActionRef;
printActionRef.end();
}
}
export default PDFDocument;