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
|
/* Copyright (C) 2000 Aladdin Enterprises. All rights reserved.
This file is part of AFPL Ghostscript.
AFPL Ghostscript is distributed with NO WARRANTY OF ANY KIND. No author or
distributor accepts any responsibility for the consequences of using it, or
for whether it serves any particular purpose or works at all, unless he or
she says so in writing. Refer to the Aladdin Free Public License (the
"License") for full details.
Every copy of AFPL Ghostscript must include a copy of the License, normally
in a plain ASCII text file named PUBLIC. The License grants you the right
to copy, modify and redistribute AFPL Ghostscript, but only under certain
conditions described in the License. Among other things, the License
requires that the copyright notice and this notice be preserved on all
copies.
*/
/*$Id$ */
/* Embedded font writing for pdfwrite driver. */
#include "memory_.h"
#include "string_.h"
#include "gx.h"
#include "gserrors.h"
#include "gsmatrix.h"
#include "gxfcid.h"
#include "gxfont.h"
#include "gxfont0.h"
#include "gdevpdfx.h"
#include "gdevpdff.h"
#include "gdevpsf.h"
#include "scommon.h"
/* ---------------- Utilities ---------------- */
/* Begin writing FontFile* data. */
private int
pdf_begin_fontfile(gx_device_pdf *pdev, long FontFile_id,
const char *entries, long len1, pdf_data_writer_t *pdw)
{
stream *s;
pdf_open_separate(pdev, FontFile_id);
s = pdev->strm;
stream_puts(s, "<<");
if (entries)
stream_puts(pdev->strm, entries);
if (len1 >= 0)
pprintld1(pdev->strm, "/Length1 %ld", len1);
return pdf_begin_data(pdev, pdw);
}
/* Finish writing FontFile* data. */
private int
pdf_end_fontfile(gx_device_pdf *pdev, pdf_data_writer_t *pdw)
{
return pdf_end_data(pdw);
}
/* ---------------- Individual font types ---------------- */
/* ------ Type 1 family ------ */
/*
* Acrobat Reader apparently doesn't accept CFF fonts with Type 1
* CharStrings, so we need to convert them. Also remove lenIV,
* so Type 2 fonts will compress better.
*/
#define TYPE2_OPTIONS (WRITE_TYPE2_NO_LENIV | WRITE_TYPE2_CHARSTRINGS)
/* Write the FontFile[3] data for an embedded Type 1, Type 2, or */
/* CIDFontType 0 font. */
private int
pdf_embed_font_as_type1(gx_device_pdf *pdev, gs_font_type1 *font,
long FontFile_id, gs_glyph subset_glyphs[256],
uint subset_size, const gs_const_string *pfname)
{
stream poss;
int lengths[3];
int code;
pdf_data_writer_t writer;
#define MAX_INT_CHARS ((sizeof(int) * 8 + 2) / 3)
char lengths_str[9 + MAX_INT_CHARS + 11]; /* /Length2 %d/Length3 0\0 */
#undef MAX_INT_CHARS
swrite_position_only(&poss);
/*
* We omit the 512 zeros and the cleartomark, and set Length3 to 0.
* Note that the interpreter adds them implicitly (per documentation),
* so we must set MARK so that the encrypted portion pushes a mark on
* the stack.
*
* NOTE: the options were set to 0 in the first checked-in version of
* this file. We can't explain this: Acrobat Reader requires eexec
* encryption, so the code can't possibly have worked.
*
* Acrobat Reader 3 allows lenIV = -1 in Type 1 fonts, but Acrobat
* Reader 4 doesn't. Therefore, we can't allow it.
*/
#define TYPE1_OPTIONS (WRITE_TYPE1_EEXEC | WRITE_TYPE1_EEXEC_MARK |\
WRITE_TYPE1_WITH_LENIV)
code = psf_write_type1_font(&poss, font, TYPE1_OPTIONS,
subset_glyphs, subset_size, pfname, lengths);
if (code < 0)
return code;
sprintf(lengths_str, "/Length2 %d/Length3 0", lengths[1]);
code = pdf_begin_fontfile(pdev, FontFile_id, lengths_str, lengths[0],
&writer);
if (code < 0)
return code;
code = psf_write_type1_font(writer.binary.strm, font, TYPE1_OPTIONS,
subset_glyphs, subset_size, pfname,
lengths /*ignored*/);
#undef TYPE1_OPTIONS
pdf_end_fontfile(pdev, &writer);
return code;
}
/* Embed a font as Type 2. */
private int
pdf_embed_font_as_type2(gx_device_pdf *pdev, gs_font_type1 *font,
long FontFile_id, gs_glyph subset_glyphs[256],
uint subset_size, const gs_const_string *pfname)
{
int code;
pdf_data_writer_t writer;
int options = TYPE2_OPTIONS |
(pdev->CompatibilityLevel < 1.3 ? WRITE_TYPE2_AR3 : 0);
code = pdf_begin_fontfile(pdev, FontFile_id, "/Subtype/Type1C", -1L,
&writer);
if (code < 0)
return code;
code = psf_write_type2_font(writer.binary.strm, font, options,
subset_glyphs, subset_size, pfname);
pdf_end_fontfile(pdev, &writer);
return code;
}
/* Embed a Type 1 or Type 2 font. */
private int
pdf_embed_font_type1(gx_device_pdf *pdev, gs_font_type1 *font,
long FontFile_id, gs_glyph subset_glyphs[256],
uint subset_size, const gs_const_string *pfname)
{
switch (((const gs_font *)font)->FontType) {
case ft_encrypted:
if (pdev->CompatibilityLevel < 1.2)
return pdf_embed_font_as_type1(pdev, font, FontFile_id,
subset_glyphs, subset_size, pfname);
/* For PDF 1.2 and later, write Type 1 fonts as Type1C. */
case ft_encrypted2:
return pdf_embed_font_as_type2(pdev, font, FontFile_id,
subset_glyphs, subset_size, pfname);
default:
return_error(gs_error_rangecheck);
}
}
/* Embed a CIDFontType0 font. */
private int
pdf_embed_font_cid0(gx_device_pdf *pdev, gs_font_cid0 *font,
long FontFile_id, const byte *subset_cids,
uint subset_size, const gs_const_string *pfname)
{
int code;
pdf_data_writer_t writer;
if (pdev->CompatibilityLevel < 1.2)
return_error(gs_error_rangecheck);
code = pdf_begin_fontfile(pdev, FontFile_id, "/Subtype/CIDFontType0C", -1L,
&writer);
if (code < 0)
return code;
code = psf_write_cid0_font(writer.binary.strm, font, TYPE2_OPTIONS,
subset_cids, subset_size, pfname);
pdf_end_fontfile(pdev, &writer);
return code;
}
/* ------ TrueType family ------ */
/* Embed a TrueType font. */
private int
pdf_embed_font_type42(gx_device_pdf *pdev, gs_font_type42 *font,
long FontFile_id, gs_glyph subset_glyphs[256],
uint subset_size, const gs_const_string *pfname)
{
/* Acrobat Reader 3 doesn't handle cmap format 6 correctly. */
const int options = WRITE_TRUETYPE_CMAP | WRITE_TRUETYPE_NAME |
(pdev->CompatibilityLevel <= 1.2 ?
WRITE_TRUETYPE_NO_TRIMMED_TABLE : 0);
stream poss;
int code;
pdf_data_writer_t writer;
swrite_position_only(&poss);
code = psf_write_truetype_font(&poss, font, options,
subset_glyphs, subset_size, pfname);
if (code < 0)
return code;
code = pdf_begin_fontfile(pdev, FontFile_id, NULL, stell(&poss), &writer);
if (code < 0)
return code;
psf_write_truetype_font(writer.binary.strm, font, options,
subset_glyphs, subset_size, pfname);
pdf_end_fontfile(pdev, &writer);
return 0;
}
/* Embed a CIDFontType2 font. */
private int
pdf_embed_font_cid2(gx_device_pdf *pdev, gs_font_cid2 *font,
long FontFile_id, const byte *subset_bits,
uint subset_size, const gs_const_string *pfname)
{
/* CIDFontType 2 fonts don't use cmap, name, OS/2, or post. */
#define OPTIONS 0
int code;
pdf_data_writer_t writer;
code = pdf_begin_fontfile(pdev, FontFile_id, NULL, -1L, &writer);
if (code < 0)
return code;
psf_write_cid2_font(writer.binary.strm, font, OPTIONS,
subset_bits, subset_size, pfname);
#undef OPTIONS
pdf_end_fontfile(pdev, &writer);
return 0;
}
/* ---------------- Entry point ---------------- */
/*
* Write the FontDescriptor and FontFile* data for an embedded font.
* Return a rangecheck error if the font can't be embedded.
*/
int
pdf_write_embedded_font(gx_device_pdf *pdev, pdf_font_descriptor_t *pfd)
{
gs_font *font = pfd->base_font;
gs_const_string font_name;
byte *fnchars = pfd->FontName.chars;
uint fnsize = pfd->FontName.size;
bool do_subset;
long FontFile_id = pfd->FontFile_id;
gs_glyph subset_glyphs[256];
gs_glyph *subset_list = 0; /* for non-CID fonts */
byte *subset_bits = 0; /* for CID fonts */
uint subset_size = 0;
gs_matrix save_mat;
int code;
/* Determine whether to subset the font. */
switch (pfd->do_subset) {
case FONT_SUBSET_OK:
do_subset = pdev->params.SubsetFonts && pdev->params.MaxSubsetPct > 0;
break;
case FONT_SUBSET_YES:
do_subset = true;
break;
case FONT_SUBSET_NO:
do_subset = false;
break;
}
if (do_subset) {
int max_pct = pdev->params.MaxSubsetPct;
int used, i;
for (i = 0, used = 0; i < pfd->chars_used.size; ++i)
used += byte_count_bits[pfd->chars_used.data[i]];
/*
* We want to subset iff used / total <= MaxSubsetPct / 100, i.e.,
* iff total >= used * 100 / MaxSubsetPct. This observation
* allows us to stop the enumeration loop early.
*/
if (max_pct < 100) {
do_subset = false;
if (max_pct > 0) {
int max_total = used * 100 / max_pct;
int index, total;
gs_glyph ignore_glyph;
for (index = 0, total = 0;
(font->procs.enumerate_glyph(font, &index,
GLYPH_SPACE_INDEX,
&ignore_glyph), index != 0);
)
if (++total >= max_total) {
do_subset = true;
break;
}
}
}
}
/* Generate an appropriate font name. */
if (pdf_has_subset_prefix(fnchars, fnsize)) {
/* Strip off any existing subset prefix. */
fnsize -= SUBSET_PREFIX_SIZE;
memmove(fnchars, fnchars + SUBSET_PREFIX_SIZE, fnsize);
}
if (do_subset) {
memmove(fnchars + SUBSET_PREFIX_SIZE, fnchars, fnsize);
pdf_make_subset_prefix(pdev, fnchars, FontFile_id);
fnsize += SUBSET_PREFIX_SIZE;
}
font_name.data = fnchars;
font_name.size = pfd->FontName.size = fnsize;
code = pdf_write_FontDescriptor(pdev, pfd);
if (code >= 0) {
pfd->written = true;
/*
* Finally, write the font (or subset), using the original
* (unscaled) FontMatrix.
*/
save_mat = font->FontMatrix;
font->FontMatrix = pfd->orig_matrix;
switch (font->FontType) {
case ft_composite:
/* Nothing to embed -- the descendant fonts do it all. */
break;
case ft_encrypted:
case ft_encrypted2:
if (do_subset) {
subset_size = psf_subset_glyphs(subset_glyphs, font,
pfd->chars_used.data);
subset_list = subset_glyphs;
}
code = pdf_embed_font_type1(pdev, (gs_font_type1 *)font,
FontFile_id, subset_list,
subset_size, &font_name);
break;
case ft_TrueType:
if (do_subset) {
subset_size = psf_subset_glyphs(subset_glyphs, font,
pfd->chars_used.data);
subset_list = subset_glyphs;
}
code = pdf_embed_font_type42(pdev, (gs_font_type42 *)font,
FontFile_id, subset_list,
subset_size, &font_name);
break;
case ft_CID_encrypted:
if (do_subset) {
subset_size = pfd->chars_used.size << 3;
subset_bits = pfd->chars_used.data;
}
code = pdf_embed_font_cid0(pdev, (gs_font_cid0 *)font,
FontFile_id, subset_bits,
subset_size, &font_name);
break;
case ft_CID_TrueType:
if (do_subset) {
/*
* Note that the subset mask for CIDFontType 2 fonts is
* indexed by the TrueType glyph number, not the CID.
*/
subset_size = pfd->glyphs_used.size << 3;
subset_bits = pfd->glyphs_used.data;
}
code = pdf_embed_font_cid2(pdev, (gs_font_cid2 *)font,
FontFile_id, subset_bits,
subset_size, &font_name);
break;
default:
code = gs_note_error(gs_error_rangecheck);
}
font->FontMatrix = save_mat;
}
return code;
}
|