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
|
/*---------------------------------------------------------------------------*
| PDFlib - A library for generating PDF on the fly |
+---------------------------------------------------------------------------+
| Copyright (c) 1997-2006 Thomas Merz and PDFlib GmbH. All rights reserved. |
+---------------------------------------------------------------------------+
| |
| This software is subject to the PDFlib license. It is NOT in the |
| public domain. Extended versions and commercial licenses are |
| available, please check http://www.pdflib.com. |
| |
*---------------------------------------------------------------------------*/
/* $Id: ft_generr.h,v 1.1 2008/10/17 06:10:43 scuri Exp $
*
* FONT error messages
*
*/
#define FT_GENERR_H
#if fnt_genNames
#define gen(n, num, nam, msg) FNT_E_##nam = num,
#elif fnt_genInfo
#define gen(n, num, nam, msg) { n, num, msg, (const char *) 0 },
#else
#error invalid inclusion of generator file
#endif
/* -------------------------------------------------------------------- */
/* Font (70xx) */
/* -------------------------------------------------------------------- */
gen(1, 7000, FONT_ILLFONTSTYLE, "Illegal fontstyle '$1' in font name")
gen(1, 7001, FONT_PREFIX, "Font '$1': ")
gen(0, 7002, FONT_HOSTNOTFOUND, "Host font not found")
gen(1, 7004, FONT_UNSUPP_FORMAT, "Font format '$1' not supported")
gen(0, 7006, FONT_TTHOSTNOTFOUND, "TrueType host font not found")
gen(1, 7007, FONT_NAMETOOLONG,
"Font name too long (max. $1 characters)")
gen(0, 7060, TT_BITMAP, "TrueType bitmap font not supported")
gen(1, 7062, TT_NOFONT, "Font file '%s' is not a TrueType or OpenType font")
gen(0, 7064, TT_BADCMAP, "Font contains unknown encodings (cmaps) only")
gen(0, 7066, TT_SYMBOLOS2, "Symbol font does not contain OS/2 table")
gen(0, 7068, TT_EMBED,
"Font cannot be embedded due to licensing restrictions in the font file")
gen(0, 7070, TT_ASSERT1, "TrueType parser error")
gen(0, 7071, TT_CORRUPT1, "Corrupt TrueType font")
gen(1, 7072, TT_ASSERT2, "TrueType parser error in font file '$1'")
gen(1, 7073, TT_CORRUPT2, "Corrupt TrueType font file '$1'")
gen(1, 7074, TTC_NOTFOUND,
"Font not found in TrueType Collection file '$1'")
gen(0, 7076, TT_NOGLYFDESC,
"TrueType font does not contain any character outlines")
gen(1, 7077, TT_GLYPHIDNOTFOUND,
"Couldn't find glyph id for Unicode value U+$1")
gen(0, 7078, TT_NONAME,
"TrueType font contains only unsupported records in 'name' table")
gen(1, 7079, TT_BADPOST,
"TrueType 'post' table has unknown reserved character index $1")
gen(1, 7080, OT_CHARSET,
"OpenType font with predefined charset '$1' in CFF table not supported")
gen(0, 7081, OT_MULTIFONT,
"OpenType font with multiple font entries not supported")
gen(0, 7082, OT_CHARSTRINGS,
"OpenType font has no CharStrings data in CFF table")
gen(0, 7083, OT_TOPDICT,
"OpenType CID font has no Top DICT INDEX in CFF table")
gen(0, 7085, OT_NO_ORDERING,
"OpenType CID font has no ordering string in CFF table")
gen(1, 7086, OT_ILL_CHARCOLL,
"OpenType CID font has unknown character collection '$1'")
#undef gen
#undef fnt_genNames
#undef fnt_genInfo
|