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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676
|
/* Copyright (C) 2001-2012 Artifex Software, Inc.
All Rights Reserved.
This software is provided AS-IS with no warranty, either express or
implied.
This software is distributed under license and may not be copied,
modified or distributed except as expressly authorized under the terms
of the license contained in the file LICENSE in this distribution.
Refer to licensing information at http://www.artifex.com or contact
Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael,
CA 94903, U.S.A., +1(415)492-9861, for further information.
*/
/* Type 42 (TrueType) font library routines */
#include "memory_.h"
#include "stdint_.h"
#include "gx.h"
#include "gserrors.h"
#include "gsstruct.h"
#include "gsccode.h"
#include "gsline.h" /* for gs_imager_setflat */
#include "gsmatrix.h"
#include "gsutil.h"
#include "gxchrout.h"
#include "gxfixed.h" /* for gxpath.h */
#include "gxpath.h"
#include "gxfont.h"
#include "gxfont42.h"
#include "gxttf.h"
#include "gxttfb.h"
#include "gxtext.h"
#include "gxchar.h"
#include "gxfcache.h"
#include "gxistate.h"
#include "gzstate.h"
#include "stream.h"
#include <stdlib.h> /* for qsort */
/* Structure descriptor */
public_st_gs_font_type42();
/* Forward references */
static int append_outline_fitted(uint glyph_index, const gs_matrix * pmat,
gx_path * ppath, cached_fm_pair * pair,
const gs_log2_scale_point * pscale, bool design_grid);
static uint default_get_glyph_index(gs_font_type42 *pfont, gs_glyph glyph);
static int default_get_outline(gs_font_type42 *pfont, uint glyph_index,
gs_glyph_data_t *pgd);
font_proc_font_info(gs_type42_font_info); /* Type check. */
font_proc_font_info(gs_truetype_font_info); /* Type check. */
/* Get 2- or 4-byte quantities from a table. */
#define U8(p) ((uint)((p)[0]))
#define S8(p) (int)((U8(p) ^ 0x80) - 0x80)
#define U16(p) (((uint)((p)[0]) << 8) + (p)[1])
#define S16(p) (int)((U16(p) ^ 0x8000) - 0x8000)
#define u32(p) get_u32_msb(p)
/* ---------------- Font level ---------------- */
GS_NOTIFY_PROC(gs_len_glyphs_release);
GS_NOTIFY_PROC(gs_gsub_release);
/* Read data from sfnts. */
int
gs_type42_read_data(gs_font_type42 * pfont, ulong pos, uint length, byte *buf)
{
int (*string_proc)(gs_font_type42 *, ulong, uint, const byte **) =
pfont->data.string_proc;
uint left = length;
const byte *data;
int code;
do {
code = (*string_proc)(pfont, (ulong)(pos + length - left), left, &data);
if (code < 0)
return code;
if (code == 0)
code = left;
memcpy(buf + length - left, data, code);
left -= code;
} while (left);
return 0;
}
/* Get the offset to a glyph using the loca table */
static inline ulong
get_glyph_offset(gs_font_type42 *pfont, uint glyph_index)
{
ulong result;
byte buf[4];
int code;
/* Hack : when reading fails, we return a huge offset.
Then gs_type42_font_init will fails because it is greater than loca size.
Fixme : improve with changing the function prototype.
*/
if (pfont->data.indexToLocFormat) {
code = gs_type42_read_data(pfont, pfont->data.loca + glyph_index * 4, 4, buf);
result = (code < 0 ? 0xffffffff : u32(buf));
} else {
code = gs_type42_read_data(pfont, pfont->data.loca + glyph_index * 2, 2, buf);
result = (code < 0 ? 0xffffffff : (ulong) U16(buf) << 1);
}
return result;
}
/* compare fn used by gs_type42_font_init() for sorting the 'loca' table */
typedef struct gs_type42_font_init_sort_s {
ulong glyph_offset;
int glyph_num;
int glyph_length;
} gs_type42_font_init_sort_t;
static int
gs_type42_font_init_compare (const void *a, const void *b)
{
ulong a_offset = ((const gs_type42_font_init_sort_t *)a)->glyph_offset;
ulong b_offset = ((const gs_type42_font_init_sort_t *)b)->glyph_offset;
if (a_offset < b_offset)
return -1;
else if (a_offset > b_offset)
return +1;
else
/* make the sort stable */
return ((const gs_type42_font_init_sort_t *)a)->glyph_num -
((const gs_type42_font_init_sort_t *)b)->glyph_num;
}
/*
* Initialize the cached values in a Type 42 font.
* Note that this initializes the type42_data procedures other than
* string_proc, and the font procedures as well.
*/
int
gs_type42_font_init(gs_font_type42 * pfont, int subfontID)
{
int (*string_proc)(gs_font_type42 *, ulong, uint, const byte **) =
pfont->data.string_proc;
byte OffsetTable[12];
uint numTables;
byte TableDirectory[MAX_NUM_TT_TABLES * 16];
uint i;
int code;
byte head_box[8];
ulong loca_size = 0;
ulong glyph_start, glyph_offset, glyph_length, glyph_size = 0;
uint numFonts, version;
uint OffsetTableOffset;
static const byte version1_0[4] = {0, 1, 0, 0};
static const byte version_true[4] = {'t', 'r', 'u', 'e'};
static const byte version_ttcf[4] = {'t', 't', 'c', 'f'};
READ_SFNTS(pfont, 0, 12, OffsetTable);
if (!memcmp(OffsetTable, version_ttcf, 4)) {
version = u32(OffsetTable + 4);
if (version != 0x00010000 && version !=0x00020000) {
emprintf2(pfont->memory,
"Unknown TTC header version %08X in the font %s.\n",
version, pfont->key_name.chars);
return_error(gs_error_invalidfont);
}
numFonts = u32(OffsetTable + 8);
if (subfontID < 0 || subfontID >= numFonts)
return_error(gs_error_rangecheck);
READ_SFNTS(pfont, 12 + subfontID * 4, 4, OffsetTable);
OffsetTableOffset = u32(OffsetTable);
READ_SFNTS(pfont, OffsetTableOffset, 12, OffsetTable);
} else {
OffsetTableOffset = 0;
}
if (memcmp(OffsetTable, version1_0, 4) &&
memcmp(OffsetTable, version_true, 4))
return_error(gs_error_invalidfont);
numTables = U16(OffsetTable + 4);
if (numTables > MAX_NUM_TT_TABLES)
return_error(gs_error_invalidfont);
READ_SFNTS(pfont, OffsetTableOffset + 12, numTables * 16, TableDirectory);
/* Clear all non-client-supplied data. */
{
void *proc_data = pfont->data.proc_data;
memset(&pfont->data, 0, sizeof(pfont->data));
pfont->data.string_proc = string_proc;
pfont->data.proc_data = proc_data;
}
for (i = 0; i < numTables; ++i) {
const byte *tab = TableDirectory + i * 16;
ulong offset = u32(tab + 8);
if (!memcmp(tab, "cmap", 4))
pfont->data.cmap = offset;
else if (!memcmp(tab, "glyf", 4)) {
pfont->data.glyf = offset;
glyph_size = (uint)u32(tab + 12);
} else if (!memcmp(tab, "GSUB", 4)) {
pfont->data.gsub_size = u32(tab + 12);
pfont->data.gsub = gs_alloc_byte_array(pfont->memory, pfont->data.gsub_size, 1,
"gs_type42_font_init(GSUB)");
if (pfont->data.gsub == 0)
return_error(gs_error_VMerror);
code = gs_font_notify_register((gs_font *)pfont, gs_gsub_release, (void *)pfont);
if (code < 0)
return code;
code = gs_type42_read_data(pfont, offset, pfont->data.gsub_size, pfont->data.gsub);
if ( code < 0 )
return code;
} else if (!memcmp(tab, "head", 4)) {
byte head[54];
READ_SFNTS(pfont, offset, 54, head);
pfont->data.unitsPerEm = U16(head + 18);
memcpy(head_box, head + 36, 8);
pfont->data.indexToLocFormat = U16(head + 50);
} else if (!memcmp(tab, "hhea", 4)) {
byte hhea[36];
READ_SFNTS(pfont, offset, 36, hhea);
pfont->data.metrics[0].numMetrics = U16(hhea + 34);
} else if (!memcmp(tab, "hmtx", 4)) {
pfont->data.metrics[0].offset = offset;
pfont->data.metrics[0].length = (uint)u32(tab + 12);
} else if (!memcmp(tab, "loca", 4)) {
pfont->data.loca = offset;
loca_size = u32(tab + 12);
} else if (!memcmp(tab, "maxp", 4)) {
byte maxp[30];
READ_SFNTS(pfont, offset, 30, maxp);
pfont->data.trueNumGlyphs = U16(maxp + 4);
} else if (!memcmp(tab, "name", 4)) {
pfont->data.name_offset = offset;
} else if (!memcmp(tab, "vhea", 4)) {
byte vhea[36];
READ_SFNTS(pfont, offset, 36, vhea);
pfont->data.metrics[1].numMetrics = U16(vhea + 34);
} else if (!memcmp(tab, "vmtx", 4)) {
pfont->data.metrics[1].offset = offset;
pfont->data.metrics[1].length = (uint)u32(tab + 12);
} else if (!memcmp(tab, "OS/2", 4)) {
pfont->data.os2_offset = offset;
}
}
loca_size >>= pfont->data.indexToLocFormat + 1;
pfont->data.numGlyphs = (loca_size == 0 ? 0 : loca_size - 1);
if (pfont->data.numGlyphs > pfont->data.trueNumGlyphs) {
/* Some fonts have excessive data at end of 'loca' table -
see bug 688467.
We're not sure why old versions of Ghostscript maintain
two different fileds - numGlyphs and trueNumGlyphs.
(A related comment in gxfont42.h isn't explanatory about important cases.)
Our reading of TrueType specification and FreeType experience
is that only trueNumGlyphs should be used.
Maybe (I guess) sometimes somebody observed a font,
in which trueNumGlyphs counts real glyphs,
and numGlyphs counts all subglyphs ?
Continue using trueNumGlyphs since the document of
the bug 688467 fails otherwise.
*/
/* pfont->key_name.chars is ASCIIZ due to copy_font_name. */
char buf[gs_font_name_max + 2];
if (pfont->key_name.size) {
int l = min(sizeof(buf) - 1, pfont->key_name.size);
memcpy(buf, pfont->key_name.chars, l);
buf[l] = 0;
} else if (pfont->font_name.size) {
int l = min(sizeof(buf) - 1, pfont->font_name.size);
memcpy(buf, pfont->font_name.chars, l);
buf[l] = 0;
} else
buf[0] = 0;
emprintf3(pfont->memory,
"Warning: 'loca' length %d is greater than numGlyphs %d in the font %s.\n",
pfont->data.numGlyphs + 1, pfont->data.trueNumGlyphs, buf);
if (loca_size > pfont->data.trueNumGlyphs + 1) {
/* Bug 689516 demonstrates a font, in which numGlyps is smaller than loca size,
and there are useful glyphs behind maxp.numGlyphs. */
for (i = loca_size - 1; i > pfont->data.trueNumGlyphs; i--) {
glyph_offset = get_glyph_offset(pfont, i);
if (glyph_offset < glyph_size)
break;
}
if (i > pfont->data.trueNumGlyphs) {
/* loca contains more good offsets, fix maxp.numGlyphs.
Note a code below will fix bad offsets if any. */
pfont->data.numGlyphs = pfont->data.trueNumGlyphs = loca_size - 1;
}
}
pfont->data.numGlyphs = pfont->data.trueNumGlyphs;
loca_size = pfont->data.numGlyphs + 1;
}
pfont->data.warning_patented = false;
pfont->data.warning_bad_instruction = false;
pfont->procs.glyph_outline = gs_type42_glyph_outline;
pfont->procs.glyph_info = gs_type42_glyph_info;
pfont->procs.enumerate_glyph = gs_type42_enumerate_glyph;
pfont->procs.font_info = gs_type42_font_info;
/* default data.get routines require a ram version of a ttf file */
pfont->data.get_glyph_index = default_get_glyph_index;
pfont->data.get_outline = default_get_outline;
pfont->data.get_metrics = gs_type42_default_get_metrics;
if (pfont->FontType == ft_CID_TrueType && pfont->is_resource) {
/* This font was load with .load_tt_font_stripped,
(it's only the case when bf_has_font_file is set because font file
presents with True Type - see zbuildfont11).
Can't use get_glyph_offset because 'loca' does not present in sfnt.
So we skip the unsorted 'loca' check.
A better way would be to perform the unsorted loca check
after glyph cache is initialized in zbuildfont11 with gs_glyph_cache__alloc.
But we're doing this fix under a rush of 8.63 release,
so have no time for deeper changes.
*/
pfont->data.len_glyphs = NULL;
} else {
/* Now build the len_glyphs array since 'loca' may not be properly sorted */
pfont->data.len_glyphs = (uint *)gs_alloc_byte_array(pfont->memory, loca_size, sizeof(uint),
"gs_type42_font_init");
if (pfont->data.len_glyphs == 0)
return_error(gs_error_VMerror);
code = gs_font_notify_register((gs_font *)pfont, gs_len_glyphs_release, (void *)pfont);
if (code < 0)
return code;
/* The 'loca' may not be in order, so we construct a glyph length array */
/* Since 'loca' is usually sorted, first try the simple linear scan to */
/* avoid the need to perform the more expensive process. */
glyph_start = get_glyph_offset(pfont, 0);
for (i = 1; i < loca_size; i++) {
glyph_offset = get_glyph_offset(pfont, i);
glyph_length = glyph_offset - glyph_start;
if (glyph_length > 0x80000000)
break;
if (glyph_offset > glyph_size)
break;
/* out of order loca */
pfont->data.len_glyphs[i - 1] = glyph_length;
glyph_start = glyph_offset;
}
if (i < loca_size) {
/*
* loca was out of order, build the len_glyphs the hard way.
* For each glyph, we use the next higher or equal
* glyph offset to compute the glyph length.
* It assumes no overlapping and no duplicate glyphs.
*/
ulong last_glyph_offset = glyph_size;
ulong num_valid_loca_elm = loca_size;
long last_offset = 0;
gs_type42_font_init_sort_t *psort;
gs_type42_font_init_sort_t *psortary =
(gs_type42_font_init_sort_t *)gs_alloc_byte_array(pfont->memory,
loca_size, sizeof(gs_type42_font_init_sort_t), "gs_type42_font_init(sort loca)");
if (psortary == 0)
return_error(gs_error_VMerror);
/* loca_size > 0 due to condition above, so we always have the 0th element. */
psortary->glyph_num = 0;
psortary->glyph_offset = get_glyph_offset(pfont, 0);
for (i = 1, psort = psortary + 1; i < loca_size; i++, psort++) {
psort->glyph_num = i;
psort->glyph_offset = get_glyph_offset(pfont, i);
psort[-1].glyph_length = psort->glyph_offset - last_offset;
last_offset = psort->glyph_offset;
}
psort[-1].glyph_length = 0; /* Dummy element. */
qsort(psortary, loca_size, sizeof(gs_type42_font_init_sort_t), gs_type42_font_init_compare);
while (num_valid_loca_elm > 0 && psortary[num_valid_loca_elm - 1].glyph_offset > glyph_size)
num_valid_loca_elm --;
if (0 == num_valid_loca_elm)
return_error(gs_error_invalidfont);
for (i = num_valid_loca_elm; i--;) {
long old_length;
psort = psortary + i;
old_length = psort->glyph_length;
if (old_length < 0 || old_length > 2000 /* arbitrary */) {
pfont->data.len_glyphs[psort->glyph_num] = last_glyph_offset - psort->glyph_offset;
/* Note the new length may be so big as old_length. */
} else
pfont->data.len_glyphs[psort->glyph_num] = old_length;
last_glyph_offset = psort->glyph_offset;
}
for (i = num_valid_loca_elm; i < loca_size; i++) {
psort = psortary + i;
pfont->data.len_glyphs[psort->glyph_num] = 0;
}
/* Well the last element of len_glyphs is never used.
We compute it because we're interesting whether it is not zero sometimes.
To know that, set a conditional breakpoint at the next statement.
*/
gs_free_object(pfont->memory, psortary, "gs_type42_font_init(sort loca)");
}
}
/*
* If the font doesn't have a valid FontBBox, compute one from the
* 'head' information. Since the Adobe PostScript driver sometimes
* outputs garbage FontBBox values, we use a "reasonableness" check
* here.
*/
if (pfont->FontBBox.p.x >= pfont->FontBBox.q.x ||
pfont->FontBBox.p.y >= pfont->FontBBox.q.y ||
pfont->FontBBox.p.x < -0.5 || pfont->FontBBox.p.x > 0.5 ||
pfont->FontBBox.p.y < -0.5 || pfont->FontBBox.p.y > 0.5
) {
float upem = (float)pfont->data.unitsPerEm;
pfont->FontBBox.p.x = S16(head_box) / upem;
pfont->FontBBox.p.y = S16(head_box + 2) / upem;
pfont->FontBBox.q.x = S16(head_box + 4) / upem;
pfont->FontBBox.q.y = S16(head_box + 6) / upem;
}
pfont->data.warning_patented = false;
pfont->data.warning_bad_instruction = false;
pfont->data.get_glyph_index = default_get_glyph_index;
pfont->data.get_outline = default_get_outline;
pfont->data.get_metrics = gs_type42_default_get_metrics;
pfont->procs.glyph_outline = gs_type42_glyph_outline;
pfont->procs.glyph_info = gs_type42_glyph_info;
pfont->procs.enumerate_glyph = gs_type42_enumerate_glyph;
pfont->procs.font_info = gs_type42_font_info;
return 0;
}
int
gs_len_glyphs_release(void *data, void *event)
{
gs_font_type42 *pfont = (gs_font_type42 *)data;
gs_font_notify_unregister((gs_font *)pfont, gs_len_glyphs_release, (void *)data);
gs_free_object(pfont->memory, pfont->data.len_glyphs, "gs_len_glyphs_release");
return 0;
}
int
gs_gsub_release(void *data, void *event)
{
gs_font_type42 *pfont = (gs_font_type42 *)data;
gs_font_notify_unregister((gs_font *)pfont, gs_gsub_release, (void *)data);
gs_free_object(pfont->memory, pfont->data.gsub, "gs_gsub_release");
return 0;
}
/* ---------------- Glyph level ---------------- */
/*
* Parse the definition of one component of a composite glyph. We don't
* bother to parse the component index, since the caller can do this so
* easily.
*/
void
gs_type42_parse_component(const byte **pdata, uint *pflags, gs_matrix_fixed *psmat,
int *pmp /*[2], may be null*/, const gs_font_type42 *pfont,
const gs_matrix_fixed *pmat)
{
const byte *gdata = *pdata;
uint flags;
double factor = 1.0 / pfont->data.unitsPerEm;
gs_matrix_fixed mat;
gs_matrix scale_mat;
flags = U16(gdata);
gdata += 4;
mat = *pmat;
if (flags & TT_CG_ARGS_ARE_XY_VALUES) {
int arg1, arg2;
gs_fixed_point pt;
if (flags & TT_CG_ARGS_ARE_WORDS)
arg1 = S16(gdata), arg2 = S16(gdata + 2), gdata += 4;
else
arg1 = S8(gdata), arg2 = S8(gdata + 1), gdata += 2;
if (flags & TT_CG_ROUND_XY_TO_GRID) {
/* We should do something here, but we don't. */
}
gs_point_transform2fixed(pmat, arg1 * factor,
arg2 * factor, &pt);
/****** HACK: WE KNOW ABOUT FIXED MATRICES ******/
mat.tx = fixed2float(mat.tx_fixed = pt.x);
mat.ty = fixed2float(mat.ty_fixed = pt.y);
if (pmp)
pmp[0] = pmp[1] = -1;
} else {
if (flags & TT_CG_ARGS_ARE_WORDS) {
if (pmp)
pmp[0] = U16(gdata), pmp[1] = S16(gdata + 2);
gdata += 4;
} else {
if (pmp)
pmp[0] = U8(gdata), pmp[1] = U8(gdata + 1);
gdata += 2;
}
}
#define S2_14(p) (S16(p) / 16384.0)
if (flags & TT_CG_HAVE_SCALE) {
scale_mat.xx = scale_mat.yy = S2_14(gdata);
scale_mat.xy = scale_mat.yx = 0;
gdata += 2;
} else if (flags & TT_CG_HAVE_XY_SCALE) {
scale_mat.xx = S2_14(gdata);
scale_mat.yy = S2_14(gdata + 2);
scale_mat.xy = scale_mat.yx = 0;
gdata += 4;
} else if (flags & TT_CG_HAVE_2X2) {
scale_mat.xx = S2_14(gdata);
scale_mat.xy = S2_14(gdata + 2);
scale_mat.yx = S2_14(gdata + 4);
scale_mat.yy = S2_14(gdata + 6);
gdata += 8;
} else
goto no_scale;
#undef S2_14
scale_mat.tx = 0;
scale_mat.ty = 0;
/* The scale doesn't affect mat.t{x,y}, so we don't */
/* need to update the fixed components. */
gs_matrix_multiply(&scale_mat, (const gs_matrix *)&mat,
(gs_matrix *)&mat);
no_scale:
*pdata = gdata;
*pflags = flags;
*psmat = mat;
}
/* Compute the total number of points in a (possibly composite) glyph. */
static int
total_points(gs_font_type42 *pfont, uint glyph_index)
{
gs_glyph_data_t glyph_data;
int code;
int ocode;
const byte *gdata;
int total;
glyph_data.memory = pfont->memory;
ocode = pfont->data.get_outline(pfont, glyph_index, &glyph_data);
if (ocode < 0)
return ocode;
if (glyph_data.bits.size == 0)
return 0;
gdata = glyph_data.bits.data;
if (S16(gdata) != -1) {
/* This is a simple glyph. */
int numContours = S16(gdata);
const byte *pends = gdata + 10;
const byte *pinstr = pends + numContours * 2;
total = (numContours == 0 ? 0 : U16(pinstr - 2) + 1);
} else {
/* This is a composite glyph. Add up the components. */
uint flags;
gs_matrix_fixed mat;
gdata += 10;
memset(&mat, 0, sizeof(mat)); /* arbitrary */
total = 0;
do {
code = total_points(pfont, U16(gdata + 2));
if (code < 0)
return code;
total += code;
gs_type42_parse_component(&gdata, &flags, &mat, NULL, pfont, &mat);
}
while (flags & TT_CG_MORE_COMPONENTS);
}
gs_glyph_data_free(&glyph_data, "total_points");
return total;
}
/*
* Define the default implementation for getting the glyph index from a
* gs_glyph. This is trivial for integer ("CID" but representing a GID)
* gs_glyph values, and not implemented for name glyphs.
*/
static uint
default_get_glyph_index(gs_font_type42 *pfont, gs_glyph glyph)
{
return (glyph < GS_MIN_CID_GLYPH ? 0 : /* undefined */
glyph - GS_MIN_CID_GLYPH);
}
/* Define the default implementation for getting the outline data for */
/* a glyph, using indexToLocFormat and the loca and glyf tables. */
/* Set pglyph->data = 0 if the glyph is empty. */
static int
default_get_outline(gs_font_type42 * pfont, uint glyph_index,
gs_glyph_data_t *pgd)
{
int (*string_proc) (gs_font_type42 *, ulong, uint, const byte **) =
pfont->data.string_proc;
ulong glyph_start;
uint glyph_length;
int code;
if (glyph_index >= pfont->data.trueNumGlyphs)
return_error(gs_error_invalidfont);
glyph_start = get_glyph_offset(pfont, glyph_index);
glyph_length = pfont->data.len_glyphs[glyph_index];
if (glyph_length == 0)
gs_glyph_data_from_null(pgd);
else {
const byte *data;
byte *buf;
code = (*string_proc)(pfont, (ulong)(pfont->data.glyf + glyph_start),
glyph_length, &data);
if (code < 0)
return code;
if (code == 0)
gs_glyph_data_from_string(pgd, data, glyph_length, NULL);
else {
/*
* The glyph is segmented in sfnts.
* It is not allowed with Type 42 specification.
* Perhaps we can handle it (with a low performance),
* making a contiguous copy.
*/
/* 'code' is the returned length */
buf = (byte *)gs_alloc_string(pgd->memory, glyph_length, "default_get_outline");
if (buf == 0)
return_error(gs_error_VMerror);
gs_glyph_data_from_string(pgd, buf, glyph_length, (gs_font *)pfont);
memcpy(buf, data, code);
return gs_type42_read_data(pfont, pfont->data.glyf + glyph_start + code,
glyph_length - code, buf + code);
}
}
return 0;
}
/* Take outline data from a True Type font file. */
int
gs_type42_get_outline_from_TT_file(gs_font_type42 * pfont, stream *s, uint glyph_index,
gs_glyph_data_t *pgd)
{
uchar lbuf[8];
ulong glyph_start;
uint glyph_length, count;
/* fixme: Since this function is being called multiple times per glyph,
* we should cache glyph data in a buffer associated with the font.
*/
if (pfont->data.indexToLocFormat) {
sseek(s, pfont->data.loca + glyph_index * 4);
sgets(s, lbuf, 8, &count);
if (count < 8)
return_error(gs_error_invalidfont);
glyph_start = u32(lbuf);
glyph_length = u32(lbuf + 4) - glyph_start;
} else {
sseek(s, pfont->data.loca + glyph_index * 2);
sgets(s, lbuf, 4, &count);
if (count < 4)
return_error(gs_error_invalidfont);
glyph_start = (ulong) U16(lbuf) << 1;
glyph_length = ((ulong) U16(lbuf + 2) << 1) - glyph_start;
}
if (glyph_length == 0)
gs_glyph_data_from_null(pgd);
else {
byte *buf;
sseek(s, pfont->data.glyf + glyph_start);
buf = (byte *)gs_alloc_string(pgd->memory, glyph_length, "default_get_outline");
if (buf == 0)
return_error(gs_error_VMerror);
gs_glyph_data_from_string(pgd, buf, glyph_length, (gs_font *)pfont);
sgets(s, buf, glyph_length, &count);
if (count < glyph_length)
return_error(gs_error_invalidfont);
}
return 0;
}
uint
gs_type42_substitute_glyph_index_vertical(gs_font_type42 *pfont, uint glyph_index,
int WMode, gs_glyph cid)
{ /* A rough trial implementation, possibly needs improvements or optimization. */
/* Fixme: optimize : Initialize subtable_ptr when the font is defined. */
byte *gsub_ptr = pfont->data.gsub;
typedef struct GSUB_s {
uint32_t Version;
uint16_t ScriptList;
uint16_t FeatureList;
uint16_t LookupList;
} GSUB;
#if 0 /* Currently unused, but maybe useful for future. */
ulong gsub_size = pfont->data.gsub_size;
typedef struct ScriptRecord_s {
byte Tag[4];
uint16_t Offset; /* Offset to Script table from beginning of ScriptList */
} ScriptRecord;
typedef struct ScriptList_s {
uint16_t ScriptCount;
ScriptRecord records[1 /* ScriptCount */];
} ScriptList;
typedef struct LangSysRecord_s {
byte Tag[4];
uint16_t Offset; /* Offset to LangSys table from beginning of Script table */
} LangSysRecord;
typedef struct ScriptTable_s {
uint16_t DefaultLangSys;
uint16_t LangSysCount;
LangSysRecord records[1/* LangSysCount */];
} ScriptTable;
typedef struct LangSysTable_s {
uint16_t LookupOrder;
uint16_t ReqFeatureIndex;
uint16_t FeatureCount;
uint16_t FeatureIndex[1/* FeatureCount */];
} LangSysTable;
typedef struct FeatureRecord_s {
byte Tag[4];
uint16_t Feature; /* Offset to Feature table from beginning of FeatureList */
} FeatureRecord;
typedef struct FeatureListTable_s {
uint16_t FeatureCount;
FeatureRecord records[1/* FeatureCount */];
} FeatureListTable;
#endif
typedef struct LookupListTable_s {
uint16_t LookupCount;
uint16_t Lookup[1/* LookupCount */]; /* offsets to Lookup tables-from beginning of LookupList */
} LookupListTable;
typedef struct LookupTable_s {
uint16_t LookupType;
uint16_t LookupFlag;
uint16_t SubTableCount;
uint16_t SubTable[1/* SubTableCount */]; /* offsets to Lookup tables-from beginning of LookupList */
} LookupTable;
typedef struct SingleSubstFormat1_s {
uint16_t SubstFormat; /* ==1 */
uint16_t Coverage; /* Offset to Coverage table-from beginning of Substitution table */
uint16_t DeltaGlyphId;
} SingleSubstFormat1;
typedef uint16_t GlyphID;
typedef struct SingleSubstFormat2_s {
uint16_t SubstFormat; /* ==2 */
uint16_t Coverage; /* Offset to Coverage table-from beginning of Substitution table */
uint16_t GlyphCount;
GlyphID Substitute[1/* GlyphCount */];
} SingleSubstFormat2;
typedef struct CoverageFormat1_s {
uint16_t CoverageFormat; /* ==1 */
uint16_t GlyphCount;
GlyphID GlyphArray[1/*GlyphCount*/]; /* Array of GlyphIDs-in numerical order */
} CoverageFormat1;
typedef struct RangeRecord_s {
GlyphID Start; /* First GlyphID in the range */
GlyphID End; /* Last GlyphID in the range */
uint16_t StartCoverageIndex; /* Coverage Index of first GlyphID in range */
} RangeRecord;
typedef struct CoverageFormat2_s {
uint16_t CoverageFormat; /* ==2 */
uint16_t RangeCount;
RangeRecord RangeArray[1/*RangeCount*/]; /* Array of GlyphIDs-in numerical order */
} CoverageFormat2;
int i, j;
GSUB gsub;
LookupListTable lookup_list_table;
byte *lookup_list_ptr;
if (WMode == 0)
return glyph_index;
/* GSUB header */
gsub.Version = u32(gsub_ptr + offset_of(GSUB, Version));
gsub.ScriptList = U16(gsub_ptr + offset_of(GSUB, ScriptList));
gsub.FeatureList = U16(gsub_ptr + offset_of(GSUB, FeatureList));
gsub.LookupList = U16(gsub_ptr + offset_of(GSUB, LookupList));
/* LookupList table */
lookup_list_ptr = gsub_ptr + gsub.LookupList;
lookup_list_table.LookupCount = U16(lookup_list_ptr + offset_of(LookupListTable, LookupCount));
for (i = 0; i < lookup_list_table.LookupCount; i++) {
byte *lookup_table_offset_ptr = lookup_list_ptr + offset_of(LookupListTable, Lookup)
+ i * sizeof(uint16_t);
byte *lookup_table_ptr = lookup_list_ptr + U16(lookup_table_offset_ptr);
LookupTable lookup_table;
lookup_table.LookupType = U16(lookup_table_ptr + offset_of(LookupTable, LookupType));
lookup_table.LookupFlag = U16(lookup_table_ptr + offset_of(LookupTable, LookupFlag));
lookup_table.SubTableCount = U16(lookup_table_ptr + offset_of(LookupTable, SubTableCount));
if (lookup_table.LookupType == 1) {
/* Currently we're interesting in Format 1 only, which is only useful
for single glyph substitution for vertical fonts.
We copied the logic of this choice from the CJK patch attached to bug 689304,
and we think that it may need a further improvement. */
byte *subtable_offset_ptr = lookup_table_ptr + offset_of(LookupTable, SubTable);
for (j = 0; j < lookup_table.SubTableCount; j++) {
byte *subtable_ptr = lookup_table_ptr + U16(subtable_offset_ptr + j * sizeof(uint16_t));
uint16_t format = U16(subtable_ptr);
if (format == 1) {
SingleSubstFormat1 subst;
subst.SubstFormat = format; /* Debug purpose. */
subst.Coverage = U16(subtable_ptr + offset_of(SingleSubstFormat1, Coverage));
subst.DeltaGlyphId = U16(subtable_ptr + offset_of(SingleSubstFormat1, DeltaGlyphId));
} else {
SingleSubstFormat2 subst;
byte *coverage_ptr;
uint16_t coverage_format;
subst.SubstFormat = format; /* Debug purpose. */
subst.Coverage = U16(subtable_ptr + offset_of(SingleSubstFormat2, Coverage));
subst.GlyphCount = U16(subtable_ptr + offset_of(SingleSubstFormat2, GlyphCount));
coverage_ptr = subtable_ptr + subst.Coverage;
coverage_format = U16(coverage_ptr);
if (coverage_format == 1) {
CoverageFormat1 cov;
cov.CoverageFormat = coverage_format; /* Debug purpose only. */
cov.GlyphCount = U16(coverage_ptr + offset_of(CoverageFormat1, GlyphCount));
{ /* Binary search. */
int k0 = 0, k1 = cov.GlyphCount;
for (;;) {
int k = (k0 + k1) / 2;
GlyphID glyph = U16(coverage_ptr + offset_of(CoverageFormat1, GlyphArray)
+ sizeof(GlyphID) * k);
if (glyph_index == glyph) {
/* Found. */
if (k >= cov.GlyphCount)
break; /* Wrong data ? (not sure). */
else {
GlyphID new_glyph = U16(subtable_ptr + offset_of(SingleSubstFormat2, Substitute)
+ sizeof(GlyphID) * k);
return new_glyph;
}
} else if (k0 >= k1 - 1) {
k += 0; /* A place for breakpoint. */
break; /* Not found. */
} else if (glyph_index < glyph)
k1 = k;
else
k0 = k + 1;
}
}
} else if (coverage_format == 2) {
CoverageFormat2 cov;
cov.CoverageFormat = coverage_format; /* Debug purpose only. */
cov.RangeCount = U16(coverage_ptr + offset_of(CoverageFormat2, RangeCount));
{ /* Binary search. */
int k0 = 0, k1 = cov.RangeCount;
for (;;) {
int k = (k0 + k1) / 2;
RangeRecord rr;
rr.Start = U16(coverage_ptr + offset_of(CoverageFormat2, RangeArray)
+ sizeof(RangeRecord) * k + offset_of(RangeRecord, Start));
rr.End = U16(coverage_ptr + offset_of(CoverageFormat2, RangeArray)
+ sizeof(RangeRecord) * k + offset_of(RangeRecord, End));
rr.StartCoverageIndex = U16(coverage_ptr + offset_of(CoverageFormat2, RangeArray)
+ sizeof(RangeRecord) * k + offset_of(RangeRecord, StartCoverageIndex));
if (rr.Start <= glyph_index && glyph_index <= rr.End) {
/* Found. */
if (k >= cov.RangeCount)
break; /* Wrong data ? (not sure). */
else {
uint16_t subst_index = rr.StartCoverageIndex + (glyph_index - rr.Start);
GlyphID new_glyph = U16(subtable_ptr + offset_of(SingleSubstFormat2, Substitute)
+ sizeof(GlyphID) * subst_index);
return new_glyph;
}
} else if (k0 >= k1 - 1) {
k += 0; /* A place for breakpoint. */
break; /* Not found. */
} else if (glyph_index < rr.Start)
k1 = k;
else
k0 = k + 1;
}
}
} else {
/* Not implemented yet. */
}
}
}
}
}
return glyph_index;
}
/* Parse a glyph into pieces, if any. */
static int
parse_pieces(gs_font_type42 *pfont, gs_glyph glyph, gs_glyph *pieces,
int *pnum_pieces)
{
uint glyph_index = (glyph >= GS_MIN_GLYPH_INDEX
? glyph - GS_MIN_GLYPH_INDEX
: pfont->data.get_glyph_index(pfont, glyph));
gs_glyph_data_t glyph_data;
int code;
glyph_data.memory = pfont->memory;
code = pfont->data.get_outline(pfont, glyph_index, &glyph_data);
if (code < 0)
return code;
if (glyph_data.bits.size != 0 && S16(glyph_data.bits.data) == -1) {
/* This is a composite glyph. */
int i = 0;
uint flags = TT_CG_MORE_COMPONENTS;
const byte *gdata = glyph_data.bits.data + 10;
gs_matrix_fixed mat;
memset(&mat, 0, sizeof(mat)); /* arbitrary */
for (i = 0; flags & TT_CG_MORE_COMPONENTS; ++i) {
if (pieces)
pieces[i] = U16(gdata + 2) + GS_MIN_GLYPH_INDEX;
gs_type42_parse_component(&gdata, &flags, &mat, NULL, pfont, &mat);
}
*pnum_pieces = i;
} else
*pnum_pieces = 0;
gs_glyph_data_free(&glyph_data, "parse_pieces");
return 0;
}
/* Define the font procedures for a Type 42 font. */
int
gs_type42_glyph_outline(gs_font *font, int WMode, gs_glyph glyph, const gs_matrix *pmat,
gx_path *ppath, double sbw[4])
{
gs_font_type42 *const pfont = (gs_font_type42 *)font;
uint glyph_index;
gs_fixed_point origin;
int code;
gs_glyph_info_t info;
static const gs_matrix imat = { identity_matrix_body };
bool design_grid = true;
const gs_log2_scale_point log2_scale = {0, 0};
/* fixme : The subpixel numbers doesn't pass through the font_proc_glyph_outline interface.
High level devices can't get a proper grid fitting with AlignToPixels = 1.
Currently font_proc_glyph_outline is only used by pdfwrite for computing a
character bbox, which doesn't need a grid fitting.
We apply design grid here.
*/
cached_fm_pair *pair;
if (glyph >= GS_MIN_GLYPH_INDEX)
glyph_index = glyph - GS_MIN_GLYPH_INDEX;
else {
glyph_index = pfont->data.get_glyph_index(pfont, glyph);
if (pfont->data.gsub_size) {
if (pfont->data.substitute_glyph_index_vertical != NULL)
glyph_index = pfont->data.substitute_glyph_index_vertical(pfont, glyph_index, WMode, glyph);
else
glyph_index = gs_type42_substitute_glyph_index_vertical(pfont, glyph_index, WMode, glyph);
}
}
code = gx_lookup_fm_pair(font, pmat, &log2_scale, design_grid, &pair);
if (code < 0)
return code;
if (pmat == 0)
pmat = &imat;
if ((code = gx_path_current_point(ppath, &origin)) < 0 ||
(code = append_outline_fitted(glyph_index, pmat, ppath, pair,
&log2_scale, design_grid)) < 0 ||
(code = font->procs.glyph_info(font, glyph, pmat,
GLYPH_INFO_WIDTH0 << WMode, &info)) < 0
)
return code;
return gx_path_add_point(ppath, origin.x + float2fixed(info.width[WMode].x),
origin.y + float2fixed(info.width[WMode].y));
}
/* Get glyph info by glyph index. */
int
gs_type42_glyph_info_by_gid(gs_font *font, gs_glyph glyph, const gs_matrix *pmat,
int members, gs_glyph_info_t *info, uint glyph_index)
{
gs_font_type42 *const pfont = (gs_font_type42 *)font;
int default_members =
members & ~(GLYPH_INFO_WIDTHS | GLYPH_INFO_NUM_PIECES |
GLYPH_INFO_PIECES | GLYPH_INFO_OUTLINE_WIDTHS |
GLYPH_INFO_VVECTOR0 | GLYPH_INFO_VVECTOR1);
gs_glyph_data_t outline;
int code = 0;
outline.memory = pfont->memory;
if (default_members) {
code = gs_default_glyph_info(font, glyph, pmat, default_members, info);
if (code < 0)
return code;
} else if ((code = pfont->data.get_outline(pfont, glyph_index, &outline)) < 0)
return code; /* non-existent glyph */
else {
gs_glyph_data_free(&outline, "gs_type42_glyph_info");
info->members = 0;
}
if (members & GLYPH_INFO_WIDTHS) {
int i;
for (i = 0; i < 2; ++i)
if (members & (GLYPH_INFO_WIDTH0 << i)) {
float sbw[4];
code = pfont->data.get_metrics(pfont, glyph_index, i, sbw);
if (code < 0) {
code = 0;
continue;
}
if (pmat) {
code = gs_point_transform(sbw[2], sbw[3], pmat,
&info->width[i]);
if (code < 0)
return code;
code = gs_point_transform(sbw[0], sbw[1], pmat,
&info->v);
} else {
info->width[i].x = sbw[2], info->width[i].y = sbw[3];
info->v.x = sbw[0], info->v.y = sbw[1];
}
info->members |= (GLYPH_INFO_VVECTOR0 << i);
info->members |= (GLYPH_INFO_WIDTH << i);
}
}
if (members & (GLYPH_INFO_NUM_PIECES | GLYPH_INFO_PIECES)) {
gs_glyph *pieces =
(members & GLYPH_INFO_PIECES ? info->pieces : (gs_glyph *)0);
int code = parse_pieces(pfont, glyph, pieces, &info->num_pieces);
if (code < 0)
return code;
info->members |= members & (GLYPH_INFO_NUM_PIECES | GLYPH_INFO_PIECES);
}
return code;
}
int
gs_type42_glyph_info(gs_font *font, gs_glyph glyph, const gs_matrix *pmat,
int members, gs_glyph_info_t *info)
{
gs_font_type42 *const pfont = (gs_font_type42 *)font;
uint glyph_index;
if (glyph >= GS_MIN_GLYPH_INDEX)
glyph_index = glyph - GS_MIN_GLYPH_INDEX;
else {
glyph_index = pfont->data.get_glyph_index(pfont, glyph);
if (glyph_index == GS_NO_GLYPH)
return_error(gs_error_undefined);
if (pfont->data.gsub_size) {
int WMode = ((members & (GLYPH_INFO_WIDTH1 | GLYPH_INFO_VVECTOR1)) ? 1 : 0);
if (pfont->data.substitute_glyph_index_vertical != NULL)
glyph_index = pfont->data.substitute_glyph_index_vertical(pfont, glyph_index, WMode, glyph);
else
glyph_index = gs_type42_substitute_glyph_index_vertical(pfont, glyph_index, WMode, glyph);
}
}
return gs_type42_glyph_info_by_gid(font, glyph, pmat, members, info, glyph_index);
}
int
gs_type42_enumerate_glyph(gs_font *font, int *pindex,
gs_glyph_space_t glyph_space, gs_glyph *pglyph)
{
gs_font_type42 *const pfont = (gs_font_type42 *)font;
while (++*pindex <= pfont->data.numGlyphs) {
gs_glyph_data_t outline;
uint glyph_index = *pindex - 1;
int code;
outline.memory = pfont->memory;
code = pfont->data.get_outline(pfont, glyph_index, &outline);
if (code < 0)
return code;
if (outline.bits.data == 0)
continue; /* empty (undefined) glyph */
*pglyph = glyph_index + GS_MIN_GLYPH_INDEX;
gs_glyph_data_free(&outline, "gs_type42_enumerate_glyph");
return 0;
}
/* We are done. */
*pindex = 0;
return 0;
}
/* Get the metrics of a simple glyph. */
static int
simple_glyph_metrics(gs_font_type42 * pfont, uint glyph_index, int wmode,
float sbw[4])
{
double factor = 1.0 / pfont->data.unitsPerEm;
uint width;
int lsb;
int code;
{
const gs_type42_mtx_t *pmtx = &pfont->data.metrics[wmode];
uint num_metrics = pmtx->numMetrics;
byte pmetrics[4];
if (pmtx->length == 0)
return_error(gs_error_rangecheck);
if (glyph_index < num_metrics) {
READ_SFNTS(pfont, pmtx->offset + glyph_index * 4, 4, pmetrics);
width = U16(pmetrics);
lsb = S16(pmetrics + 2);
} else {
uint offset = pmtx->offset + num_metrics * 4;
uint glyph_offset = (glyph_index - num_metrics) * 2;
byte plsb[2];
READ_SFNTS(pfont, offset - 4, 4, pmetrics);
width = U16(pmetrics);
if (glyph_offset >= pmtx->length)
glyph_offset = pmtx->length - 2;
READ_SFNTS(pfont, offset + glyph_offset, 2, plsb);
lsb = S16(plsb);
}
}
if (wmode) {
factor = -factor; /* lsb and width go down the page */
sbw[0] = 0, sbw[1] = lsb * factor;
sbw[2] = 0, sbw[3] = width * factor;
} else {
sbw[0] = lsb * factor, sbw[1] = 0;
sbw[2] = width * factor, sbw[3] = 0;
}
return 0;
}
/* Export the default get_metrics procedure.
The length of sbw is >=4 when bbox in not requested,
and 8 otherwise.
*/
int
gs_type42_default_get_metrics(gs_font_type42 * pfont, uint glyph_index,
gs_type42_metrics_options_t options, float sbw[4])
{
gs_glyph_data_t glyph_data;
int code;
int result = 0;
int wmode = gs_type42_metrics_options_wmode(options);
int sbw_requested = gs_type42_metrics_options_sbw_requested(options);
int bbox_requested = gs_type42_metrics_options_bbox_requested(options);
glyph_data.memory = pfont->memory;
code = pfont->data.get_outline(pfont, glyph_index, &glyph_data);
if (code < 0)
return code;
if (bbox_requested) {
if (glyph_data.bits.size >= 10 && bbox_requested) {
/* Note: The glyph bbox usn't useful for Dynalab fonts,
which stretch subglyphs. Therefore we don't
process subglyphs here. */
double factor = 1.0 / pfont->data.unitsPerEm;
sbw[4] = S16(glyph_data.bits.data + 2) * factor;
sbw[5] = S16(glyph_data.bits.data + 4) * factor;
sbw[6] = S16(glyph_data.bits.data + 6) * factor;
sbw[7] = S16(glyph_data.bits.data + 8) * factor;
} else
sbw[4] = sbw[5] = sbw[6] = sbw[7] = 0;
}
if (sbw_requested) {
if (glyph_data.bits.size != 0 && S16(glyph_data.bits.data) == -1) {
/* This is a composite glyph. */
uint flags;
const byte *gdata = glyph_data.bits.data + 10;
gs_matrix_fixed mat;
memset(&mat, 0, sizeof(mat)); /* arbitrary */
do {
uint comp_index = U16(gdata + 2);
gs_type42_parse_component(&gdata, &flags, &mat, NULL, pfont, &mat);
if (flags & TT_CG_USE_MY_METRICS) {
result = pfont->data.get_metrics(pfont, comp_index, wmode, sbw);
goto done;
}
}
while (flags & TT_CG_MORE_COMPONENTS);
}
result = simple_glyph_metrics(pfont, glyph_index, wmode, sbw);
}
done:
gs_glyph_data_free(&glyph_data, "gs_type42_default_get_metrics");
return result;
}
int
gs_type42_get_metrics(gs_font_type42 * pfont, uint glyph_index,
float sbw[4])
{
return pfont->data.get_metrics(pfont, glyph_index, pfont->WMode, sbw);
}
/* Define the bits in the glyph flags. */
#define gf_OnCurve 1
#define gf_xShort 2
#define gf_yShort 4
#define gf_Repeat 8
#define gf_xPos 16 /* xShort */
#define gf_xSame 16 /* !xShort */
#define gf_yPos 32 /* yShort */
#define gf_ySame 32 /* !yShort */
/* Append a TrueType outline to a path. */
/* Note that this does not append the final moveto for the width. */
int
gs_type42_append(uint glyph_index, gs_state * pgs,
gx_path * ppath, gs_text_enum_t *penum, gs_font *pfont,
bool charpath_flag)
{
const gs_log2_scale_point * pscale = &penum->log2_scale;
cached_fm_pair *pair = penum->pair;
int code = append_outline_fitted(glyph_index, &ctm_only(pgs), ppath,
pair, pscale, charpath_flag);
if (code < 0) {
if (pgs->in_cachedevice == CACHE_DEVICE_CACHING) {
/* Perform the cache cleanup, when the cached character data
has been allocated (gx_alloc_char_bits) but
the character has not been added to the cache (gx_add_cached_char)
due to a falure in the character renderer.
*/
gs_show_enum *const penum_s = (gs_show_enum *)penum;
if (penum_s->cc != NULL) {
gx_free_cached_char(pfont->dir, penum_s->cc);
penum_s->cc = NULL;
}
}
return code;
}
code = gx_setcurrentpoint_from_path((gs_imager_state *)pgs, ppath);
if (code < 0)
return code;
/* Set the flatness for curve rendering. */
return gs_imager_setflat((gs_imager_state *)pgs,
gs_char_flatness((gs_imager_state *)pgs, 1.0));
}
#if 0
/* Used only by add_simple below, which has been removed as unused. */
/* Add 2nd degree Bezier to the path */
static int
add_quadratic_curve(gx_path * const ppath, const gs_fixed_point * const a,
const gs_fixed_point * const b, const gs_fixed_point * const c)
{
return gx_path_add_curve(ppath, (a->x + 2*b->x)/3, (a->y + 2*b->y)/3,
(c->x + 2*b->x)/3, (c->y + 2*b->y)/3, c->x, c->y);
}
#endif
#if 0
/* Used only by check_component below, which was removed as unused. */
/*
* Append a simple glyph outline to a path (ppath != 0) and/or return
* its list of points (ppts != 0).
*/
static int
append_simple(const byte *gdata, float sbw[4], const gs_matrix_fixed *pmat,
gx_path *ppath, gs_fixed_point *ppts, gs_font_type42 * pfont,
bool subglyph)
{
int numContours = S16(gdata);
const byte *pends = gdata + 10;
const byte *pinstr = pends + numContours * 2;
const byte *pflags;
uint npoints;
const byte *pxc, *pyc;
int code;
if (numContours == 0)
return 0;
/*
* It appears that the only way to find the X and Y coordinate
* tables is to parse the flags. If this is true, it is an
* incredible piece of bad design.
*/
{
const byte *pf = pflags = pinstr + 2 + U16(pinstr);
uint xbytes = npoints = U16(pinstr - 2) + 1;
uint np = npoints;
while (np > 0) {
byte flags = *pf++;
uint reps = (flags & gf_Repeat ? *pf++ + 1 : 1);
if (!(flags & gf_xShort)) {
if (flags & gf_xSame)
xbytes -= reps;
else
xbytes += reps;
}
np -= reps;
}
pxc = pf;
pyc = pxc + xbytes;
}
/* Interpret the contours. */
{
uint i, np;
float offset = 0;
gs_fixed_point pt;
double factor = 1.0 / pfont->data.unitsPerEm;
/*
* Decode the first flag byte outside the loop, to avoid a
* compiler warning about uninitialized variables.
*/
byte flags = *pflags++;
uint reps = (flags & gf_Repeat ? *pflags++ + 1 : 1);
if (!subglyph) {
int xmin = S16(gdata + 2); /* We like to see it with debugger. */
offset = sbw[0] - xmin * factor;
}
gs_point_transform2fixed(pmat, offset, 0.0, &pt);
for (i = 0, np = 0; i < numContours; ++i) {
bool move = true;
bool off_curve = false;
bool is_start_off = false;
uint last_point = U16(pends + i * 2);
float dx, dy;
gs_fixed_point start,pt_start_off;
gs_fixed_point cpoints[2];
if_debug1('1', "[1t]start %d\n", i);
for (; np <= last_point; --reps, ++np) {
gs_fixed_point dpt;
if (reps == 0) {
flags = *pflags++;
reps = (flags & gf_Repeat ? *pflags++ + 1 : 1);
}
if (flags & gf_xShort) {
/*
* A bug in the Watcom compiler prevents us from doing
* the following with the obvious conditional expression.
*/
if (flags & gf_xPos)
dx = *pxc++ * factor;
else
dx = -(int)*pxc++ * factor;
} else if (!(flags & gf_xSame))
dx = S16(pxc) * factor, pxc += 2;
else
dx = 0;
if (flags & gf_yShort) {
/* See above under dx. */
if (flags & gf_yPos)
dy = *pyc++ * factor;
else
dy = -(int)*pyc++ * factor;
} else if (!(flags & gf_ySame))
dy = S16(pyc) * factor, pyc += 2;
else
dy = 0;
code = gs_distance_transform2fixed(pmat, dx, dy, &dpt);
if (code < 0)
return code;
pt.x += dpt.x, pt.y += dpt.y;
if (ppts) /* return the points */
ppts[np] = pt;
if (ppath) {
/* append to a path */
if_debug3('1', "[1t]%s (%g %g)\n",
(flags & gf_OnCurve ? "on " : "off"), fixed2float(pt.x), fixed2float(pt.y));
if (move) {
if(is_start_off) {
if(flags & gf_OnCurve)
start = pt;
else {
start.x = (pt_start_off.x + pt.x)/2;
start.y = (pt_start_off.y + pt.y)/2;
cpoints[1]=pt;
off_curve=true;
}
move = false;
cpoints[0] = start;
code = gx_path_add_point(ppath, start.x, start.y);
} else {
if(flags & gf_OnCurve) {
cpoints[0] = start = pt;
code = gx_path_add_point(ppath, pt.x, pt.y);
move = false;
} else {
is_start_off = true;
pt_start_off = pt;
}
}
} else if (flags & gf_OnCurve) {
if (off_curve)
code = add_quadratic_curve(ppath, cpoints, cpoints+1, &pt);
else
code = gx_path_add_line(ppath, pt.x, pt.y);
cpoints[0] = pt;
off_curve = false;
} else {
if(off_curve) {
gs_fixed_point p;
p.x = (cpoints[1].x + pt.x)/2;
p.y = (cpoints[1].y + pt.y)/2;
code = add_quadratic_curve(ppath, cpoints, cpoints+1, &p);
cpoints[0] = p;
}
off_curve = true;
cpoints[1] = pt;
}
if (code < 0)
return code;
}
}
if (ppath) {
if (is_start_off) {
if (off_curve) {
gs_fixed_point p;
p.x = (cpoints[1].x + pt_start_off.x)/2;
p.y = (cpoints[1].y + pt_start_off.y)/2;
code = add_quadratic_curve(ppath, cpoints, cpoints+1, &p);
if (code < 0)
return code;
code = add_quadratic_curve(ppath, &p, &pt_start_off, &start);
if (code < 0)
return code;
} else {
code = add_quadratic_curve(ppath, cpoints, &pt_start_off, &start);
if (code < 0)
return code;
}
} else {
if (off_curve) {
code = add_quadratic_curve(ppath, cpoints, cpoints+1, &start);
if (code < 0)
return code;
}
}
code = gx_path_close_subpath(ppath);
if (code < 0)
return code;
}
}
}
return 0;
}
#endif
#if 0
/* Used only by append_component below, which is also apprently unused and
* was removed by RJW.
*/
/* Append a glyph outline. */
static int
check_component(uint glyph_index, const gs_matrix_fixed *pmat,
gx_path *ppath, gs_font_type42 *pfont, gs_fixed_point *ppts,
gs_glyph_data_t *pgd, bool subglyph)
{
gs_glyph_data_t glyph_data;
const byte *gdata;
float sbw[4];
int numContours;
int code;
glyph_data.memory = pfont->memory;
code = pfont->data.get_outline(pfont, glyph_index, &glyph_data);
if (code < 0)
return code;
gdata = glyph_data.bits.data;
if (gdata == 0 || glyph_data.bits.size == 0) /* empty glyph */
return 0;
numContours = S16(gdata);
if (numContours >= 0) {
gs_type42_get_metrics(pfont, glyph_index, sbw);
code = append_simple(gdata, sbw, pmat, ppath, ppts, pfont, subglyph);
gs_glyph_data_free(&glyph_data, "check_component");
return (code < 0 ? code : 0); /* simple */
}
if (numContours != -1)
return_error(gs_error_rangecheck);
*pgd = glyph_data;
return 1; /* composite */
}
#endif
#if 0
/* RJW: Does not appear to be used */
static int
append_component(uint glyph_index, const gs_matrix_fixed * pmat,
gx_path * ppath, gs_fixed_point *ppts, int point_index,
gs_font_type42 * pfont, bool subglyph)
{
gs_glyph_data_t glyph_data;
int code;
glyph_data.memory = pfont->memory;
code = check_component(glyph_index, pmat, ppath, pfont, ppts + point_index,
&glyph_data, subglyph);
if (code != 1)
return code;
/*
* This is a composite glyph. Because of the "point matching" feature,
* we have to do an extra pass over each component to fill in the
* table of points.
*/
{
uint flags;
const byte *gdata = glyph_data.bits.data + 10;
do {
uint comp_index = U16(gdata + 2);
gs_matrix_fixed mat;
int mp[2];
gs_type42_parse_component(&gdata, &flags, &mat, mp, pfont, pmat);
if (mp[0] >= 0) {
/* Match up points. What a nuisance! */
const gs_fixed_point *const pfrom = ppts + mp[0];
/*
* Contrary to the TrueType documentation, mp[1] is not
* relative to the start of the compound glyph, but is
* relative to the start of the component.
*/
const gs_fixed_point *const pto = ppts + point_index + mp[1];
gs_fixed_point diff;
code = append_component(comp_index, &mat, NULL, ppts,
point_index, pfont, true);
if (code < 0)
break;
diff.x = pfrom->x - pto->x;
diff.y = pfrom->y - pto->y;
mat.tx = fixed2float(mat.tx_fixed += diff.x);
mat.ty = fixed2float(mat.ty_fixed += diff.y);
}
code = append_component(comp_index, &mat, ppath, ppts,
point_index, pfont, true);
if (code < 0)
break;
point_index += total_points(pfont, comp_index);
}
while (flags & TT_CG_MORE_COMPONENTS);
}
gs_glyph_data_free(&glyph_data, "append_component");
return code;
}
#endif
static int
append_outline_fitted(uint glyph_index, const gs_matrix * pmat,
gx_path * ppath, cached_fm_pair * pair,
const gs_log2_scale_point * pscale, bool design_grid)
{
gs_font_type42 *pfont = (gs_font_type42 *)pair->font;
int code;
gx_ttfReader__set_font(pair->ttr, pfont);
code = gx_ttf_outline(pair->ttf, pair->ttr, pfont, (uint)glyph_index,
pmat, pscale, ppath, design_grid);
gx_ttfReader__set_font(pair->ttr, NULL);
return code;
}
/* ---------------------------------------------- */
static int get_from_names_table(gs_font_type42 *pfont, gs_font_info_t *info,
gs_const_string *pmember, int member, uint name_id)
{
int (*string_proc)(gs_font_type42 *, ulong, uint, const byte **) =
pfont->data.string_proc;
byte t[12];
ushort num_records, strings_offset, i, language_id = 0xffff, length0 = 0, offset0 = 0;
int code;
READ_SFNTS(pfont, pfont->data.name_offset + 2, 4, t);
num_records = U16(t);
strings_offset = U16(t + 2);
for (i = 0; i < num_records; i++) {
ushort platformID, specificID, languageID, nameID, length, offset;
READ_SFNTS(pfont, pfont->data.name_offset + 6 + i * 12, 12, t);
platformID = U16(t + 0);
specificID = U16(t + 2);
languageID = U16(t + 4);
nameID = U16(t + 6);
length = U16(t + 8);
offset = U16(t + 10);
if (nameID == name_id) {
DISCARD(platformID);
DISCARD(specificID);
/* Hack : choose the minimal language id. */
if (language_id > languageID) {
language_id = languageID;
length0 = length;
offset0 = offset;
}
}
}
if (language_id == 0xffff)
return 0;
if ((*string_proc)(pfont, pfont->data.name_offset + strings_offset + offset0,
length0, &pmember->data) != 0)
return_error(gs_error_invalidfont);
pmember->size = length0;
info->members |= member;
return 0;
}
int
gs_truetype_font_info(gs_font *font, const gs_point *pscale, int members,
gs_font_info_t *info)
{
gs_font_type42 *pfont = (gs_font_type42 *)font;
int code;
if (!(info->members & FONT_INFO_EMBEDDING_RIGHTS) && (members & FONT_INFO_EMBEDDING_RIGHTS)) {
if(pfont->data.os2_offset != 0) {
unsigned char fstype[2];
READ_SFNTS(pfont, pfont->data.os2_offset + 8, 2, fstype);
info->EmbeddingRights = U16(fstype);
info->members |= FONT_INFO_EMBEDDING_RIGHTS;
}
}
if (pfont->data.name_offset == 0)
return 0;
if (!(info->members & FONT_INFO_COPYRIGHT) && (members & FONT_INFO_COPYRIGHT)) {
code = get_from_names_table(pfont, info, &info->Copyright, FONT_INFO_COPYRIGHT, 0);
if (code < 0)
return code;
}
if (!(info->members & FONT_INFO_FAMILY_NAME) && (members & FONT_INFO_FAMILY_NAME)) {
code = get_from_names_table(pfont, info, &info->FamilyName, FONT_INFO_FAMILY_NAME, 1);
if (code < 0)
return code;
}
if (!(info->members & FONT_INFO_FULL_NAME) && (members & FONT_INFO_FULL_NAME)) {
code = get_from_names_table(pfont, info, &info->FullName, FONT_INFO_FULL_NAME, 4);
if (code < 0)
return code;
}
return 0;
}
int
gs_type42_font_info(gs_font *font, const gs_point *pscale, int members,
gs_font_info_t *info)
{
int code = gs_default_font_info(font, pscale, members, info);
if (code < 0)
return code;
return gs_truetype_font_info(font, pscale, members, info);
}
|