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
|
/* fontdump.c -- an "xxd -i" workalike for dumping binary fonts as source code */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
static int
hexdump(FILE *fo, FILE *fi)
{
int c, n;
n = 0;
c = fgetc(fi);
while (c != -1)
{
n += fprintf(fo, "%d,", c);
if (n > 72) {
fprintf(fo, "\n");
n = 0;
}
c = fgetc(fi);
}
return n;
}
int
main(int argc, char **argv)
{
FILE *fo;
FILE *fi;
char fontname[256];
char origname[256];
char *basename;
char *p;
int i, len;
if (argc < 3)
{
fprintf(stderr, "usage: fontdump output.c input.dat\n");
return 1;
}
fo = fopen(argv[1], "wb");
if (!fo)
{
fprintf(stderr, "fontdump: could not open output file '%s'\n", argv[1]);
return 1;
}
fprintf(fo, "#ifndef __STRICT_ANSI__\n");
fprintf(fo, "#if defined(__linux__) || defined(__FreeBSD__) || defined(__OpenBSD__)\n");
fprintf(fo, "#if !defined(__clang__) && !defined(__ICC)\n");
fprintf(fo, "#define HAVE_INCBIN\n");
fprintf(fo, "#endif\n");
fprintf(fo, "#endif\n");
fprintf(fo, "#endif\n");
for (i = 2; i < argc; i++)
{
fi = fopen(argv[i], "rb");
if (!fi)
{
fclose(fo);
fprintf(stderr, "fontdump: could not open input file '%s'\n", argv[i]);
return 1;
}
basename = strrchr(argv[i], '/');
if (!basename)
basename = strrchr(argv[i], '\\');
if (basename)
basename++;
else
basename = argv[i];
strcpy(origname, basename);
p = strrchr(origname, '.');
if (p) *p = 0;
strcpy(fontname, origname);
p = fontname;
while (*p)
{
if (*p == '/' || *p == '.' || *p == '\\' || *p == '-')
*p = '_';
p ++;
}
fseek(fi, 0, SEEK_END);
len = ftell(fi);
fseek(fi, 0, SEEK_SET);
if (getenv("verbose"))
printf("\t{\"%s\",pdf_font_%s,%d},\n", origname, fontname, len);
fprintf(fo, "\n#ifdef HAVE_INCBIN\n");
fprintf(fo, "extern const unsigned char pdf_font_%s[%d];\n", fontname, len);
fprintf(fo, "asm(\".globl pdf_font_%s\");\n", fontname);
fprintf(fo, "asm(\".balign 8\");\n");
fprintf(fo, "asm(\"pdf_font_%s:\");\n", fontname);
fprintf(fo, "asm(\".incbin \\\"%s\\\"\");\n", argv[i]);
fprintf(fo, "#else\n");
fprintf(fo, "static const unsigned char pdf_font_%s[%d] = {\n", fontname, len);
hexdump(fo, fi);
fprintf(fo, "};\n");
fprintf(fo, "#endif\n");
fclose(fi);
}
if (fclose(fo))
{
fprintf(stderr, "fontdump: could not close output file '%s'\n", argv[1]);
return 1;
}
return 0;
}
|