-
Notifications
You must be signed in to change notification settings - Fork 7
/
pcf2bdf.cc
1268 lines (1168 loc) · 28.2 KB
/
pcf2bdf.cc
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// pcf2bdf.cc
/*
* see libXfont-1.4.5: src/bitmap/pcfread.c, pcfwrite.c, bcfread.c
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <string>
#if defined(_MSC_VER) // Microsoft Visual C++
# include <io.h>
# include <fcntl.h>
# include <process.h>
# define popen _popen
#elif defined(__CYGWIN__) // Cygnus GNU Win32 gcc
# include <io.h>
# include <sys/fcntl.h>
#else
# define _setmode(fd, mode)
#endif
// miscellaneous definition ///////////////////////////////////////////////////
typedef bool bool8;
typedef unsigned char uint8;
typedef unsigned char byte8;
typedef short int16;
typedef unsigned short uint16;
typedef int int32;
typedef unsigned int uint32;
// section ID
enum type32 {
PCF_PROPERTIES = (1 << 0),
PCF_ACCELERATORS = (1 << 1),
PCF_METRICS = (1 << 2),
PCF_BITMAPS = (1 << 3),
PCF_INK_METRICS = (1 << 4),
PCF_BDF_ENCODINGS = (1 << 5),
PCF_SWIDTHS = (1 << 6),
PCF_GLYPH_NAMES = (1 << 7),
PCF_BDF_ACCELERATORS = (1 << 8),
};
// section format
struct format32 {
uint32 id :24; // one of four constants below
uint32 dummy :2; // = 0 padding
uint32 scan :2; // read bitmap by (1 << scan) bytes
uint32 bit :1; // 0:LSBit first, 1:MSBit first
uint32 byte :1; // 0:LSByte first, 1:MSByte first
uint32 glyph :2; // a scanline of gryph is aligned by (1 << glyph) bytes
bool is_little_endian(void) { return !byte; }
};
// format32.id is:
#define PCF_DEFAULT_FORMAT 0
#define PCF_INKBOUNDS 2
#define PCF_ACCEL_W_INKBOUNDS 1
#define PCF_COMPRESSED_METRICS 1
// BDF file is outputed: MSBit first and MSByte first
const format32 BDF_format = { PCF_DEFAULT_FORMAT, 0, 0, 1, 1, 0 };
// string or value
union sv {
char *s;
int32 v;
};
// metric informations
struct metric_t
{
int16 leftSideBearing; // leftmost coordinate of the gryph
int16 rightSideBearing; // rightmost coordinate of the gryph
int16 characterWidth; // offset to next gryph
int16 ascent; // pixels below baseline
int16 descent; // pixels above Baseline
uint16 attributes;
byte8 *bitmaps; // bitmap pattern of gryph
int32 swidth; // swidth
sv glyphName; // name of gryph
metric_t(void)
{
bitmaps = NULL;
glyphName.s = NULL;
}
// gryph width
int16 widthBits(void) { return rightSideBearing - leftSideBearing; }
// gryph height
int16 height(void) { return ascent + descent; }
// byts for one scanline
int16 widthBytes(format32 f)
{
return bytesPerRow(widthBits(), 1 << f.glyph);
}
static int16 bytesPerRow(int bits, int nbytes)
{
return nbytes == 1 ? ((bits + 7) >> 3) // pad to 1 byte
: nbytes == 2 ? (((bits + 15) >> 3) & ~1) // pad to 2 bytes
: nbytes == 4 ? (((bits + 31) >> 3) & ~3) // pad to 4 bytes
: nbytes == 8 ? (((bits + 63) >> 3) & ~7) // pad to 8 bytes
: 0;
}
};
#define GLYPHPADOPTIONS 4
#define make_charcode(row,col) (row * 256 + col)
#define NO_SUCH_CHAR 0xffff
// global variables ///////////////////////////////////////////////////////////
// table of contents
int32 nTables;
struct table_t {
type32 type; // section ID
format32 format; // section format
int32 size; // size of section
int32 offset; // byte offset from the beginning of the file
} *tables;
// properties section
int32 nProps; // number of properties
struct props_t { // property
sv name; // name of property
bool8 isStringProp; // whether this property is a string (or a value)
sv value; // the value of this property
} *props;
int32 stringSize; // size of string
char *string; // string used in property
// accelerators section
struct accelerators_t {
bool8 noOverlap; /* true if:
* max(rightSideBearing - characterWidth) <=
* minbounds->metrics.leftSideBearing */
bool8 constantMetrics;
bool8 terminalFont; /* true if:
* constantMetrics && leftSideBearing == 0 &&
* rightSideBearing == characterWidth &&
* ascent == fontAscent &&
* descent == fontDescent */
bool8 constantWidth; /* true if:
* minbounds->metrics.characterWidth
* ==
* maxbounds->metrics.characterWidth */
bool8 inkInside; /* true if for all defined glyphs:
* 0 <= leftSideBearing &&
* rightSideBearing <= characterWidth &&
* -fontDescent <= ascent <= fontAscent &&
* -fontAscent <= descent <= fontDescent */
bool8 inkMetrics; /* ink metrics != bitmap metrics */
bool8 drawDirection; /* 0:L->R 1:R->L*/
int32 fontAscent;
int32 fontDescent;
int32 maxOverlap;
metric_t minBounds;
metric_t maxBounds;
metric_t ink_minBounds;
metric_t ink_maxBounds;
} accelerators;
// metrics section
int32 nMetrics;
metric_t *metrics;
// bitmaps section
int32 nBitmaps;
uint32 *bitmapOffsets;
uint32 bitmapSizes[GLYPHPADOPTIONS];
byte8 *bitmaps; // bitmap patterns of the gryph
int32 bitmapSize; // size of bitmaps
// encodings section
uint16 firstCol;
uint16 lastCol;
uint16 firstRow;
uint16 lastRow;
uint16 defaultCh; // default character
uint16 *encodings;
int nEncodings; // number of encodings
int nValidEncodings; // number of valid encodings
// swidths section
int32 nSwidths;
// glyph names section
int32 nGlyphNames;
int32 glyphNamesSize;
char *glyphNames;
// other globals
FILE *ifp; // input file pointer
FILE *ofp; // output file pointer
long read_bytes; // read bytes
format32 format; // current section format
metric_t fontbbx; // font bounding box
bool verbose; // show messages verbosely
// miscellaneous functions ////////////////////////////////////////////////////
int error_exit(const char *str)
{
fprintf(stderr, "pcf2bdf: %s\n", str);
exit(1);
return 1;
}
int error_invalid_exit(const char *str)
{
fprintf(stderr, "pcf2bdf: <%s> invalid PCF file\n", str);
exit(1);
return 1;
}
void check_int32_min(const char *indent, const char *str, int32 value, int32 min)
{
if (!(min <= value))
{
fprintf(stderr, "pcf2bdf: <%s>=%d is out of range (must be >= %d)\n",
str, value, min);
exit(1);
}
else
{
if (verbose)
{
fprintf(stderr, "%s%s = %d\n", indent, str, value);
}
}
}
int check_memory(void *ptr)
{
if (!ptr)
{
return error_exit("out of memory");
}
return 0;
}
byte8 *read_byte8s(byte8 *mem, size_t size)
{
size_t read_size = fread(mem, 1, size, ifp);
if (read_size != size)
{
error_exit("unexpected eof");
}
read_bytes += size;
return mem;
}
char read8(void)
{
int a = fgetc(ifp);
read_bytes ++;
if (a == EOF)
{
return (char)error_exit("unexpected eof");
}
return (char)a;
}
bool8 read_bool8(void)
{
return (bool8)!!read8();
}
uint8 read_uint8(void)
{
return (uint8)read8();
}
/* These all return int rather than int16 in order to handle values
* between 32768 and 65535 more gracefully.
*/
int make_int16(int a, int b)
{
int value;
value = (a & 0xff) << 8;
value |= (b & 0xff);
return value;
}
int read_int16_big(void)
{
int a = read8();
int b = read8();
return make_int16(a, b);
}
int read_int16_little(void)
{
int a = read8();
int b = read8();
return make_int16(b, a);
}
int read_int16(void)
{
if (format.is_little_endian())
{
return read_int16_little();
}
else
{
return read_int16_big();
}
}
int32 make_int32(int a, int b, int c, int d)
{
int32 value;
value = (int32)(a & 0xff) << 24;
value |= (int32)(b & 0xff) << 16;
value |= (int32)(c & 0xff) << 8;
value |= (int32)(d & 0xff);
return value;
}
int32 read_int32_big(void)
{
int a = read8();
int b = read8();
int c = read8();
int d = read8();
return make_int32(a, b, c, d);
}
int32 read_int32_little(void)
{
int a = read8();
int b = read8();
int c = read8();
int d = read8();
return make_int32(d, c, b, a);
}
int32 read_int32(void)
{
if (format.is_little_endian())
{
return read_int32_little();
}
else
{
return read_int32_big();
}
}
uint32 read_uint32(void)
{
return (uint32)read_int32();
}
format32 read_format32_little(void)
{
int32 v = read_int32_little();
format32 f;
f.id = v >> 8;
f.dummy = 0;
f.scan = v >> 4;
f.bit = v >> 3;
f.byte = v >> 2;
f.glyph = v >> 0;
return f;
}
void skip(int n)
{
for (; 0 < n; n--)
{
read8();
}
}
void bit_order_invert(byte8 *data, int size)
{
static const byte8 invert[16] =
{ 0, 8, 4, 12, 2, 10, 6, 14, 1, 9, 5, 13, 3, 11, 7, 15 };
for (int i = 0; i < size; i++)
{
data[i] = (invert[data[i] & 15] << 4) | invert[(data[i] >> 4) & 15];
}
}
void two_byte_swap(byte8 *data, int size)
{
size &= ~1;
for (int i = 0; i < size; i += 2)
{
byte8 tmp = data[i];
data[i] = data[i + 1];
data[i + 1] = tmp;
}
}
void four_byte_swap(byte8 *data, int size)
{
size &= ~3;
for (int i = 0; i < size; i += 4)
{
byte8 tmp = data[i];
data[i] = data[i + 3];
data[i + 3] = tmp;
tmp = data[i + 1];
data[i + 1] = data[i + 2];
data[i + 2] = tmp;
}
}
// main ///////////////////////////////////////////////////////////////////////
// search and seek a section of 'type'
bool seek(type32 type)
{
for (int i = 0; i < nTables; i++)
{
if (tables[i].type == type)
{
int s = tables[i].offset - read_bytes;
if (s < 0)
{
error_invalid_exit("seek");
}
skip(s);
return true;
}
}
return false;
}
// does a section of 'type' exist?
bool is_exist_section(type32 type)
{
for (int i = 0; i < nTables; i++)
{
if (tables[i].type == type)
{
return true;
}
}
return false;
}
// read metric information
void read_metric(metric_t *m)
{
m->leftSideBearing = read_int16();
m->rightSideBearing = read_int16();
m->characterWidth = read_int16();
m->ascent = read_int16();
m->descent = read_int16();
m->attributes = read_int16();
}
// read compressed metric information
void read_compressed_metric(metric_t *m)
{
m->leftSideBearing = (int16)read_uint8() - 0x80;
m->rightSideBearing = (int16)read_uint8() - 0x80;
m->characterWidth = (int16)read_uint8() - 0x80;
m->ascent = (int16)read_uint8() - 0x80;
m->descent = (int16)read_uint8() - 0x80;
m->attributes = 0;
}
void verbose_metric(metric_t *m, const char *name)
{
if (verbose)
{
fprintf(stderr, "\t%s.leftSideBearing = %d\n", name, m->leftSideBearing);
fprintf(stderr, "\t%s.rightSideBearing = %d\n", name, m->rightSideBearing);
fprintf(stderr, "\t%s.characterWidth = %d\n", name, m->characterWidth);
fprintf(stderr, "\t%s.ascent = %d\n", name, m->ascent);
fprintf(stderr, "\t%s.descent = %d\n", name, m->descent);
fprintf(stderr, "\t%s.attributes = %04x\n", name, m->attributes);
}
}
// read accelerators section
void read_accelerators(void)
{
format = read_format32_little();
if (!(format.id == PCF_DEFAULT_FORMAT ||
format.id == PCF_ACCEL_W_INKBOUNDS))
{
error_invalid_exit("accelerators");
}
accelerators.noOverlap = read_bool8();
accelerators.constantMetrics = read_bool8();
accelerators.terminalFont = read_bool8();
accelerators.constantWidth = read_bool8();
accelerators.inkInside = read_bool8();
accelerators.inkMetrics = read_bool8();
accelerators.drawDirection = read_bool8();
/* dummy */ read_bool8();
accelerators.fontAscent = read_int32();
accelerators.fontDescent = read_int32();
accelerators.maxOverlap = read_int32();
if (verbose)
{
fprintf(stderr, "\tnoOverlap = %d\n", (int)accelerators.noOverlap);
fprintf(stderr, "\tconstantMetrics = %d\n",
(int)accelerators.constantMetrics);
fprintf(stderr, "\tterminalFont = %d\n",
(int)accelerators.terminalFont);
fprintf(stderr, "\tconstantWidth = %d\n",
(int)accelerators.constantWidth);
fprintf(stderr, "\tinkInside = %d\n", (int)accelerators.inkInside);
fprintf(stderr, "\tinkMetrics = %d\n", (int)accelerators.inkMetrics);
fprintf(stderr, "\tdrawDirection = %d\n",
(int)accelerators.drawDirection);
fprintf(stderr, "\tfontAscent = %d\n", (int)accelerators.fontAscent);
fprintf(stderr, "\tfontDescent = %d\n", (int)accelerators.fontDescent);
fprintf(stderr, "\tmaxOverlap = %d\n", (int)accelerators.maxOverlap);
}
read_metric(&accelerators.minBounds);
read_metric(&accelerators.maxBounds);
verbose_metric(&accelerators.minBounds, "minBounds");
verbose_metric(&accelerators.maxBounds, "maxBounds");
if (format.id == PCF_ACCEL_W_INKBOUNDS)
{
read_metric(&accelerators.ink_minBounds);
read_metric(&accelerators.ink_maxBounds);
verbose_metric(&accelerators.ink_minBounds, "ink_minBounds");
verbose_metric(&accelerators.ink_maxBounds, "ink_maxBounds");
}
else
{
accelerators.ink_minBounds = accelerators.minBounds;
accelerators.ink_maxBounds = accelerators.maxBounds;
}
}
// search a property named 'name', and return its string if it is a string
char *get_property_string(const char *name)
{
for (int i = 0; i < nProps; i++)
{
if (strcmp(name, props[i].name.s) == 0)
{
if (props[i].isStringProp)
{
return props[i].value.s;
}
else
{
error_invalid_exit("property_string");
}
}
}
return NULL;
}
// search a property named 'name', and return its value if it is a value
int32 get_property_value(const char *name)
{
for (int i = 0; i < nProps; i++)
{
if (strcmp(name, props[i].name.s) == 0)
{
if (props[i].isStringProp)
{
error_invalid_exit("property_value");
}
else
{
return props[i].value.v;
}
}
}
return -1;
}
// does a property named 'name' exist?
bool is_exist_property_value(const char *name)
{
for (int i = 0; i < nProps; i++)
{
if (strcmp(name, props[i].name.s) == 0)
{
if (props[i].isStringProp)
{
return false;
}
else
{
return true;
}
}
}
return false;
}
int usage_exit(void)
{
printf("usage: pcf2bdf [-v] [-o bdf file] [pcf file]\n");
return 1;
}
std::string escape_quote(const char *p)
{
std::string result;
for (; *p; ++ p)
{
if (*p == '\'')
{
result.append("\\");
}
result.append(1, *p);
}
return result;
}
int main(int argc, char *argv[])
{
int i;
char *ifilename = NULL;
char *ofilename = NULL;
// read options
for (i = 1; i < argc; i++)
{
if (argv[i][0] == '-')
{
if (argv[i][1] == 'v')
{
verbose = true;
}
else if (i + 1 == argc || argv[i][1] != 'o' || ofilename)
{
return usage_exit();
}
else
{
ofilename = argv[++i];
}
}
else
{
if (ifilename)
{
return usage_exit();
}
else
{
ifilename = argv[i];
}
}
}
if (ifilename)
{
ifp = fopen(ifilename, "rb");
if (!ifp)
{
return error_exit("failed to open input pcf file");
}
}
else
{
_setmode(fileno(stdin), O_BINARY);
ifp = stdin;
}
int32 version = read_int32_big();
if ((version >> 16) == 0x1f9d || // compress'ed
(version >> 16) == 0x1f8b) // gzip'ed
{
if (!ifilename)
{
return error_exit("stdin is gzip'ed or compress'ed\n");
}
fclose(ifp);
std::string cmd = "gzip -dc '";
cmd.append(escape_quote(ifilename));
cmd.append("'");
ifp = popen(cmd.c_str(), "r");
_setmode(fileno(ifp), O_BINARY);
read_bytes = 0;
if (!ifp)
{
return error_exit("failed to execute gzip\n");
}
}
if (ofilename)
{
ofp = fopen(ofilename, "wb");
if (!ofp)
{
return error_exit("failed to open output bdf file");
}
}
else
{
ofp = stdout;
}
// read PCF file ////////////////////////////////////////////////////////////
// read table of contents
if (read_bytes == 0)
{
version = read_int32_big();
}
if (version != make_int32(1, 'f', 'c', 'p'))
{
error_exit("this is not PCF file format");
}
nTables = read_int32_little();
check_int32_min("", "nTables", nTables, 1);
check_memory((tables = new table_t[nTables]));
for (i = 0; i < nTables; i++)
{
tables[i].type = (type32)read_int32_little();
tables[i].format = read_format32_little();
tables[i].size = read_int32_little();
tables[i].offset = read_int32_little();
}
// read properties section
if (!seek(PCF_PROPERTIES))
{
error_exit("PCF_PROPERTIES does not found");
}
else
{
if (verbose)
{
fprintf(stderr, "PCF_PROPERTIES\n");
}
}
format = read_format32_little();
if (!(format.id == PCF_DEFAULT_FORMAT))
{
error_invalid_exit("properties(format)");
}
nProps = read_int32();
check_int32_min("\t", "nProps", nProps, 1);
check_memory((props = new props_t[nProps]));
for (i = 0; i < nProps; i++)
{
props[i].name.v = read_int32();
props[i].isStringProp = read_bool8();
props[i].value.v = read_int32();
}
skip(3 - (((4 + 1 + 4) * nProps + 3) % 4));
stringSize = read_int32();
check_int32_min("\t", "stringSize", stringSize, 0);
check_memory((string = new char[stringSize + 1]));
read_byte8s((byte8 *)string, stringSize);
string[stringSize] = '\0';
for (i = 0; i < nProps; i++)
{
if (stringSize <= props[i].name.v)
{
error_invalid_exit("properties(name)");
}
props[i].name.s = string + props[i].name.v;
if (verbose)
{
fprintf(stderr, "\t%s ", props[i].name.s);
}
if (props[i].isStringProp)
{
if (stringSize <= props[i].value.v)
{
error_invalid_exit("properties(value)");
}
props[i].value.s = string + props[i].value.v;
if (verbose)
{
fprintf(stderr, "\"%s\"\n", props[i].value.s);
}
}
else
{
if (verbose)
{
fprintf(stderr, "%d\n", props[i].value.v);
}
}
}
// read old accelerators section
if (!is_exist_section(PCF_BDF_ACCELERATORS))
{
if (!seek(PCF_ACCELERATORS))
{
error_exit("PCF_ACCELERATORS and PCF_BDF_ACCELERATORS do not found");
}
else
{
if (verbose)
{
fprintf(stderr, "PCF_ACCELERATORS\n");
}
read_accelerators();
}
}
else
{
if (verbose)
{
fprintf(stderr, "(PCF_ACCELERATORS)\n");
}
}
// read metrics section
if (!seek(PCF_METRICS))
{
error_exit("PCF_METRICS does not found");
}
else
{
if (verbose)
{
fprintf(stderr, "PCF_METRICS\n");
}
}
format = read_format32_little();
switch (format.id)
{
default:
error_invalid_exit("metrics");
case PCF_DEFAULT_FORMAT:
nMetrics = read_int32();
check_int32_min("\t", "nMetrics", nMetrics, 1);
check_memory((metrics = new metric_t[nMetrics]));
for (i = 0; i < nMetrics; i++)
{
read_metric(&metrics[i]);
}
break;
case PCF_COMPRESSED_METRICS:
if (verbose)
{
fprintf(stderr, "\tPCF_COMPRESSED_METRICS\n");
}
nMetrics = read_int16();
check_int32_min("\t", "nMetrics", nMetrics, 1);
check_memory((metrics = new metric_t[nMetrics]));
for (i = 0; i < nMetrics; i++)
{
read_compressed_metric(&metrics[i]);
}
break;
}
fontbbx = metrics[0];
for (i = 1; i < nMetrics; i++)
{
if (metrics[i].leftSideBearing < fontbbx.leftSideBearing)
{
fontbbx.leftSideBearing = metrics[i].leftSideBearing;
}
if (fontbbx.rightSideBearing < metrics[i].rightSideBearing)
{
fontbbx.rightSideBearing = metrics[i].rightSideBearing;
}
if (fontbbx.ascent < metrics[i].ascent)
{
fontbbx.ascent = metrics[i].ascent;
}
if (fontbbx.descent < metrics[i].descent)
{
fontbbx.descent = metrics[i].descent;
}
}
// read bitmaps section
if (!seek(PCF_BITMAPS))
{
error_exit("PCF_BITMAPS does not found");
}
else
{
if (verbose)
{
fprintf(stderr, "PCF_BITMAPS\n");
}
}
format = read_format32_little();
if (!(format.id == PCF_DEFAULT_FORMAT))
{
error_invalid_exit("bitmaps");
}
nBitmaps = read_int32();
check_int32_min("\t", "nBitmaps", nBitmaps, nMetrics);
check_memory((bitmapOffsets = new uint32[nBitmaps]));
for (i = 0; i < nBitmaps; i++)
{
bitmapOffsets[i] = read_uint32();
}
for (i = 0; i < GLYPHPADOPTIONS; i++)
{
bitmapSizes[i] = read_uint32();
}
bitmapSize = bitmapSizes[format.glyph];
check_int32_min("\t", "bitmapSize", bitmapSize, 0);
check_memory((bitmaps = new byte8[bitmapSize]));
read_byte8s(bitmaps, bitmapSize);
//
if (verbose)
{
fprintf(stderr, "\t1<<format.scan = %d\n", 1 << format.scan);
fprintf(stderr, "\t%sSBit first\n", format.bit ? "M" : "L");
fprintf(stderr, "\t%sSByte first\n", format.byte ? "M" : "L");
fprintf(stderr, "\t1<<format.glyph = %d\n", 1 << format.glyph);
}
if (format.bit != BDF_format.bit)
{
if (verbose)
{
fprintf(stderr, "\tbit_order_invert()\n");
}
bit_order_invert(bitmaps, bitmapSize);
}
if ((format.bit == format.byte) != (BDF_format.bit == BDF_format.byte))
{
switch (1 << (BDF_format.bit == BDF_format.byte ?
format.scan : BDF_format.scan))
{
case 1: break;
case 2:
if (verbose)
{
fprintf(stderr, "\ttwo_byte_swap()\n");
}
two_byte_swap(bitmaps, bitmapSize);
break;
case 4:
if (verbose)
{
fprintf(stderr, "\tfour_byte_swap()\n");
}
four_byte_swap(bitmaps, bitmapSize);
break;
}
}
//
for (i = 0; i < nMetrics; i++)
{
metric_t &m = metrics[i];
m.bitmaps = bitmaps + bitmapOffsets[i];
}
// ink metrics section is ignored
// read encodings section
if (!seek(PCF_BDF_ENCODINGS))
{
error_exit("PCF_BDF_ENCODINGS does not found");
}
else
{
if (verbose)
{
fprintf(stderr, "PCF_ENCODINGS\n");
}
}
format = read_format32_little();
if (!(format.id == PCF_DEFAULT_FORMAT))
{
error_invalid_exit("encoding");
}
firstCol = read_int16();
lastCol = read_int16();
firstRow = read_int16();
lastRow = read_int16();
defaultCh = read_int16();
if (verbose)
{
fprintf(stderr, "\tfirstCol = %X\n", firstCol);
fprintf(stderr, "\tlastCol = %X\n", lastCol);
fprintf(stderr, "\tfirstRow = %X\n", firstRow);
fprintf(stderr, "\tlastRow = %X\n", lastRow);
fprintf(stderr, "\tdefaultCh = %X\n", defaultCh);
}
if (!(firstCol <= lastCol))