| 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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360 | 1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
| define(["require", "exports", "./enum", "./pdf-font-metrics"], function (require, exports, enum_1, pdf_font_metrics_1) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var PdfStandardFontMetricsFactory = (function () {
function PdfStandardFontMetricsFactory() {
}
PdfStandardFontMetricsFactory.getMetrics = function (fontFamily, fontStyle, size) {
var metrics = null;
switch (fontFamily) {
case enum_1.PdfFontFamily.Helvetica:
metrics = this.getHelveticaMetrics(fontFamily, fontStyle, size);
break;
case enum_1.PdfFontFamily.Courier:
metrics = this.getCourierMetrics(fontFamily, fontStyle, size);
break;
case enum_1.PdfFontFamily.TimesRoman:
metrics = this.getTimesMetrics(fontFamily, fontStyle, size);
break;
case enum_1.PdfFontFamily.Symbol:
metrics = this.getSymbolMetrics(fontFamily, fontStyle, size);
break;
case enum_1.PdfFontFamily.ZapfDingbats:
metrics = this.getZapfDingbatsMetrics(fontFamily, fontStyle, size);
break;
default:
metrics = this.getHelveticaMetrics(enum_1.PdfFontFamily.Helvetica, fontStyle, size);
break;
}
metrics.name = fontFamily.toString();
metrics.subScriptSizeFactor = this.subSuperScriptFactor;
metrics.superscriptSizeFactor = this.subSuperScriptFactor;
return metrics;
};
PdfStandardFontMetricsFactory.getHelveticaMetrics = function (fontFamily, fontStyle, size) {
var metrics = new pdf_font_metrics_1.PdfFontMetrics();
Iif ((fontStyle & enum_1.PdfFontStyle.Bold) > 0 && (fontStyle & enum_1.PdfFontStyle.Italic) > 0) {
metrics.ascent = this.helveticaBoldItalicAscent;
metrics.descent = this.helveticaBoldItalicDescent;
metrics.postScriptName = this.helveticaBoldItalicName;
metrics.size = size;
metrics.widthTable = new pdf_font_metrics_1.StandardWidthTable(this.arialBoldWidth);
metrics.height = metrics.ascent - metrics.descent;
}
else Iif ((fontStyle & enum_1.PdfFontStyle.Bold) > 0) {
metrics.ascent = this.helveticaBoldAscent;
metrics.descent = this.helveticaBoldDescent;
metrics.postScriptName = this.helveticaBoldName;
metrics.size = size;
metrics.widthTable = new pdf_font_metrics_1.StandardWidthTable(this.arialBoldWidth);
metrics.height = metrics.ascent - metrics.descent;
}
else Iif ((fontStyle & enum_1.PdfFontStyle.Italic) > 0) {
metrics.ascent = this.helveticaItalicAscent;
metrics.descent = this.helveticaItalicDescent;
metrics.postScriptName = this.helveticaItalicName;
metrics.size = size;
metrics.widthTable = new pdf_font_metrics_1.StandardWidthTable(this.arialWidth);
metrics.height = metrics.ascent - metrics.descent;
}
else {
metrics.ascent = this.helveticaAscent;
metrics.descent = this.helveticaDescent;
metrics.postScriptName = this.helveticaName;
metrics.size = size;
metrics.widthTable = new pdf_font_metrics_1.StandardWidthTable(this.arialWidth);
metrics.height = metrics.ascent - metrics.descent;
}
return metrics;
};
PdfStandardFontMetricsFactory.getCourierMetrics = function (fontFamily, fontStyle, size) {
var metrics = new pdf_font_metrics_1.PdfFontMetrics();
if ((fontStyle & enum_1.PdfFontStyle.Bold) > 0 && (fontStyle & enum_1.PdfFontStyle.Italic) > 0) {
metrics.ascent = this.courierBoldItalicAscent;
metrics.descent = this.courierBoldItalicDescent;
metrics.postScriptName = this.courierBoldItalicName;
metrics.size = size;
metrics.widthTable = new pdf_font_metrics_1.StandardWidthTable(this.fixedWidth);
metrics.height = metrics.ascent - metrics.descent;
}
else if ((fontStyle & enum_1.PdfFontStyle.Bold) > 0) {
metrics.ascent = this.courierBoldAscent;
metrics.descent = this.courierBoldDescent;
metrics.postScriptName = this.courierBoldName;
metrics.size = size;
metrics.widthTable = new pdf_font_metrics_1.StandardWidthTable(this.fixedWidth);
metrics.height = metrics.ascent - metrics.descent;
}
else if ((fontStyle & enum_1.PdfFontStyle.Italic) > 0) {
metrics.ascent = this.courierItalicAscent;
metrics.descent = this.courierItalicDescent;
metrics.postScriptName = this.courierItalicName;
metrics.size = size;
metrics.widthTable = new pdf_font_metrics_1.StandardWidthTable(this.fixedWidth);
metrics.height = metrics.ascent - metrics.descent;
}
else {
metrics.ascent = this.courierAscent;
metrics.descent = this.courierDescent;
metrics.postScriptName = this.courierName;
metrics.size = size;
metrics.widthTable = new pdf_font_metrics_1.StandardWidthTable(this.fixedWidth);
metrics.height = metrics.ascent - metrics.descent;
}
return metrics;
};
PdfStandardFontMetricsFactory.getTimesMetrics = function (fontFamily, fontStyle, size) {
var metrics = new pdf_font_metrics_1.PdfFontMetrics();
if ((fontStyle & enum_1.PdfFontStyle.Bold) > 0 && (fontStyle & enum_1.PdfFontStyle.Italic) > 0) {
metrics.ascent = this.timesBoldItalicAscent;
metrics.descent = this.timesBoldItalicDescent;
metrics.postScriptName = this.timesBoldItalicName;
metrics.size = size;
metrics.widthTable = new pdf_font_metrics_1.StandardWidthTable(this.timesRomanBoldItalicWidths);
metrics.height = metrics.ascent - metrics.descent;
}
else if ((fontStyle & enum_1.PdfFontStyle.Bold) > 0) {
metrics.ascent = this.timesBoldAscent;
metrics.descent = this.timesBoldDescent;
metrics.postScriptName = this.timesBoldName;
metrics.size = size;
metrics.widthTable = new pdf_font_metrics_1.StandardWidthTable(this.timesRomanBoldWidth);
metrics.height = metrics.ascent - metrics.descent;
}
else if ((fontStyle & enum_1.PdfFontStyle.Italic) > 0) {
metrics.ascent = this.timesItalicAscent;
metrics.descent = this.timesItalicDescent;
metrics.postScriptName = this.timesItalicName;
metrics.size = size;
metrics.widthTable = new pdf_font_metrics_1.StandardWidthTable(this.timesRomanItalicWidth);
metrics.height = metrics.ascent - metrics.descent;
}
else {
metrics.ascent = this.timesAscent;
metrics.descent = this.timesDescent;
metrics.postScriptName = this.timesName;
metrics.size = size;
metrics.widthTable = new pdf_font_metrics_1.StandardWidthTable(this.timesRomanWidth);
metrics.height = metrics.ascent - metrics.descent;
}
return metrics;
};
PdfStandardFontMetricsFactory.getSymbolMetrics = function (fontFamily, fontStyle, size) {
var metrics = new pdf_font_metrics_1.PdfFontMetrics();
metrics.ascent = this.symbolAscent;
metrics.descent = this.symbolDescent;
metrics.postScriptName = this.symbolName;
metrics.size = size;
metrics.widthTable = new pdf_font_metrics_1.StandardWidthTable(this.symbolWidth);
metrics.height = metrics.ascent - metrics.descent;
return metrics;
};
PdfStandardFontMetricsFactory.getZapfDingbatsMetrics = function (fontFamily, fontStyle, size) {
var metrics = new pdf_font_metrics_1.PdfFontMetrics();
metrics.ascent = this.zapfDingbatsAscent;
metrics.descent = this.zapfDingbatsDescent;
metrics.postScriptName = this.zapfDingbatsName;
metrics.size = size;
metrics.widthTable = new pdf_font_metrics_1.StandardWidthTable(this.zapfDingbatsWidth);
metrics.height = metrics.ascent - metrics.descent;
return metrics;
};
PdfStandardFontMetricsFactory.subSuperScriptFactor = 1.52;
PdfStandardFontMetricsFactory.helveticaAscent = 931;
PdfStandardFontMetricsFactory.helveticaDescent = -225;
PdfStandardFontMetricsFactory.helveticaName = 'Helvetica';
PdfStandardFontMetricsFactory.helveticaBoldAscent = 962;
PdfStandardFontMetricsFactory.helveticaBoldDescent = -228;
PdfStandardFontMetricsFactory.helveticaBoldName = 'Helvetica-Bold';
PdfStandardFontMetricsFactory.helveticaItalicAscent = 931;
PdfStandardFontMetricsFactory.helveticaItalicDescent = -225;
PdfStandardFontMetricsFactory.helveticaItalicName = 'Helvetica-Oblique';
PdfStandardFontMetricsFactory.helveticaBoldItalicAscent = 962;
PdfStandardFontMetricsFactory.helveticaBoldItalicDescent = -228;
PdfStandardFontMetricsFactory.helveticaBoldItalicName = 'Helvetica-BoldOblique';
PdfStandardFontMetricsFactory.courierAscent = 805;
PdfStandardFontMetricsFactory.courierDescent = -250;
PdfStandardFontMetricsFactory.courierName = 'Courier';
PdfStandardFontMetricsFactory.courierBoldAscent = 801;
PdfStandardFontMetricsFactory.courierBoldDescent = -250;
PdfStandardFontMetricsFactory.courierBoldName = 'Courier-Bold';
PdfStandardFontMetricsFactory.courierItalicAscent = 805;
PdfStandardFontMetricsFactory.courierItalicDescent = -250;
PdfStandardFontMetricsFactory.courierItalicName = 'Courier-Oblique';
PdfStandardFontMetricsFactory.courierBoldItalicAscent = 801;
PdfStandardFontMetricsFactory.courierBoldItalicDescent = -250;
PdfStandardFontMetricsFactory.courierBoldItalicName = 'Courier-BoldOblique';
PdfStandardFontMetricsFactory.timesAscent = 898;
PdfStandardFontMetricsFactory.timesDescent = -218;
PdfStandardFontMetricsFactory.timesName = 'Times-Roman';
PdfStandardFontMetricsFactory.timesBoldAscent = 935;
PdfStandardFontMetricsFactory.timesBoldDescent = -218;
PdfStandardFontMetricsFactory.timesBoldName = 'Times-Bold';
PdfStandardFontMetricsFactory.timesItalicAscent = 883;
PdfStandardFontMetricsFactory.timesItalicDescent = -217;
PdfStandardFontMetricsFactory.timesItalicName = 'Times-Italic';
PdfStandardFontMetricsFactory.timesBoldItalicAscent = 921;
PdfStandardFontMetricsFactory.timesBoldItalicDescent = -218;
PdfStandardFontMetricsFactory.timesBoldItalicName = 'Times-BoldItalic';
PdfStandardFontMetricsFactory.symbolAscent = 1010;
PdfStandardFontMetricsFactory.symbolDescent = -293;
PdfStandardFontMetricsFactory.symbolName = 'Symbol';
PdfStandardFontMetricsFactory.zapfDingbatsAscent = 820;
PdfStandardFontMetricsFactory.zapfDingbatsDescent = -143;
PdfStandardFontMetricsFactory.zapfDingbatsName = 'ZapfDingbats';
PdfStandardFontMetricsFactory.arialWidth = [
278, 278, 355, 556, 556, 889, 667, 191, 333, 333, 389, 584, 278, 333,
278, 278, 556, 556, 556, 556, 556, 556, 556, 556, 556, 556, 278, 278, 584, 584,
584, 556, 1015, 667, 667, 722, 722, 667, 611, 778, 722, 278, 500, 667, 556, 833,
722, 778, 667, 778, 722, 667, 611, 722, 667, 944, 667, 667, 611, 278, 278, 278,
469, 556, 333, 556, 556, 500, 556, 556, 278, 556, 556, 222, 222, 500, 222, 833,
556, 556, 556, 556, 333, 500, 278, 556, 500, 722, 500, 500, 500, 334, 260, 334,
584, 0, 556, 0, 222, 556, 333, 1000, 556, 556, 333, 1000, 667, 333, 1000, 0,
611, 0, 0, 222, 222, 333, 333, 350, 556, 1000, 333, 1000, 500, 333, 944, 0,
500, 667, 0, 333, 556, 556, 556, 556, 260, 556, 333, 737, 370, 556, 584, 0,
737, 333, 400, 584, 333, 333, 333, 556, 537, 278, 333, 333, 365, 556, 834, 834,
834, 611, 667, 667, 667, 667, 667, 667, 1000, 722, 667, 667, 667, 667, 278, 278,
278, 278, 722, 722, 778, 778, 778, 778, 778, 584, 778, 722, 722, 722, 722, 667,
667, 611, 556, 556, 556, 556, 556, 556, 889, 500, 556, 556, 556, 556, 278, 278,
278, 278, 556, 556, 556, 556, 556, 556, 556, 584, 611, 556, 556, 556, 556, 500,
556, 500
];
PdfStandardFontMetricsFactory.arialBoldWidth = [
278, 333, 474, 556, 556, 889, 722, 238, 333, 333, 389, 584, 278, 333,
278, 278, 556, 556, 556, 556, 556, 556, 556, 556, 556, 556, 333, 333, 584, 584,
584, 611, 975, 722, 722, 722, 722, 667, 611, 778, 722, 278, 556, 722, 611, 833,
722, 778, 667, 778, 722, 667, 611, 722, 667, 944, 667, 667, 611, 333, 278, 333,
584, 556, 333, 556, 611, 556, 611, 556, 333, 611, 611, 278, 278, 556, 278, 889,
611, 611, 611, 611, 389, 556, 333, 611, 556, 778, 556, 556, 500, 389, 280, 389,
584, 0, 556, 0, 278, 556, 500, 1000, 556, 556, 333, 1000, 667, 333, 1000, 0,
611, 0, 0, 278, 278, 500, 500, 350, 556, 1000, 333, 1000, 556, 333, 944, 0,
500, 667, 0, 333, 556, 556, 556, 556, 280, 556, 333, 737, 370, 556, 584, 0,
737, 333, 400, 584, 333, 333, 333, 611, 556, 278, 333, 333, 365, 556, 834, 834,
834, 611, 722, 722, 722, 722, 722, 722, 1000, 722, 667, 667, 667, 667, 278, 278,
278, 278, 722, 722, 778, 778, 778, 778, 778, 584, 778, 722, 722, 722, 722, 667,
667, 611, 556, 556, 556, 556, 556, 556, 889, 556, 556, 556, 556, 556, 278, 278,
278, 278, 611, 611, 611, 611, 611, 611, 611, 584, 611, 611, 611, 611, 611, 556,
611, 556
];
PdfStandardFontMetricsFactory.fixedWidth = [
600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600,
600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600,
600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600,
600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600,
600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600,
600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600,
600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600,
600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600,
600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600,
600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600,
600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600,
600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600,
600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600,
600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600
];
PdfStandardFontMetricsFactory.timesRomanWidth = [
250, 333, 408, 500, 500, 833, 778, 180, 333, 333, 500, 564, 250, 333,
250, 278, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 278, 278, 564, 564,
564, 444, 921, 722, 667, 667, 722, 611, 556, 722, 722, 333, 389, 722, 611, 889,
722, 722, 556, 722, 667, 556, 611, 722, 722, 944, 722, 722, 611, 333, 278, 333,
469, 500, 333, 444, 500, 444, 500, 444, 333, 500, 500, 278, 278, 500, 278, 778,
500, 500, 500, 500, 333, 389, 278, 500, 500, 722, 500, 500, 444, 480, 200, 480,
541, 0, 500, 0, 333, 500, 444, 1000, 500, 500, 333, 1000, 556, 333, 889, 0,
611, 0, 0, 333, 333, 444, 444, 350, 500, 1000, 333, 980, 389, 333, 722, 0,
444, 722, 0, 333, 500, 500, 500, 500, 200, 500, 333, 760, 276, 500, 564, 0,
760, 333, 400, 564, 300, 300, 333, 500, 453, 250, 333, 300, 310, 500, 750, 750,
750, 444, 722, 722, 722, 722, 722, 722, 889, 667, 611, 611, 611, 611, 333, 333,
333, 333, 722, 722, 722, 722, 722, 722, 722, 564, 722, 722, 722, 722, 722, 722,
556, 500, 444, 444, 444, 444, 444, 444, 667, 444, 444, 444, 444, 444, 278, 278,
278, 278, 500, 500, 500, 500, 500, 500, 500, 564, 500, 500, 500, 500, 500, 500,
500, 500
];
PdfStandardFontMetricsFactory.timesRomanBoldWidth = [
250, 333, 555, 500, 500, 1000, 833, 278, 333, 333, 500, 570, 250, 333,
250, 278, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 333, 333, 570, 570,
570, 500, 930, 722, 667, 722, 722, 667, 611, 778, 778, 389, 500, 778, 667, 944,
722, 778, 611, 778, 722, 556, 667, 722, 722, 1000, 722, 722, 667, 333, 278, 333,
581, 500, 333, 500, 556, 444, 556, 444, 333, 500, 556, 278, 333, 556, 278, 833,
556, 500, 556, 556, 444, 389, 333, 556, 500, 722, 500, 500, 444, 394, 220, 394,
520, 0, 500, 0, 333, 500, 500, 1000, 500, 500, 333, 1000, 556, 333, 1000, 0,
667, 0, 0, 333, 333, 500, 500, 350, 500, 1000, 333, 1000, 389, 333, 722, 0,
444, 722, 0, 333, 500, 500, 500, 500, 220, 500, 333, 747, 300, 500, 570, 0,
747, 333, 400, 570, 300, 300, 333, 556, 540, 250, 333, 300, 330, 500, 750, 750,
750, 500, 722, 722, 722, 722, 722, 722, 1000, 722, 667, 667, 667, 667, 389, 389,
389, 389, 722, 722, 778, 778, 778, 778, 778, 570, 778, 722, 722, 722, 722, 722,
611, 556, 500, 500, 500, 500, 500, 500, 722, 444, 444, 444, 444, 444, 278, 278,
278, 278, 500, 556, 500, 500, 500, 500, 500, 570, 500, 556, 556, 556, 556, 500,
556, 500
];
PdfStandardFontMetricsFactory.timesRomanItalicWidth = [
250, 333, 420, 500, 500, 833, 778, 214, 333, 333, 500, 675, 250, 333,
250, 278, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 333, 333, 675, 675,
675, 500, 920, 611, 611, 667, 722, 611, 611, 722, 722, 333, 444, 667, 556, 833,
667, 722, 611, 722, 611, 500, 556, 722, 611, 833, 611, 556, 556, 389, 278, 389,
422, 500, 333, 500, 500, 444, 500, 444, 278, 500, 500, 278, 278, 444, 278, 722,
500, 500, 500, 500, 389, 389, 278, 500, 444, 667, 444, 444, 389, 400, 275, 400,
541, 0, 500, 0, 333, 500, 556, 889, 500, 500, 333, 1000, 500, 333, 944, 0,
556, 0, 0, 333, 333, 556, 556, 350, 500, 889, 333, 980, 389, 333, 667, 0,
389, 556, 0, 389, 500, 500, 500, 500, 275, 500, 333, 760, 276, 500, 675, 0,
760, 333, 400, 675, 300, 300, 333, 500, 523, 250, 333, 300, 310, 500, 750, 750,
750, 500, 611, 611, 611, 611, 611, 611, 889, 667, 611, 611, 611, 611, 333, 333,
333, 333, 722, 667, 722, 722, 722, 722, 722, 675, 722, 722, 722, 722, 722, 556,
611, 500, 500, 500, 500, 500, 500, 500, 667, 444, 444, 444, 444, 444, 278, 278,
278, 278, 500, 500, 500, 500, 500, 500, 500, 675, 500, 500, 500, 500, 500, 444,
500, 444
];
PdfStandardFontMetricsFactory.timesRomanBoldItalicWidths = [
250, 389, 555, 500, 500, 833, 778, 278, 333, 333, 500, 570, 250, 333,
250, 278, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 333, 333, 570, 570,
570, 500, 832, 667, 667, 667, 722, 667, 667, 722, 778, 389, 500, 667, 611, 889,
722, 722, 611, 722, 667, 556, 611, 722, 667, 889, 667, 611, 611, 333, 278, 333,
570, 500, 333, 500, 500, 444, 500, 444, 333, 500, 556, 278, 278, 500, 278, 778,
556, 500, 500, 500, 389, 389, 278, 556, 444, 667, 500, 444, 389, 348, 220, 348,
570, 0, 500, 0, 333, 500, 500, 1000, 500, 500, 333, 1000, 556, 333, 944, 0,
611, 0, 0, 333, 333, 500, 500, 350, 500, 1000, 333, 1000, 389, 333, 722, 0,
389, 611, 0, 389, 500, 500, 500, 500, 220, 500, 333, 747, 266, 500, 606, 0,
747, 333, 400, 570, 300, 300, 333, 576, 500, 250, 333, 300, 300, 500, 750, 750,
750, 500, 667, 667, 667, 667, 667, 667, 944, 667, 667, 667, 667, 667, 389, 389,
389, 389, 722, 722, 722, 722, 722, 722, 722, 570, 722, 722, 722, 722, 722, 611,
611, 500, 500, 500, 500, 500, 500, 500, 722, 444, 444, 444, 444, 444, 278, 278,
278, 278, 500, 556, 500, 500, 500, 500, 500, 570, 500, 556, 556, 556, 556, 444,
500, 444
];
PdfStandardFontMetricsFactory.symbolWidth = [
250, 333, 713, 500, 549, 833, 778, 439, 333, 333, 500, 549, 250, 549,
250, 278, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 278, 278,
549, 549, 549, 444, 549, 722, 667, 722, 612, 611, 763, 603, 722, 333,
631, 722, 686, 889, 722, 722, 768, 741, 556, 592, 611, 690, 439, 768,
645, 795, 611, 333, 863, 333, 658, 500, 500, 631, 549, 549, 494, 439,
521, 411, 603, 329, 603, 549, 549, 576, 521, 549, 549, 521, 549, 603,
439, 576, 713, 686, 493, 686, 494, 480, 200, 480, 549, 750, 620, 247,
549, 167, 713, 500, 753, 753, 753, 753, 1042, 987, 603, 987, 603, 400,
549, 411, 549, 549, 713, 494, 460, 549, 549, 549, 549, 1000, 603, 1000,
658, 823, 686, 795, 987, 768, 768, 823, 768, 768, 713, 713, 713, 713,
713, 713, 713, 768, 713, 790, 790, 890, 823, 549, 250, 713, 603, 603,
1042, 987, 603, 987, 603, 494, 329, 790, 790, 786, 713, 384, 384, 384,
384, 384, 384, 494, 494, 494, 494, 329, 274, 686, 686, 686, 384, 384,
384, 384, 384, 384, 494, 494, 494, -1
];
PdfStandardFontMetricsFactory.zapfDingbatsWidth = [
278, 974, 961, 974, 980, 719, 789, 790, 791, 690, 960, 939, 549, 855,
911, 933, 911, 945, 974, 755, 846, 762, 761, 571, 677, 763, 760, 759,
754, 494, 552, 537, 577, 692, 786, 788, 788, 790, 793, 794, 816, 823,
789, 841, 823, 833, 816, 831, 923, 744, 723, 749, 790, 792, 695, 776,
768, 792, 759, 707, 708, 682, 701, 826, 815, 789, 789, 707, 687, 696,
689, 786, 787, 713, 791, 785, 791, 873, 761, 762, 762, 759, 759, 892,
892, 788, 784, 438, 138, 277, 415, 392, 392, 668, 668, 390, 390, 317,
317, 276, 276, 509, 509, 410, 410, 234, 234, 334, 334, 732, 544, 544,
910, 667, 760, 760, 776, 595, 694, 626, 788, 788, 788, 788, 788, 788,
788, 788, 788, 788, 788, 788, 788, 788, 788, 788, 788, 788, 788, 788,
788, 788, 788, 788, 788, 788, 788, 788, 788, 788, 788, 788, 788, 788,
788, 788, 788, 788, 788, 788, 894, 838, 1016, 458, 748, 924, 748, 918,
927, 928, 928, 834, 873, 828, 924, 924, 917, 930, 931, 463, 883, 836,
836, 867, 867, 696, 696, 874, 874, 760, 946, 771, 865, 771, 888, 967,
888, 831, 873, 927, 970, 918
];
return PdfStandardFontMetricsFactory;
}());
exports.PdfStandardFontMetricsFactory = PdfStandardFontMetricsFactory;
});
|