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
|
/*
* 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
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/* $Id$ */
package org.apache.fop.render.afp.modca;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.io.UnsupportedEncodingException;
import java.util.Iterator;
import java.util.List;
import org.apache.fop.render.afp.exceptions.FontRuntimeException;
import org.apache.fop.render.afp.fonts.AFPFont;
import org.apache.fop.render.afp.fonts.CharacterSet;
import org.apache.fop.render.afp.fonts.OutlineFont;
import org.apache.fop.render.afp.fonts.RasterFont;
import org.apache.fop.render.afp.tools.BinaryUtils;
/**
* The Map Coded Font structured field maps a unique coded font resource local
* ID, which may be embedded one or more times within an object's data and
* descriptor, to the identifier of a coded font resource object. Additionally,
* the Map Coded Font structured field specifies a set of resource attributes
* for the coded font.
*
* @author <a href="mailto:pete@townsend.uk.com">Pete Townsend </a>
*/
public class MapCodedFont extends AbstractAFPObject {
/**
* The collection of map coded fonts (maximum of 254)
*/
private List fontList = null;
/**
* Constructor for the MapCodedFont
*/
public MapCodedFont() {
fontList = new java.util.ArrayList();
}
/**
* Accessor method to write the AFP datastream for the Map Coded Font
* @param os The stream to write to
* @throws java.io.IOException an I/O exception of some sort has occurred
*/
public void writeDataStream(OutputStream os) throws IOException {
ByteArrayOutputStream baos = new ByteArrayOutputStream();
baos.write(0x5A);
baos.write(new byte[] {0x00, 0x00});
// Field identifier for a MapCodedFont
baos.write(new byte[] {(byte) 0xD3, (byte) 0xAB, (byte) 0x8A});
// Reserved
baos.write(new byte[] {0x00, 0x00, 0x00});
Iterator iter = fontList.iterator();
while (iter.hasNext()) {
FontDefinition fd = (FontDefinition) iter.next();
// Start of repeating groups (occurs 1 to 254)
baos.write(0x00);
if (fd.scale == 0) {
// Raster Font
baos.write(0x22); // Length of 34
} else {
// Outline Font
baos.write(0x3A); // Length of 58
}
// Font Character Set Name Reference
baos.write(0x0C);
baos.write(0x02);
baos.write((byte) 0x86);
baos.write(0x00);
baos.write(fd.characterSet);
// Font Code Page Name Reference
baos.write(0x0C);
baos.write(0x02);
baos.write((byte) 0x85);
baos.write(0x00);
baos.write(fd.codePage);
// Character Rotation
baos.write(0x04);
baos.write(0x26);
baos.write(fd.orientation);
baos.write(0x00);
// Resource Local Identifier
baos.write(0x04);
baos.write(0x24);
baos.write(0x05);
baos.write(fd.fontReferenceKey);
if (fd.scale != 0) {
// Outline Font (triplet '1F')
baos.write(0x14);
baos.write(0x1F);
baos.write(0x00);
baos.write(0x00);
baos.write(BinaryUtils.convert(fd.scale, 2)); // Height
baos.write(new byte[] {0x00, 0x00}); // Width
baos.write(new byte[] {0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00});
baos.write(0x60);
// Outline Font (triplet '5D')
baos.write(0x04);
baos.write(0x5D);
baos.write(BinaryUtils.convert(fd.scale, 2));
}
}
byte[] data = baos.toByteArray();
// Set the total record length
byte[] rl1 = BinaryUtils.convert(data.length - 1, 2);
data[1] = rl1[0];
data[2] = rl1[1];
os.write(data);
}
/**
* Add a font definition on the the map coded font object.
*
* @param fontReference
* the font number used as the resource identifier
* @param font
* the font
* @param size
* the size of the font
* @param orientation
* the orientation of the font
* @throws MaximumSizeExceededException if the maximum number of fonts have been exceeded
*/
public void addFont(int fontReference, AFPFont font, int size, int orientation)
throws MaximumSizeExceededException {
FontDefinition fd = new FontDefinition();
fd.fontReferenceKey = BinaryUtils.convert(fontReference)[0];
switch (orientation) {
case 90:
fd.orientation = 0x2D;
break;
case 180:
fd.orientation = 0x5A;
break;
case 270:
fd.orientation = (byte) 0x87;
break;
default:
fd.orientation = 0x00;
break;
}
try {
if (font instanceof RasterFont) {
RasterFont raster = (RasterFont) font;
CharacterSet cs = raster.getCharacterSet(size);
if (cs == null) {
String msg = "Character set not found for font "
+ font.getFontName() + " with point size " + size;
log.error(msg);
throw new FontRuntimeException(msg);
}
fd.characterSet = cs.getNameBytes();
if (fd.characterSet.length != 8) {
throw new IllegalArgumentException("The character set "
+ new String(fd.characterSet,
AFPConstants.EBCIDIC_ENCODING)
+ " must have a fixed length of 8 characters.");
}
fd.codePage = cs.getCodePage().getBytes(
AFPConstants.EBCIDIC_ENCODING);
if (fd.codePage.length != 8) {
throw new IllegalArgumentException("The code page "
+ new String(fd.codePage,
AFPConstants.EBCIDIC_ENCODING)
+ " must have a fixed length of 8 characters.");
}
} else if (font instanceof OutlineFont) {
OutlineFont outline = (OutlineFont) font;
CharacterSet cs = outline.getCharacterSet();
fd.characterSet = cs.getNameBytes();
// There are approximately 72 points to 1 inch or 20 1440ths per point.
fd.scale = ((size / 1000) * 20);
fd.codePage = cs.getCodePage().getBytes(
AFPConstants.EBCIDIC_ENCODING);
if (fd.codePage.length != 8) {
throw new IllegalArgumentException("The code page "
+ new String(fd.codePage,
AFPConstants.EBCIDIC_ENCODING)
+ " must have a fixed length of 8 characters.");
}
} else {
String msg = "Font of type " + font.getClass().getName()
+ " not recognized.";
log.error(msg);
throw new FontRuntimeException(msg);
}
if (fontList.size() > 253) {
// Throw an exception if the size is exceeded
throw new MaximumSizeExceededException();
} else {
fontList.add(fd);
}
} catch (UnsupportedEncodingException ex) {
throw new FontRuntimeException("Failed to create font "
+ " due to a UnsupportedEncodingException", ex);
}
}
/**
* Private utility class used as a container for font attributes
*/
private class FontDefinition {
/**
* The code page of the font
*/
private byte[] codePage;
/**
* The character set of the font
*/
private byte[] characterSet;
/**
* The font reference key
*/
private byte fontReferenceKey;
/**
* The orientation of the font
*/
private byte orientation;
/**
* The scale (only specified for outline fonts)
*/
private int scale = 0;
}
}
|