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
|
/* This is dvipdfmx, an eXtended version of dvipdfm by Mark A. Wicks.
Copyright (C) 2002-2015 by Jin-Hwan Cho and Shunsaku Hirata,
the dvipdfmx project team.
Copyright (C) 1998, 1999 by Mark A. Wicks <mwicks@kettering.edu>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
*/
#ifndef _FONTMAP_H_
#define _FONTMAP_H_
#define FONTMAP_RMODE_REPLACE 0
#define FONTMAP_RMODE_APPEND '+'
#define FONTMAP_RMODE_REMOVE '-'
#define FONTMAP_OPT_NOEMBED (1 << 1)
#define FONTMAP_OPT_VERT (1 << 2)
#define FONTMAP_STYLE_NONE 0
#define FONTMAP_STYLE_BOLD 1
#define FONTMAP_STYLE_ITALIC 2
#define FONTMAP_STYLE_BOLDITALIC 3
/* Options */
typedef struct fontmap_opt {
/* Synthetic font */
double slant, extend, bold;
/* comaptibility and other flags */
int mapc, flags;
char *otl_tags; /* currently unused */
char *tounicode; /* not implemented yet */
void *cff_charsets;
double design_size; /* unused */
char *charcoll; /* Adobe-Japan1-4, etc. */
int index; /* TTC index */
int style; /* ,Bold, etc. */
int stemv; /* StemV value especially for CJK fonts */
} fontmap_opt;
typedef struct fontmap_rec {
char *map_name;
char *font_name;
char *enc_name;
/* Subfont mapping: translate 8-bit charcode to 16-bit charcode
* via SFD.
*/
struct {
char *sfd_name;
char *subfont_id;
} charmap;
fontmap_opt opt;
} fontmap_rec;
extern void pdf_fontmap_set_verbose (void);
extern void pdf_init_fontmaps (void);
#if 0
extern void pdf_clear_fontmaps (void);
#endif
extern void pdf_close_fontmaps (void);
extern void pdf_init_fontmap_record (fontmap_rec *mrec);
extern void pdf_clear_fontmap_record (fontmap_rec *mrec);
extern int pdf_load_fontmap_file (const char *filename, int mode);
extern int pdf_read_fontmap_line (fontmap_rec *mrec, const char *mline, int mline_strlen, int format);
extern int pdf_append_fontmap_record (const char *kp, const fontmap_rec *mrec);
extern int pdf_remove_fontmap_record (const char *kp);
extern fontmap_rec *pdf_insert_fontmap_record (const char *kp, const fontmap_rec *mrec);
extern fontmap_rec *pdf_lookup_fontmap_record (const char *kp);
extern int is_pdfm_mapline (const char *mline);
extern fontmap_rec *pdf_insert_native_fontmap_record (const char *filename, uint32_t index,
int layout_dir, int extend, int slant, int embolden);
#endif /* _FONTMAP_H_ */
|