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
|
/* epdf.c
Copyright 1996-2006 Han The Thanh <thanh@pdftex.org>
Copyright 2006-2009 Taco Hoekwater <taco@luatex.org>
This file is part of LuaTeX.
LuaTeX 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.
LuaTeX 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 Lesser General Public
License for more details.
You should have received a copy of the GNU General Public License along
with LuaTeX; if not, see <http://www.gnu.org/licenses/>. */
#include "ptexlib.h"
#include <kpathsea/c-vararg.h>
#include <kpathsea/c-proto.h>
#include <string.h>
static const char _svn_version[] =
"$Id: epdf.c 2331 2009-04-18 16:39:50Z hhenkel $ "
"$URL: http://scm.foundry.supelec.fr/svn/luatex/trunk/source/texk/web2c/luatexdir/image/epdf.c $";
fd_entry *epdf_create_fontdescriptor(fm_entry * fm, int stemV)
{
fd_entry *fd;
if ((fd = lookup_fd_entry(fm->ff_name, fm->slant, fm->extend)) == NULL) {
fm->in_use = true;
fd = new_fd_entry();
fd->fm = fm;
register_fd_entry(fd);
fd->fd_objnum = pdf_new_objnum();
assert(fm->ps_name != NULL);
fd->fontname = xstrdup(fm->ps_name); /* just fallback */
// stemV must be copied
fd->font_dim[STEMV_CODE].val = stemV;
fd->font_dim[STEMV_CODE].set = true;
fd->gl_tree = avl_create(comp_string_entry, NULL, &avl_xallocator);
assert(fd->gl_tree != NULL);
}
return fd;
}
/***********************************************************************
* Mark glyphs used by embedded PDF file:
* 1. build fontdescriptor, if not yet existing
* 2. mark glyphs directly there
*
* Input charset from xpdf is a string of glyph names including
* leading slashes, but without blanks between them, like: /a/b/c
***********************************************************************/
void epdf_mark_glyphs(fd_entry * fd, char *charset)
{
char *p, *q, *s;
char *glyph;
void **aa;
if (charset == NULL)
return;
assert(fd != NULL);
for (s = charset + 1, q = charset + strlen(charset); s < q; s = p + 1) {
for (p = s; *p != '\0' && *p != '/'; p++);
*p = '\0';
if ((char *) avl_find(fd->gl_tree, s) == NULL) {
glyph = xstrdup(s);
aa = avl_probe(fd->gl_tree, glyph);
assert(aa != NULL);
}
}
}
void epdf_free(void)
{
epdf_check_mem();
}
|