blob: 0fb1d5b76ef37232fe85a39b697c9a25272b72f9 (
about) (
plain)
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
|
/*
This file is part of LilyPond, the GNU music typesetter.
Copyright (C) 2004--2012 Han-Wen Nienhuys <hanwen@xs4all.nl>
LilyPond 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.
LilyPond 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 LilyPond. If not, see <http://www.gnu.org/licenses/>.
*/
#include <cstdlib>
#include <cstdio>
#include <cstring>
using namespace std;
#include "program-option.hh"
#include "source-file.hh"
#include "memory-stream.hh"
#include "open-type-font.hh"
#include "main.hh"
#include "warn.hh"
char *
pfb2pfa (Byte const *pfb, int length)
{
char *out = (char *) malloc (sizeof (char));
long olen = 0;
Byte const *p = pfb;
while (p < pfb + length)
{
if (*p++ != 128)
break;
Byte type = *p++;
if (type == 3)
break;
unsigned seglen
= p[0] | (p[1] << 8)
| (p[2] << 16) | (p[3] << 24);
p += 4;
if (type == 1)
{
out = (char *)realloc (out, olen + seglen + 1);
char *outp = out + olen;
memcpy (outp, p, seglen);
olen += seglen;
p += seglen;
}
else if (type == 2)
{
unsigned outlength = (seglen * 2) + (seglen / 32) + 2;
out = (char *)realloc (out, olen + outlength + 1);
char *outp = out + olen;
for (int i = seglen; i--;)
{
sprintf (outp, "%02x", *p++);
outp += 2;
if (! (i % 32))
*outp++ = '\n';
}
olen = outp - out;
}
}
out[olen] = 0;
return out;
}
|