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
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
/**
* @file sft.hxx
* @brief Sun Font Tools
*/
/*
* Generated fonts contain an XUID entry in the form of:
*
* 103 0 T C1 N C2 C3
*
* 103 - Sun's Adobe assigned XUID number. Contact person: Alexander Gelfenbain <gelf@eng.sun.com>
*
* T - font type. 0: Type 3, 1: Type 42
* C1 - CRC-32 of the entire source TrueType font
* N - number of glyphs in the subset
* C2 - CRC-32 of the array of glyph IDs used to generate the subset
* C3 - CRC-32 of the array of encoding numbers used to generate the subset
*
*/
#ifndef INCLUDED_VCL_INC_SFT_HXX
#define INCLUDED_VCL_INC_SFT_HXX
#include <rtl/ustring.hxx>
#include <vcl/dllapi.h>
#include <vcl/fontcapabilities.hxx>
#include <vcl/fontcharmap.hxx>
#include <i18nlangtag/lang.h>
#include "fontsubset.hxx"
#include "glyphid.hxx"
#include <array>
#include <memory>
#include <vector>
class SvStream;
namespace vcl
{
/*@{*/
typedef sal_Int32 F16Dot16; /**< fixed: 16.16 */
/*@}*/
/** Return value of OpenTTFont() */
enum class SFErrCodes {
Ok, /**< no error */
BadFile, /**< file not found */
FileIo, /**< file I/O error */
Memory, /**< memory allocation error */
GlyphNum, /**< incorrect number of glyphs */
BadArg, /**< incorrect arguments */
TtFormat, /**< incorrect TrueType font format */
FontNo /**< incorrect logical font number of a TTC font */
};
#ifndef FW_THIN /* WIN32 compilation would conflict */
/** Value of the weight member of the TTGlobalFontInfo struct */
enum WeightClass {
FW_THIN = 100, /**< Thin */
FW_EXTRALIGHT = 200, /**< Extra-light (Ultra-light) */
FW_LIGHT = 300, /**< Light */
FW_NORMAL = 400, /**< Normal (Regular) */
FW_MEDIUM = 500, /**< Medium */
FW_SEMIBOLD = 600, /**< Semi-bold (Demi-bold) */
FW_BOLD = 700, /**< Bold */
FW_EXTRABOLD = 800, /**< Extra-bold (Ultra-bold) */
FW_BLACK = 900 /**< Black (Heavy) */
};
#endif /* FW_THIN */
/** Value of the width member of the TTGlobalFontInfo struct */
enum WidthClass {
FWIDTH_ULTRA_CONDENSED = 1, /**< 50% of normal */
FWIDTH_EXTRA_CONDENSED = 2, /**< 62.5% of normal */
FWIDTH_CONDENSED = 3, /**< 75% of normal */
FWIDTH_SEMI_CONDENSED = 4, /**< 87.5% of normal */
FWIDTH_NORMAL = 5, /**< Medium, 100% */
FWIDTH_SEMI_EXPANDED = 6, /**< 112.5% of normal */
FWIDTH_EXPANDED = 7, /**< 125% of normal */
FWIDTH_EXTRA_EXPANDED = 8, /**< 150% of normal */
FWIDTH_ULTRA_EXPANDED = 9 /**< 200% of normal */
};
/** Composite glyph flags definition */
enum CompositeFlags {
ARG_1_AND_2_ARE_WORDS = 1,
ARGS_ARE_XY_VALUES = 1<<1,
ROUND_XY_TO_GRID = 1<<2,
WE_HAVE_A_SCALE = 1<<3,
MORE_COMPONENTS = 1<<5,
WE_HAVE_AN_X_AND_Y_SCALE = 1<<6,
WE_HAVE_A_TWO_BY_TWO = 1<<7,
WE_HAVE_INSTRUCTIONS = 1<<8,
USE_MY_METRICS = 1<<9,
OVERLAP_COMPOUND = 1<<10
};
/** Structure used by GetTTSimpleCharMetrics() functions */
typedef struct {
sal_uInt16 adv; /**< advance width or height */
sal_Int16 sb; /**< left or top sidebearing */
} TTSimpleGlyphMetrics;
/** Structure used by the TrueType Creator and GetRawGlyphData() */
typedef struct {
sal_uInt32 glyphID; /**< glyph ID */
sal_uInt16 nbytes; /**< number of bytes in glyph data */
std::unique_ptr<sal_uInt8[]> ptr; /**< pointer to glyph data */
sal_uInt16 aw; /**< advance width */
sal_Int16 lsb; /**< left sidebearing */
bool compflag; /**< false- if non-composite */
sal_uInt16 npoints; /**< number of points */
sal_uInt16 ncontours; /**< number of contours */
/* */
sal_uInt32 newID; /**< used internally by the TTCR */
} GlyphData;
/** Structure used by the TrueType Creator and CreateTTFromTTGlyphs() */
struct NameRecord {
sal_uInt16 platformID; /**< Platform ID */
sal_uInt16 encodingID; /**< Platform-specific encoding ID */
LanguageType languageID; /**< Language ID */
sal_uInt16 nameID; /**< Name ID */
std::vector<sal_uInt8> sptr; /**< string data (not zero-terminated!) */
};
/** Return value of GetTTGlobalFontInfo() */
typedef struct TTGlobalFontInfo_ {
OString family; /**< family name */
OUString ufamily; /**< family name UCS2 */
OString subfamily; /**< subfamily name */
OUString usubfamily; /**< subfamily name UCS2 */
OString psname; /**< PostScript name */
sal_uInt16 macStyle = 0; /**< macstyle bits from 'HEAD' table */
int weight = 0; /**< value of WeightClass or 0 if can't be determined */
int width = 0; /**< value of WidthClass or 0 if can't be determined */
int pitch = 0; /**< 0: proportional font, otherwise: monospaced */
int italicAngle = 0; /**< in counter-clockwise degrees * 65536 */
int xMin = 0; /**< global bounding box: xMin */
int yMin = 0; /**< global bounding box: yMin */
int xMax = 0; /**< global bounding box: xMax */
int yMax = 0; /**< global bounding box: yMax */
int ascender = 0; /**< typographic ascent. */
int descender = 0; /**< typographic descent. */
int linegap = 0; /**< typographic line gap.\ Negative values are treated as
zero in Win 3.1, System 6 and System 7. */
int typoAscender = 0; /**< OS/2 portable typographic ascender */
int typoDescender = 0; /**< OS/2 portable typographic descender */
int typoLineGap = 0; /**< OS/2 portable typographic line gap */
int winAscent = 0; /**< ascender metric for Windows */
int winDescent = 0; /**< descender metric for Windows */
bool microsoftSymbolEncoded = false; /**< true: MS symbol encoded */
sal_uInt8 panose[10] = {}; /**< PANOSE classification number */
sal_uInt32 typeFlags = 0; /**< type flags (copyright bits) */
sal_uInt16 fsSelection = 0; /**< OS/2 fsSelection */
} TTGlobalFontInfo;
/** ControlPoint structure used by GetTTGlyphPoints() */
typedef struct {
sal_uInt32 flags; /**< 00000000 00000000 e0000000 bbbbbbbb */
/**< b - byte flags from the glyf array */
/**< e == 0 - regular point */
/**< e == 1 - end contour */
sal_Int16 x; /**< X coordinate in EmSquare units */
sal_Int16 y; /**< Y coordinate in EmSquare units */
} ControlPoint;
/*
Some table OS/2 consts
quick history:
OpenType has been created from TrueType
- original TrueType had an OS/2 table with a length of 68 bytes
(cf https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6OS2.html)
- There have been 6 versions (from version 0 to 5)
(cf https://docs.microsoft.com/en-us/typography/opentype/otspec140/os2ver0)
For the record:
// From Initial TrueType version
TYPE NAME FROM BYTE
uint16 version 0
int16 xAvgCharWidth 2
uint16 usWeightClass 4
uint16 usWidthClass 6
uint16 fsType 8
int16 ySubscriptXSize 10
int16 ySubscriptYSize 12
int16 ySubscriptXOffset 14
int16 ySubscriptYOffset 16
int16 ySuperscriptXSize 18
int16 ySuperscriptYSize 20
int16 ySuperscriptXOffset 22
int16 ySuperscriptYOffset 24
int16 yStrikeoutSize 26
int16 yStrikeoutPosition 28
int16 sFamilyClass 30
uint8 panose[10] 32
uint32 ulUnicodeRange1 42
uint32 ulUnicodeRange2 46
uint32 ulUnicodeRange3 50
uint32 ulUnicodeRange4 54
Tag achVendID 58
uint16 fsSelection 62
uint16 usFirstCharIndex 64
uint16 usLastCharIndex 66
// From Version 0 of OpenType
int16 sTypoAscender 68
int16 sTypoDescender 70
int16 sTypoLineGap 72
uint16 usWinAscent 74
uint16 usWinDescent 76
=> length for OpenType version 0 = 78 bytes
// From Version 1 of OpenType
uint32 ulCodePageRange1 78
uint32 ulCodePageRange2 82
=> length for OpenType version 1 = 86 bytes
// From Version 2 of OpenType
// (idem for Versions 3 and 4)
int16 sxHeight 86
int16 sCapHeight 88
uint16 usDefaultChar 90
uint16 usBreakChar 92
uint16 usMaxContext 94
=> length for OpenType version 2, 3 and 4 = 96 bytes
// From Version 5 of OpenType
uint16 usLowerOpticalPointSize 96
uint16 usUpperOpticalPointSize 98
END 100
=> length for OS/2 table version 5 = 100 bytes
*/
constexpr int OS2_Legacy_length = 68;
constexpr int OS2_V0_length = 78;
constexpr int OS2_V1_length = 86;
constexpr int OS2_usWeightClass_offset = 4;
constexpr int OS2_usWidthClass_offset = 6;
constexpr int OS2_fsType_offset = 8;
constexpr int OS2_panose_offset = 32;
constexpr int OS2_panoseNbBytes_offset = 10;
constexpr int OS2_ulUnicodeRange1_offset = 42;
constexpr int OS2_ulUnicodeRange2_offset = 46;
constexpr int OS2_ulUnicodeRange3_offset = 50;
constexpr int OS2_ulUnicodeRange4_offset = 54;
constexpr int OS2_fsSelection_offset = 62;
constexpr int OS2_typoAscender_offset = 68;
constexpr int OS2_typoDescender_offset = 70;
constexpr int OS2_typoLineGap_offset = 72;
constexpr int OS2_winAscent_offset = 74;
constexpr int OS2_winDescent_offset = 76;
constexpr int OS2_ulCodePageRange1_offset = 78;
constexpr int OS2_ulCodePageRange2_offset = 82;
/*
Some table hhea consts
cf https://docs.microsoft.com/fr-fr/typography/opentype/spec/hhea
TYPE NAME FROM BYTE
uint16 majorVersion 0
uint16 minorVersion 2
FWORD ascender 4
FWORD descender 6
FWORD lineGap 8
UFWORD advanceWidthMax 10
FWORD minLeftSideBearing 12
FWORD minRightSideBearing 14
FWORD xMaxExtent 16
int16 caretSlopeRise 18
int16 caretSlopeRun 20
int16 caretOffset 22
int16 (reserved) 24
int16 (reserved) 26
int16 (reserved) 28
int16 (reserved) 30
int16 metricDataFormat 32
uint16 numberOfHMetrics 34
END 36
=> length for hhea table = 36 bytes
*/
constexpr int HHEA_Length = 36;
constexpr int HHEA_ascender_offset = 4;
constexpr int HHEA_descender_offset = 6;
constexpr int HHEA_lineGap_offset = 8;
constexpr int HHEA_caretSlopeRise_offset = 18;
constexpr int HHEA_caretSlopeRun_offset = 20;
/*
Some table post consts
cf https://docs.microsoft.com/fr-fr/typography/opentype/spec/post
TYPE NAME FROM BYTE
Fixed version 0
Fixed italicAngle 4
FWord underlinePosition 8
FWord underlineThickness 10
uint32 isFixedPitch 12
...
*/
constexpr int POST_italicAngle_offset = 4;
constexpr int POST_underlinePosition_offset = 8;
constexpr int POST_underlineThickness_offset = 10;
constexpr int POST_isFixedPitch_offset = 12;
/*
Some table head consts
cf https://docs.microsoft.com/fr-fr/typography/opentype/spec/head
TYPE NAME FROM BYTE
uit16 majorVersion 0
uit16 minorVersion 2
Fixed fontRevision 4
uint32 checkSumAdjustment 8
uint32 magicNumber 12 (= 0x5F0F3CF5)
uint16 flags 16
uint16 unitsPerEm 18
LONGDATETIME created 20
LONGDATETIME modified 28
int16 xMin 36
int16 yMin 38
int16 xMax 40
int16 yMax 42
uint16 macStyle 44
uint16 lowestRecPPEM 46
int16 fontDirectionHint 48
int16 indexToLocFormat 50
int16 glyphDataFormat 52
END 54
=> length head table = 54 bytes
*/
constexpr int HEAD_Length = 54;
constexpr int HEAD_majorVersion_offset = 0;
constexpr int HEAD_fontRevision_offset = 4;
constexpr int HEAD_magicNumber_offset = 12;
constexpr int HEAD_flags_offset = 16;
constexpr int HEAD_unitsPerEm_offset = 18;
constexpr int HEAD_created_offset = 20;
constexpr int HEAD_xMin_offset = 36;
constexpr int HEAD_yMin_offset = 38;
constexpr int HEAD_xMax_offset = 40;
constexpr int HEAD_yMax_offset = 42;
constexpr int HEAD_macStyle_offset = 44;
constexpr int HEAD_lowestRecPPEM_offset = 46;
constexpr int HEAD_fontDirectionHint_offset = 48;
constexpr int HEAD_indexToLocFormat_offset = 50;
constexpr int HEAD_glyphDataFormat_offset = 52;
/*
Some table maxp consts
cf https://docs.microsoft.com/fr-fr/typography/opentype/spec/maxp
For 0.5 version
TYPE NAME FROM BYTE
Fixed version 0
uint16 numGlyphs 4
For 1.0 Version
Fixed version 0
uint16 numGlyphs 4
uint16 maxPoints 6
uint16 maxContours 8
uint16 maxCompositePoints 10
uint16 maxCompositeContours 12
...
*/
constexpr int MAXP_Version1Length = 32;
constexpr int MAXP_numGlyphs_offset = 4;
constexpr int MAXP_maxPoints_offset = 6;
constexpr int MAXP_maxContours_offset = 8;
constexpr int MAXP_maxCompositePoints_offset = 10;
constexpr int MAXP_maxCompositeContours_offset = 12;
/*
Some table glyf consts
cf https://docs.microsoft.com/fr-fr/typography/opentype/spec/glyf
For 0.5 version
TYPE NAME FROM BYTE
int16 numberOfContours 0
int16 xMin 2
int16 yMin 4
int16 xMax 6
int16 yMax 8
END 10
=> length glyf table = 10 bytes
*/
constexpr int GLYF_Length = 10;
constexpr int GLYF_numberOfContours_offset = 0;
constexpr int GLYF_xMin_offset = 2;
constexpr int GLYF_yMin_offset = 4;
constexpr int GLYF_xMax_offset = 6;
constexpr int GLYF_yMax_offset = 8;
constexpr sal_uInt32 T_true = 0x74727565; /* 'true' */
constexpr sal_uInt32 T_ttcf = 0x74746366; /* 'ttcf' */
constexpr sal_uInt32 T_otto = 0x4f54544f; /* 'OTTO' */
// standard TrueType table tags
constexpr sal_uInt32 T_maxp = 0x6D617870;
constexpr sal_uInt32 T_glyf = 0x676C7966;
constexpr sal_uInt32 T_head = 0x68656164;
constexpr sal_uInt32 T_loca = 0x6C6F6361;
constexpr sal_uInt32 T_name = 0x6E616D65;
constexpr sal_uInt32 T_hhea = 0x68686561;
constexpr sal_uInt32 T_hmtx = 0x686D7478;
constexpr sal_uInt32 T_cmap = 0x636D6170;
constexpr sal_uInt32 T_vhea = 0x76686561;
constexpr sal_uInt32 T_vmtx = 0x766D7478;
constexpr sal_uInt32 T_OS2 = 0x4F532F32;
constexpr sal_uInt32 T_post = 0x706F7374;
constexpr sal_uInt32 T_cvt = 0x63767420;
constexpr sal_uInt32 T_prep = 0x70726570;
constexpr sal_uInt32 T_fpgm = 0x6670676D;
constexpr sal_uInt32 T_CFF = 0x43464620;
class AbstractTrueTypeFont;
class TrueTypeFont;
/**
* @defgroup sft Sun Font Tools Exported Functions
*/
/**
* Get the number of fonts contained in a TrueType collection
* @param fname - file name
* @return number of fonts or zero, if file is not a TTC file.
* @ingroup sft
*/
int CountTTCFonts(const char* fname);
/**
* TrueTypeFont constructor.
* The font file has to be provided as a memory buffer and length
* @param pBuffer - memory buffer
* @param nLen - size of memory buffer
* @param facenum - logical font number within a TTC file. This value is ignored
* for TrueType fonts
* @param ttf - returns the opened TrueTypeFont
* @param xCharMap - optional parsed character map
* @return value of SFErrCodes enum
* @ingroup sft
*/
SFErrCodes VCL_DLLPUBLIC OpenTTFontBuffer(const void* pBuffer, sal_uInt32 nLen, sal_uInt32 facenum,
TrueTypeFont** ttf, const FontCharMapRef xCharMap = nullptr);
#if !defined(_WIN32)
/**
* TrueTypeFont constructor.
* Reads the font file and allocates the memory for the structure.
* on WIN32 the font has to be provided as a memory buffer and length
* @param fname - name of TrueType font file
* @param facenum - logical font number within a TTC file. This value is ignored
* for TrueType fonts
* @param ttf - returns the opened TrueTypeFont
* @param xCharMap - optional parsed character map
* @return value of SFErrCodes enum
* @ingroup sft
*/
SFErrCodes VCL_DLLPUBLIC OpenTTFontFile(const char *fname, sal_uInt32 facenum, TrueTypeFont** ttf,
const FontCharMapRef xCharMap = nullptr);
#endif
bool VCL_DLLPUBLIC getTTCoverage(
std::optional<std::bitset<UnicodeCoverage::MAX_UC_ENUM>> & rUnicodeCoverage,
std::optional<std::bitset<CodePageCoverage::MAX_CP_ENUM>> & rCodePageCoverage,
const unsigned char* pTable, size_t nLength);
/**
* TrueTypeFont destructor. Deallocates the memory.
* @ingroup sft
*/
void VCL_DLLPUBLIC CloseTTFont(TrueTypeFont *);
/**
* Extracts TrueType control points, and stores them in an allocated array pointed to
* by *pointArray. This function returns the number of extracted points.
*
* @param ttf pointer to the TrueTypeFont structure
* @param glyphID Glyph ID
* @param pointArray Return value - address of the pointer to the first element of the array
* of points allocated by the function
* @return Returns the number of points in *pointArray or -1 if glyphID is
* invalid.
* @ingroup sft
*
*/
int GetTTGlyphPoints(AbstractTrueTypeFont *ttf, sal_uInt32 glyphID, std::vector<ControlPoint>& pointArray);
/**
* Extracts raw glyph data from the 'glyf' table and returns it in an allocated
* GlyphData structure.
*
* @param ttf pointer to the TrueTypeFont structure
* @param glyphID Glyph ID
*
* @return pointer to an allocated GlyphData structure or NULL if
* glyphID is not present in the font
* @ingroup sft
*
*/
std::unique_ptr<GlyphData> GetTTRawGlyphData(AbstractTrueTypeFont *ttf, sal_uInt32 glyphID);
/**
* For a specified glyph adds all component glyphs IDs to the list and
* return their number. If the glyph is a single glyph it has one component
* glyph (which is added to the list) and the function returns 1.
* For a composite glyphs it returns the number of component glyphs
* and adds all of them to the list.
*
* @param ttf pointer to the TrueTypeFont structure
* @param glyphID Glyph ID
* @param glyphlist list of glyphs
*
* @return number of component glyphs
* @ingroup sft
*
*/
int GetTTGlyphComponents(AbstractTrueTypeFont *ttf, sal_uInt32 glyphID, std::vector< sal_uInt32 >& glyphlist);
/**
* Extracts all Name Records from the font and stores them in an allocated
* array of NameRecord structs
*
* @param ttf pointer to the TrueTypeFont struct
* @param nr reference to the vector of NameRecord structs
*
* @ingroup sft
*/
void GetTTNameRecords(AbstractTrueTypeFont const *ttf, std::vector<NameRecord>& nr);
/**
* Generates a new TrueType font and dumps it to <b>outf</b> file.
* This function substitutes glyph 0 for all glyphIDs that are not found in the font.
* @param ttf pointer to the TrueTypeFont structure
* @param fname file name for the output TrueType font file
* @param glyphArray pointer to an array of glyphs that are to be extracted from ttf. The first
* element of this array has to be glyph 0 (default glyph)
* @param encoding array of encoding values. encoding[i] specifies character code for
* the glyphID glyphArray[i]. Character code 0 usually points to a default
* glyph (glyphID 0)
* @param nGlyphs number of glyph IDs in glyphArray and encoding values in encoding
* @param flags or'ed TTCreationFlags
* @return return the value of SFErrCodes enum
* @see SFErrCodes
* @ingroup sft
*
*/
VCL_DLLPUBLIC SFErrCodes CreateTTFromTTGlyphs(AbstractTrueTypeFont *ttf,
std::vector<sal_uInt8>& rOutBuffer,
sal_uInt16 const *glyphArray,
sal_uInt8 const *encoding,
int nGlyphs);
VCL_DLLPUBLIC bool CreateTTFfontSubset(AbstractTrueTypeFont& aTTF,
std::vector<sal_uInt8>& rOutBuffer,
const sal_GlyphId* pGlyphIds,
const sal_uInt8* pEncoding,
int nGlyphCount, FontSubsetInfo& rInfo);
/**
* Returns global font information about the TrueType font.
* @see TTGlobalFontInfo
*
* @param ttf pointer to a TrueTypeFont structure
* @param info pointer to a TTGlobalFontInfo structure
* @ingroup sft
*
*/
VCL_DLLPUBLIC void GetTTGlobalFontInfo(AbstractTrueTypeFont *ttf, TTGlobalFontInfo *info);
/**
* Returns part of the head table info, normally collected by GetTTGlobalFontInfo.
*
* Just implemented separate, because this info not available via Qt API.
*
* @param ttf pointer to a AbstractTrueTypeFont structure
* @param xMin global glyph bounding box min X
* @param yMin global glyph bounding box min Y
* @param xMax global glyph bounding box max X
* @param yMax global glyph bounding box max Y
* @param macStyle encoded Mac style flags of the font
* @return true, if table data could be decoded
* @ingroup sft
*/
VCL_DLLPUBLIC bool GetTTGlobalFontHeadInfo(const AbstractTrueTypeFont *ttf, int& xMin, int& yMin, int& xMax, int& yMax, sal_uInt16& macStyle);
/*- private definitions */
/* indexes into TrueTypeFont::tables[] and TrueTypeFont::tlens[] */
constexpr int O_maxp = 0;
constexpr int O_glyf = 1; /* 'glyf' */
constexpr int O_head = 2; /* 'head' */
constexpr int O_loca = 3; /* 'loca' */
constexpr int O_name = 4; /* 'name' */
constexpr int O_hhea = 5; /* 'hhea' */
constexpr int O_hmtx = 6; /* 'hmtx' */
constexpr int O_cmap = 7; /* 'cmap' */
constexpr int O_vhea = 8; /* 'vhea' */
constexpr int O_vmtx = 9; /* 'vmtx' */
constexpr int O_OS2 = 10; /* 'OS/2' */
constexpr int O_post = 11; /* 'post' */
constexpr int O_cvt = 12; /* 'cvt_' - only used in TT->TT generation */
constexpr int O_prep = 13; /* 'prep' - only used in TT->TT generation */
constexpr int O_fpgm = 14; /* 'fpgm' - only used in TT->TT generation */
constexpr int O_CFF = 15; /* 'CFF' */
constexpr int NUM_TAGS = 16;
class VCL_DLLPUBLIC AbstractTrueTypeFont
{
std::string m_sFileName;
sal_uInt32 m_nGlyphs;
sal_uInt32 m_nHorzMetrics;
sal_uInt32 m_nVertMetrics; /* if not 0 => font has vertical metrics information */
sal_uInt32 m_nUnitsPerEm;
std::vector<sal_uInt32> m_aGlyphOffsets;
FontCharMapRef m_xCharMap;
bool m_bMicrosoftSymbolEncoded;
protected:
SFErrCodes indexGlyphData();
public:
AbstractTrueTypeFont(const char* fileName = nullptr, const FontCharMapRef xCharMap = nullptr);
virtual ~AbstractTrueTypeFont();
SFErrCodes initialize();
std::string const & fileName() const { return m_sFileName; }
sal_uInt32 glyphCount() const { return m_nGlyphs; }
sal_uInt32 glyphOffset(sal_uInt32 glyphID) const;
sal_uInt32 horzMetricCount() const { return m_nHorzMetrics; }
sal_uInt32 vertMetricCount() const { return m_nVertMetrics; }
sal_uInt32 unitsPerEm() const { return m_nUnitsPerEm; }
bool IsMicrosoftSymbolEncoded() const { return m_bMicrosoftSymbolEncoded; }
virtual bool hasTable(sal_uInt32 ord) const = 0;
virtual const sal_uInt8* table(sal_uInt32 ord, sal_uInt32& size) const = 0;
OString psname;
OString family;
OUString ufamily;
OString subfamily;
OUString usubfamily;
};
class TrueTypeFont final : public AbstractTrueTypeFont
{
struct TTFontTable_
{
const sal_uInt8* pData = nullptr; /* pointer to a raw subtable in the SFNT file */
sal_uInt32 nSize = 0; /* table size */
};
std::array<struct TTFontTable_, NUM_TAGS> m_aTableList;
public:
sal_Int32 fsize;
sal_uInt8 *ptr;
sal_uInt32 ntables;
TrueTypeFont(const char* pFileName = nullptr, const FontCharMapRef xCharMap = nullptr);
~TrueTypeFont() override;
SFErrCodes open(sal_uInt32 facenum);
bool hasTable(sal_uInt32 ord) const override { return m_aTableList[ord].pData != nullptr; }
inline const sal_uInt8* table(sal_uInt32 ord, sal_uInt32& size) const override;
};
const sal_uInt8* TrueTypeFont::table(sal_uInt32 ord, sal_uInt32& size) const
{
if (ord >= NUM_TAGS)
{
size = 0;
return nullptr;
}
auto& rTable = m_aTableList[ord];
size = rTable.nSize;
return rTable.pData;
}
} // namespace vcl
#endif // INCLUDED_VCL_INC_SFT_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|