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
|
/*************************************************************************
** JFM.cpp **
** **
** This file is part of dvisvgm -- a fast DVI to SVG converter **
** Copyright (C) 2005-2016 Martin Gieseking <martin.gieseking@uos.de> **
** **
** 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 3 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, see <http://www.gnu.org/licenses/>. **
*************************************************************************/
#include <config.h>
#include <algorithm>
#include <cstring>
#include <fstream>
#include <sstream>
#include "JFM.h"
#include "StreamReader.h"
using namespace std;
JFM::JFM (istream &is) {
is.seekg(0);
StreamReader reader(is);
UInt16 id = UInt16(reader.readUnsigned(2)); // JFM ID (9 or 11)
if (id != 9 && id != 11) {
ostringstream oss;
oss << "invalid JFM identifier " << id << " (9 or 11 expected)";
throw FontMetricException(oss.str());
}
_vertical = (id == 9);
UInt16 nt = UInt16(reader.readUnsigned(2)); // length of character type table
UInt16 lf = UInt16(reader.readUnsigned(2)); // length of entire file in 4 byte words
UInt16 lh = UInt16(reader.readUnsigned(2)); // length of header in 4 byte words
UInt16 bc = UInt16(reader.readUnsigned(2)); // smallest character code in font
UInt16 ec = UInt16(reader.readUnsigned(2)); // largest character code in font
UInt16 nw = UInt16(reader.readUnsigned(2)); // number of words in width table
UInt16 nh = UInt16(reader.readUnsigned(2)); // number of words in height table
UInt16 nd = UInt16(reader.readUnsigned(2)); // number of words in depth table
UInt16 ni = UInt16(reader.readUnsigned(2)); // number of words in italic corr. table
UInt16 nl = UInt16(reader.readUnsigned(2)); // number of words in glue/kern table
UInt16 nk = UInt16(reader.readUnsigned(2)); // number of words in kern table
UInt16 ng = UInt16(reader.readUnsigned(2)); // number of words in glue table
UInt16 np = UInt16(reader.readUnsigned(2)); // number of font parameter words
if (7+nt+lh+(ec-bc+1)+nw+nh+nd+ni+nl+nk+ng+np != lf)
throw FontMetricException("inconsistent length values");
setCharRange(bc, ec);
readHeader(reader);
is.seekg(28+lh*4);
readTables(reader, nt, nw, nh, nd, ni);
is.seekg(4*(lf-np), ios::beg);
readParameters(reader, np); // JFM files provide 9 parameters but we don't need all of them
}
void JFM::readTables (StreamReader &reader, int nt, int nw, int nh, int nd, int ni) {
// determine smallest charcode with chartype > 0
UInt16 minchar=0xFFFF, maxchar=0;
for (int i=0; i < nt; i++) {
UInt16 c = (UInt16)reader.readUnsigned(2);
UInt16 t = (UInt16)reader.readUnsigned(2);
if (t > 0) {
minchar = min(minchar, c);
maxchar = max(maxchar, c);
}
}
// build charcode to chartype map
if (minchar <= maxchar) {
_minchar = minchar;
_charTypeTable.resize(maxchar-minchar+1);
memset(&_charTypeTable[0], 0, nt*sizeof(UInt16));
reader.seek(-nt*4, ios::cur);
for (int i=0; i < nt; i++) {
UInt16 c = (UInt16)reader.readUnsigned(2);
UInt16 t = (UInt16)reader.readUnsigned(2);
if (c >= minchar)
_charTypeTable[c-minchar] = t;
}
}
TFM::readTables(reader, nw, nh, nd, ni);
}
int JFM::charIndex (int c) const {
UInt16 chartype = 0;
if (!_charTypeTable.empty() && c >= _minchar && size_t(c) < _minchar+_charTypeTable.size())
chartype = _charTypeTable[c-_minchar];
return TFM::charIndex(chartype);
}
|