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
|
/*
* $Id$
* Copyright (C) 2001 The Apache Software Foundation. All rights reserved.
* For details on use and redistribution please refer to the
* LICENSE file included with these sources.
*/
package org.apache.fop.render.pdf;
import org.apache.fop.render.pdf.fonts.*;
import org.xml.sax.helpers.DefaultHandler;
import org.xml.sax.XMLReader;
import org.xml.sax.SAXException;
import org.xml.sax.InputSource;
import org.xml.sax.Locator;
import org.xml.sax.Attributes;
import java.io.IOException;
import java.util.Enumeration;
import java.util.ArrayList;
import java.util.Hashtable;
import org.apache.fop.pdf.PDFWArray;
import org.apache.fop.pdf.PDFCIDFont;
import org.apache.fop.configuration.ConfigurationReader;
import org.apache.fop.apps.FOPException;
/**
* Class for reading a metric.xml file and creating a font object.
* Typical usage:
* <pre>
* FontReader reader = new FontReader(<path til metrics.xml>);
* reader.setFontEmbedPath(<path to a .ttf or .pfb file or null to diable embedding>);
* reader.useKerning(true);
* Font f = reader.getFont();
* </pre>
*/
public class FontReader extends DefaultHandler {
private Locator locator = null;
private boolean isCID = false;
private MultiByteFont multiFont = null;
private SingleByteFont singleFont = null;
private Font returnFont = null;
// private SingleByteFont singleFont = null;
private String text = null;
private ArrayList cidWidths = null;
private int cidWidthIndex = 0;
private Hashtable currentKerning = null;
private ArrayList bfranges = null;
private void createFont(String path) throws FOPException {
XMLReader parser = ConfigurationReader.createParser();
if (parser == null)
throw new FOPException("Unable to create SAX parser");
try {
parser.setFeature("http://xml.org/sax/features/namespace-prefixes",
false);
} catch (SAXException e) {
throw new FOPException("You need a SAX parser which supports SAX version 2",
e);
}
parser.setContentHandler(this);
try {
parser.parse(path);
} catch (SAXException e) {
throw new FOPException(e);
} catch (IOException e) {
throw new FOPException(e);
}
}
/**
* Sets the path to embed a font. a null value disables font embedding
*/
public void setFontEmbedPath(String path) {
if (isCID)
multiFont.embedFileName = path;
else
singleFont.embedFileName = path;
}
/**
* Enable/disable use of kerning for the font
*/
public void useKerning(boolean kern) {
if (isCID)
multiFont.useKerning = true;
else
singleFont.useKerning = true;
}
/**
* Get the generated font object
*/
public Font getFont() {
return returnFont;
}
/**
* Construct a FontReader object from a path to a metric.xml file
* and read metric data
*/
public FontReader(String path) throws FOPException {
createFont(path);
}
public void startDocument() {}
public void setDocumentLocator(Locator locator) {
this.locator = locator;
}
public void startElement(String uri, String localName, String qName,
Attributes attributes) {
if (localName.equals("font-metrics")) {
if ("TYPE0".equals(attributes.getValue("type"))) {
multiFont = new MultiByteFont();
returnFont = multiFont;
isCID = true;
} else if ("TRUETYPE".equals(attributes.getValue("type"))) {
singleFont = new SingleByteFont();
singleFont.subType = org.apache.fop.pdf.PDFFont.TRUETYPE;
returnFont = singleFont;
isCID = false;
} else {
singleFont = new SingleByteFont();
singleFont.subType = org.apache.fop.pdf.PDFFont.TYPE1;
returnFont = singleFont;
isCID = false;
}
} else if ("embed".equals(localName)) {
if (isCID) {
// This *is* annoying... should create a common
// interface for sing/multibytefonts...
multiFont.embedFileName = attributes.getValue("file");
multiFont.embedResourceName = attributes.getValue("class");
} else {
singleFont.embedFileName = attributes.getValue("file");
singleFont.embedResourceName = attributes.getValue("class");
}
} else if ("cid-widths".equals(localName)) {
cidWidthIndex = getInt(attributes.getValue("start-index"));
cidWidths = new ArrayList();
} else if ("kerning".equals(localName)) {
currentKerning = new Hashtable();
if (isCID)
multiFont.kerning.put(new Integer(attributes.getValue("kpx1")),
currentKerning);
else
singleFont.kerning.put(new Integer(attributes.getValue("kpx1")),
currentKerning);
} else if ("bfranges".equals(localName)) {
bfranges = new ArrayList();
} else if ("bf".equals(localName)) {
BFEntry entry = new BFEntry();
entry.unicodeStart = getInt(attributes.getValue("us"));
entry.unicodeEnd = getInt(attributes.getValue("ue"));
entry.glyphStartIndex = getInt(attributes.getValue("gi"));
bfranges.add(entry);
} else if ("wx".equals(localName)) {
cidWidths.add(new Integer(attributes.getValue("w")));
} else if ("widths".equals(localName)) {
singleFont.width = new int[256];
} else if ("char".equals(localName)) {
try {
singleFont.width[Integer.parseInt(attributes.getValue("idx"))] =
Integer.parseInt(attributes.getValue("wdt"));
} catch (NumberFormatException ne) {
System.out.println("Malformed width in metric file: "
+ ne.getMessage());
}
} else if ("pair".equals(localName)) {
currentKerning.put(new Integer(attributes.getValue("kpx2")),
new Integer(attributes.getValue("kern")));
}
}
private int getInt(String str) {
int ret = 0;
try {
ret = Integer.parseInt(str);
} catch (Exception e) {}
return ret;
}
public void endElement(String uri, String localName, String qName) {
if ("font-name".equals(localName))
if (isCID)
multiFont.fontName = text;
else
singleFont.fontName = text;
if ("ttc-name".equals(localName) && isCID)
multiFont.ttcName = text;
else if ("cap-height".equals(localName))
if (isCID)
multiFont.capHeight = getInt(text);
else
singleFont.capHeight = getInt(text);
else if ("x-height".equals(localName))
if (isCID)
multiFont.xHeight = getInt(text);
else
singleFont.xHeight = getInt(text);
else if ("ascender".equals(localName))
if (isCID)
multiFont.ascender = getInt(text);
else
singleFont.ascender = getInt(text);
else if ("descender".equals(localName))
if (isCID)
multiFont.descender = getInt(text);
else
singleFont.descender = getInt(text);
else if ("left".equals(localName))
if (isCID)
multiFont.fontBBox[0] = getInt(text);
else
singleFont.fontBBox[0] = getInt(text);
else if ("bottom".equals(localName))
if (isCID)
multiFont.fontBBox[1] = getInt(text);
else
singleFont.fontBBox[1] = getInt(text);
else if ("right".equals(localName))
if (isCID)
multiFont.fontBBox[2] = getInt(text);
else
singleFont.fontBBox[2] = getInt(text);
else if ("first-char".equals(localName))
singleFont.firstChar = getInt(text);
else if ("last-char".equals(localName))
singleFont.lastChar = getInt(text);
else if ("top".equals(localName))
if (isCID)
multiFont.fontBBox[3] = getInt(text);
else
singleFont.fontBBox[3] = getInt(text);
else if ("flags".equals(localName))
if (isCID)
multiFont.flags = getInt(text);
else
singleFont.flags = getInt(text);
else if ("stemv".equals(localName))
if (isCID)
multiFont.stemV = getInt(text);
else
singleFont.stemV = getInt(text);
else if ("italic-angle".equals(localName))
if (isCID)
multiFont.italicAngle = getInt(text);
else
singleFont.italicAngle = getInt(text);
else if ("missing-width".equals(localName))
if (isCID)
multiFont.missingWidth = getInt(text);
else
singleFont.missingWidth = getInt(text);
else if ("cid-type".equals(localName)) {
if ("CIDFontType2".equals(text))
multiFont.cidType = PDFCIDFont.CID_TYPE2;
} else if ("default-width".equals(localName)) {
multiFont.defaultWidth = getInt(text);
} else if ("cid-widths".equals(localName)) {
int[] wds = new int[cidWidths.size()];
int j = 0;
for (int count = 0; count < cidWidths.size(); count++) {
Integer i = (Integer)cidWidths.get(count);
wds[j++] = i.intValue();
}
multiFont.warray.addEntry(cidWidthIndex, wds);
multiFont.width = wds;
} else if ("bfranges".equals(localName)) {
multiFont.bfentries = (BFEntry[])bfranges.toArray(new BFEntry[0]);
}
}
public void characters(char[] ch, int start, int length) {
char c[] = new char[length];
System.arraycopy(ch, start, c, 0, length);
text = new String(c);
}
}
|