-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
385 lines (383 loc) · 9.83 KB
/
index.d.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
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
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
/* tslint:disable */
/* eslint-disable */
/* auto-generated by NAPI-RS */
export const enum IndexToLocationFormat {
Short = 0,
Long = 1
}
/** A [Font Header Table](https://docs.microsoft.com/en-us/typography/opentype/spec/head). */
export interface HEADTable {
/** Units per EM. */
unitsPerEm: number
/** A bounding box that large enough to enclose any glyph from the face. */
globalBbox: Rect
/**
* An index format used by the [Index to Location Table](
* https://docs.microsoft.com/en-us/typography/opentype/spec/loca).
*/
indexToLocationFormat: IndexToLocationFormat
}
/** A [Horizontal Header Table](https://docs.microsoft.com/en-us/typography/opentype/spec/hhea). */
export interface HHEATable {
/** Face ascender. */
ascender: number
/** Face descender. */
descender: number
/** Face line gap. */
lineGap: number
/** Number of metrics in the `hmtx` table. */
numberOfMetrics: number
}
/** A [Maximum Profile Table](https://docs.microsoft.com/en-us/typography/opentype/spec/maxp). */
export interface MAXPTable {
/** The total number of glyphs in the face. */
numberOfGlyphs: number
}
/** A [Name ID](https://docs.microsoft.com/en-us/typography/opentype/spec/name#name-ids). */
export const enum NameId {
CopyrightNotice = 0,
Family = 1,
Subfamily = 2,
UniqueId = 3,
FullName = 4,
Version = 5,
PostScriptName = 6,
Trademark = 7,
Manufacturer = 8,
Designer = 9,
Description = 10,
VendorUrl = 11,
DesignerUrl = 12,
License = 13,
LicenseUrl = 14,
TypographicFamily = 15,
TypographicSubFamily = 16,
CompatibleFull = 17,
SampleText = 18,
PostScriptCID = 19,
WWSFamily = 20,
WWSSubFamily = 21,
LightBackgroundPalette = 22,
DarkBackgroundPalette = 23,
VariationsPostScriptNamePrefix = 24,
Unknown = 25
}
/** A [platform ID](https://docs.microsoft.com/en-us/typography/opentype/spec/name#platform-ids). */
export const enum PlatformId {
Unicode = 0,
Macintosh = 1,
Iso = 2,
Windows = 3,
Custom = 4
}
/** A [Name Record](https://docs.microsoft.com/en-us/typography/opentype/spec/name#name-records). */
export interface NameRecord {
/** A platform ID. */
platformId: PlatformId
/** A language ID. */
languageId: string
/** A [Name ID](https://docs.microsoft.com/en-us/typography/opentype/spec/name#name-ids). */
nameId: NameId
name: string
}
/** A [Naming Table](https://docs.microsoft.com/en-us/typography/opentype/spec/name). */
export interface NAMETable {
names: Array<NameRecord>
}
/** A face style. */
export const enum Style {
/** A face that is neither italic not obliqued. */
Normal = 0,
/** A form that is generally cursive in nature. */
Italic = 1,
/** A typically-sloped version of the regular face. */
Oblique = 2
}
export const enum Permissions {
Installable = 0,
Restricted = 1,
PreviewAndPrint = 2,
Editable = 3,
Malformed = 4
}
/** A face [width](https://docs.microsoft.com/en-us/typography/opentype/spec/os2#uswidthclass). */
export const enum Width {
UltraCondensed = 0,
ExtraCondensed = 1,
Condensed = 2,
SemiCondensed = 3,
Normal = 4,
SemiExpanded = 5,
Expanded = 6,
ExtraExpanded = 7,
UltraExpanded = 8
}
export interface ScriptMetrics {
/** Horizontal face size. */
xSize: number
/** Vertical face size. */
ySize: number
/** X offset. */
xOffset: number
/** Y offset. */
yOffset: number
}
/** A [OS/2 and Windows Metrics Table](https://docs.microsoft.com/en-us/typography/opentype/spec/os2). */
export interface Table {
/** Returns weight class. */
weight: Weight
/** Returns face width. */
width: Width
/** Returns face permissions. */
permissions: Permissions
/** Checks if the face subsetting is allowed. */
isSubsettingAllowed: boolean
/** Checks if the face bitmaps embedding is allowed. */
isBitmapEmbeddingAllowed: boolean
/** Returns subscript metrics. */
subscriptMetrics: ScriptMetrics
/** Returns superscript metrics. */
superscriptMetrics: ScriptMetrics
/** Returns strikeout metrics. */
strikeoutMetrics: LineMetrics
/** Returns style. */
style: Style
/** Checks if face is bold. */
isBold: boolean
/** Checks if typographic metrics should be used. */
useTypographicMetrics: boolean
/** Returns typographic ascender. */
typographicAscender: number
/** Returns typographic descender. */
typographicDescender: number
/** Returns typographic line gap. */
typographicLineGap: number
/** Returns Windows ascender. */
windowsAscender: number
/** Returns Windows descender. */
windowsDescender: number
/** Returns x height. */
xHeight?: number
/** Returns capital height. */
capitalHeight?: number
}
export interface Tables {
/** A [Font Header Table](https://docs.microsoft.com/en-us/typography/opentype/spec/head). */
head: Table
hhea: Table
maxp: Table
os2?: Table
name?: Table
}
export interface LineMetrics {
/** Line position. */
position: number
/** Line thickness. */
thickness: number
}
/** A face [weight](https://docs.microsoft.com/en-us/typography/opentype/spec/os2#usweightclass). */
export const enum Weight {
Thin = 0,
ExtraLight = 1,
Light = 2,
Normal = 3,
Medium = 4,
SemiBold = 5,
Bold = 6,
ExtraBold = 7,
Black = 8,
Other = 9
}
/**
* A rectangle.
*
* Doesn't guarantee that `x_min` <= `x_max` and/or `y_min` <= `y_max`.
*/
export interface Rect {
xMin: number
yMin: number
xMax: number
yMax: number
}
export class TTFParser {
/**
* Checks that face is marked as *Bold*.
*
* Returns `false` when OS/2 table is not present.
*/
isBold: boolean
/**
* Checks that face is marked as *Italic*.
*
* Returns `false` when OS/2 table is not present.
*/
isItalic: boolean
/**
* Checks that face is marked as *Monospaced*.
*
* Returns `false` when `post` table is not present.
*/
isMonospaced: boolean
/**
* Checks that face is marked as *Oblique*.
*
* Returns `false` when OS/2 table is not present or when its version is < 4.
*/
isOblique: boolean
/**
* Checks that face is marked as *Regular*.
*
* Returns `false` when OS/2 table is not present.
*/
isRegular: boolean
/**
* Checks that face is variable.
*
* Simply checks the presence of a `fvar` table.
*/
isVariable: boolean
/**
* Returns a horizontal face ascender.
*
* This property is affected by variation axes.
*/
ascender: number
/**
* Returns a horizontal face descender.
*
* This property is affected by variation axes.
*/
descender: number
/**
* Returns face's height.
*
* This property is affected by variation axes.
*/
height: number
/**
* Returns a horizontal face line gap.
*
* This property is affected by variation axes.
*/
lineGap: number
/**
* Returns a horizontal typographic face ascender.
*
* Prefer `ascender` unless you explicitly want this. This is a more
* low-level alternative.
*
* This property is affected by variation axes.
*
* Returns `None` when OS/2 table is not present.
*/
typographicAscender?: number
/**
* Returns a horizontal typographic face ascender.
*
* Prefer `ascender` unless you explicitly want this. This is a more
* low-level alternative.
*
* This property is affected by variation axes.
*
* Returns `None` when OS/2 table is not present.
*/
typographicDescender?: number
/**
* Returns a horizontal typographic face line gap.
*
* Prefer `line_gap` unless you explicitly want this. This is a more
* low-level alternative.
*
* This property is affected by variation axes.
*
* Returns `None` when OS/2 table is not present.
*/
typographicLineGap?: number
/**
* Returns a vertical face ascender.
*
* This property is affected by variation axes.
*/
verticalAscender?: number
/**
* Returns a vertical face descender.
*
* This property is affected by variation axes.
*/
verticalDescender?: number
/**
* Returns a vertical face height.
*
* This method is affected by variation axes.
*/
verticalHeight?: number
/**
* Returns a vertical face line gap.
*
* This property is affected by variation axes.
*/
verticalLineGap?: number
/**
* Returns face's units per EM.
*
* Guarantee to be in a 16..=16384 range.
*/
unitsPerEm: number
/**
* Returns face's x height.
*
* This property is affected by variation axes.
*
* Returns `undefined` when OS/2 table is not present or when its version is < 2.
*/
xHeight?: number
/**
* Returns face's capital height.
*
* This property is affected by variation axes.
*
* Returns `undefined` when OS/2 table is not present or when its version is < 2.
*/
capitalHeight?: number
/**
* Returns face's italic angle.
*
* Returns `undefined` when `post` table is not present.
* Returns face permissions.
*/
permissions?: Permissions
/** Checks if the face subsetting is allowed. */
isSubsettingAllowed: boolean
/** Checks if the face bitmaps embedding is allowed. */
isBitmapEmbeddingAllowed: boolean
/**
* Returns a total number of glyphs in the face.
*
* Never zero.
*/
numberOfGlyphs: number
/**
* Returns face's superscript metrics.
*
* This property is affected by variation axes.
*
* Returns `undefined` when OS/2 table is not present.
*/
superscriptMetrics?: ScriptMetrics
/**
* Creates a new `TTFParser` from a raw data.
*
* `index` indicates the specific font face in a font collection.
* Use [`fonts_in_collection`] to get the total number of font faces.
* Defaults to 0 if not set.
*
* Required tables: `head`, `hhea` and `maxp`.
*
* If an optional table has invalid data it will be skipped.
*/
constructor(buffer: Buffer, index?: number | undefined | null)
/** Returns a bounding box that large enough to enclose any glyph from the face. */
get globalBoundingBox(): Rect
get tables(): Tables
get toJSON(): string
}