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 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055
|
/* 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.
*/
/* Font API client */
#include "stdlib.h" /* abs() */
#include "memory_.h"
#include "math_.h"
#include "stat_.h" /* include before definition of esp macro, bug 691123 */
#include "string_.h"
#include "ghost.h"
#include "gp.h"
#include "oper.h"
#include "gxdevice.h"
#include "gxfont.h"
#include "gxfont1.h"
#include "gxchar.h"
#include "gzpath.h"
#include "gxpath.h"
#include "gxfcache.h"
#include "gxchrout.h"
#include "gximask.h"
#include "gscoord.h"
#include "gspaint.h"
#include "gsfont.h"
#include "gspath.h"
#include "bfont.h"
#include "dstack.h"
#include "estack.h"
#include "ichar.h"
#include "idict.h"
#include "iname.h"
#include "ifont.h"
#include "icid.h"
#include "igstate.h"
#include "icharout.h"
#include "ifapi.h"
#include "iplugin.h"
#include "store.h"
#include "gzstate.h"
#include "gdevpsf.h"
#include "stream.h" /* for files.h */
#include "gscrypt1.h"
#include "gxfcid.h"
#include "gsstype.h"
#include "gxchar.h" /* for st_gs_show_enum */
#include "ipacked.h" /* for packed_next */
#include "iddict.h"
#include "ifont42.h" /* for string_array_access_proc */
#include "gdebug.h"
#include "gsimage.h"
#include "gxcldev.h"
#include "gxdevmem.h"
/* lifted from gxchar.c */
static const uint MAX_TEMP_BITMAP_BITS = 80000;
/* -------------------------------------------------------- */
typedef struct FAPI_outline_handler_s {
struct gx_path_s *path;
fixed x0, y0;
bool close_path, need_close; /* This stuff fixes unclosed paths being rendered with UFST */
} FAPI_outline_handler;
static inline int64_t import_shift(int64_t x, int64_t n)
{ return n > 0 ? x << n : x >> -n;
}
static inline int export_shift(int x, int n)
{ return n > 0 ? x >> n : x << -n;
}
static inline int fapi_round(double x)
{ return (int)(x + 0.5);
}
static int add_closepath(FAPI_path *I)
{ FAPI_outline_handler *olh = (FAPI_outline_handler *)I->olh;
if (olh->need_close == true) {
olh->need_close = false;
I->gs_error = gx_path_close_subpath_notes(olh->path, 0);
}
return I->gs_error;
}
static int add_move(FAPI_path *I, int64_t x, int64_t y)
{ FAPI_outline_handler *olh = (FAPI_outline_handler *)I->olh;
x = import_shift(x, I->shift) + olh->x0;
y = -import_shift(y, I->shift) + olh->y0;
if (x > (int64_t)max_fixed) {
x = (int64_t)max_fixed;
}
else if (x < (int64_t)min_fixed) {
x = (int64_t)min_fixed;
}
if (y > (int64_t)max_fixed) {
y = (int64_t)max_fixed;
}
else if (y < (int64_t)min_fixed) {
y = (int64_t)min_fixed;
}
if (olh->need_close && olh->close_path)
if ((I->gs_error = add_closepath(I)) < 0)
return I->gs_error;
olh->need_close = false;
I->gs_error = gx_path_add_point(olh->path, (fixed)x, (fixed)y);
return I->gs_error;
}
static int add_line(FAPI_path *I, int64_t x, int64_t y)
{ FAPI_outline_handler *olh = (FAPI_outline_handler *)I->olh;
x = import_shift(x, I->shift) + olh->x0;
y = -import_shift(y, I->shift) + olh->y0;
if (x > (int64_t)max_fixed) {
x = (int64_t)max_fixed;
}
else if (x < (int64_t)min_fixed) {
x = (int64_t)min_fixed;
}
if (y > (int64_t)max_fixed) {
y = (int64_t)max_fixed;
}
else if (y < (int64_t)min_fixed) {
y = (int64_t)min_fixed;
}
olh->need_close = true;
I->gs_error = gx_path_add_line_notes(olh->path, (fixed)x, (fixed)y, 0);
return I->gs_error;
}
static int add_curve(FAPI_path *I, int64_t x0, int64_t y0, int64_t x1, int64_t y1, int64_t x2, int64_t y2)
{ FAPI_outline_handler *olh = (FAPI_outline_handler *)I->olh;
x0 = import_shift(x0, I->shift) + olh->x0;
y0 = -import_shift(y0, I->shift) + olh->y0;
x1 = import_shift(x1, I->shift) + olh->x0;
y1 = -import_shift(y1, I->shift) + olh->y0;
x2 = import_shift(x2, I->shift) + olh->x0;
y2 = -import_shift(y2, I->shift) + olh->y0;
if (x0 > (int64_t)max_fixed) {
x0 = (int64_t)max_fixed;
}
else if (x0 < (int64_t)min_fixed) {
x0 = (int64_t)min_fixed;
}
if (y0 > (int64_t)max_fixed) {
y0 = (int64_t)max_fixed;
}
else if (y0 < (int64_t)min_fixed) {
y0 = (int64_t)min_fixed;
}
if (x1 > (int64_t)max_fixed) {
x1 = (int64_t)max_fixed;
}
else if (x1 < (int64_t)min_fixed) {
x1 = (int64_t)min_fixed;
}
if (y1 > (int64_t)max_fixed) {
y1 = (int64_t)max_fixed;
}
else if (y1 < (int64_t)min_fixed) {
y1 = (int64_t)min_fixed;
}
if (x2 > (int64_t)max_fixed) {
x2 = (int64_t)max_fixed;
}
else if (x2 < (int64_t)min_fixed) {
x2 = (int64_t)min_fixed;
}
if (y2 > (int64_t)max_fixed) {
y2 = (int64_t)max_fixed;
}
else if (y2 < (int64_t)min_fixed) {
y2 = (int64_t)min_fixed;
}
olh->need_close = true;
I->gs_error = gx_path_add_curve_notes(olh->path, (fixed)x0, (fixed)y0, (fixed)x1, (fixed)y1, (fixed)x2, (fixed)y2, 0);
return I->gs_error;
}
static FAPI_path path_interface_stub = { NULL, 0, 0, add_move, add_line, add_curve, add_closepath };
static inline bool IsCIDFont(const gs_font_base *pbfont)
{ return (pbfont->FontType == ft_CID_encrypted ||
pbfont->FontType == ft_CID_user_defined ||
pbfont->FontType == ft_CID_TrueType);
/* The font type 10 (ft_CID_user_defined) must not pass to FAPI. */
}
static inline bool IsType1GlyphData(const gs_font_base *pbfont)
{ return pbfont->FontType == ft_encrypted ||
pbfont->FontType == ft_encrypted2 ||
pbfont->FontType == ft_CID_encrypted;
}
/* -------------------------------------------------------- */
typedef struct sfnts_reader_s sfnts_reader;
struct sfnts_reader_s {
ref *sfnts;
const gs_memory_t *memory;
const byte *p;
long index;
uint offset;
uint length;
bool error;
byte (*rbyte)(sfnts_reader *r);
ushort (*rword)(sfnts_reader *r);
ulong (*rlong)(sfnts_reader *r);
int (*rstring)(sfnts_reader *r, byte *v, int length);
void (*seek)(sfnts_reader *r, ulong pos);
};
static void sfnts_next_elem(sfnts_reader *r)
{
ref s;
int code;
if (r->error)
return;
r->index++;
code = array_get(r->memory, r->sfnts, r->index, &s);
if (code == e_rangecheck) {
r->error |= 2;
}
else if (code < 0) {
r->error |= 1;
}
if (r->error)
return;
r->p = s.value.const_bytes;
r->length = r_size(&s) & ~(uint)1; /* See Adobe Technical Note # 5012, section 4.2. */
r->offset = 0;
}
static inline byte sfnts_reader_rbyte_inline(sfnts_reader *r)
{ if (r->offset >= r->length)
sfnts_next_elem(r);
return (r->error ? 0 : r->p[r->offset++]);
}
static byte sfnts_reader_rbyte(sfnts_reader *r) /* old compiler compatibility */
{ return sfnts_reader_rbyte_inline(r);
}
static ushort sfnts_reader_rword(sfnts_reader *r)
{ return (sfnts_reader_rbyte_inline(r) << 8) + sfnts_reader_rbyte_inline(r);
}
static ulong sfnts_reader_rlong(sfnts_reader *r)
{ return (sfnts_reader_rbyte_inline(r) << 24) + (sfnts_reader_rbyte_inline(r) << 16) +
(sfnts_reader_rbyte_inline(r) << 8) + sfnts_reader_rbyte_inline(r);
}
static int sfnts_reader_rstring(sfnts_reader *r, byte *v, int length)
{
int rlength = length;
if (length <= 0)
return(0);
while (!r->error) {
int l = min(length, r->length - r->offset);
memcpy(v, r->p + r->offset, l);
length -= l;
r->offset += l;
if (length <= 0)
return(rlength);
v += l;
sfnts_next_elem(r);
}
return(rlength - length);
}
static void sfnts_reader_seek(sfnts_reader *r, ulong pos)
{ /* fixme : optimize */
ulong skipped = 0;
r->index = -1;
sfnts_next_elem(r);
while (skipped + r->length < pos && !r->error) {
skipped += r->length;
sfnts_next_elem(r);
}
r->offset = pos - skipped;
}
static void sfnts_reader_init(sfnts_reader *r, ref *pdr)
{ r->rbyte = sfnts_reader_rbyte;
r->rword = sfnts_reader_rword;
r->rlong = sfnts_reader_rlong;
r->rstring = sfnts_reader_rstring;
r->seek = sfnts_reader_seek;
r->index = -1;
r->error = false;
if (r_type(pdr) != t_dictionary ||
dict_find_string(pdr, "sfnts", &r->sfnts) <= 0)
r->error = true;
sfnts_next_elem(r);
}
/* -------------------------------------------------------- */
typedef struct sfnts_writer_s sfnts_writer;
struct sfnts_writer_s {
byte *buf, *p;
int buf_size;
void (*wbyte)(sfnts_writer *w, byte v);
void (*wword)(sfnts_writer *w, ushort v);
void (*wlong)(sfnts_writer *w, ulong v);
void (*wstring)(sfnts_writer *w, byte *v, int length);
};
static void sfnts_writer_wbyte(sfnts_writer *w, byte v)
{ if (w->buf + w->buf_size < w->p + 1)
return; /* safety */
w->p[0] = v;
w->p++;
}
static void sfnts_writer_wword(sfnts_writer *w, ushort v)
{ if (w->buf + w->buf_size < w->p + 2)
return; /* safety */
w->p[0] = v / 256;
w->p[1] = v % 256;
w->p += 2;
}
static void sfnts_writer_wlong(sfnts_writer *w, ulong v)
{ if (w->buf + w->buf_size < w->p + 4)
return; /* safety */
w->p[0] = v >> 24;
w->p[1] = (v >> 16) & 0xFF;
w->p[2] = (v >> 8) & 0xFF;
w->p[3] = v & 0xFF;
w->p += 4;
}
static void sfnts_writer_wstring(sfnts_writer *w, byte *v, int length)
{ if (w->buf + w->buf_size < w->p + length)
return; /* safety */
memcpy(w->p, v, length);
w->p += length;
}
static const sfnts_writer sfnts_writer_stub = {
0, 0, 0,
sfnts_writer_wbyte,
sfnts_writer_wword,
sfnts_writer_wlong,
sfnts_writer_wstring
};
/* -------------------------------------------------------- */
static inline bool sfnts_need_copy_table(byte *tag)
{ return memcmp(tag, "glyf", 4) &&
memcmp(tag, "glyx", 4) && /* Presents in files created by AdobePS5.dll Version 5.1.2 */
memcmp(tag, "loca", 4) &&
memcmp(tag, "locx", 4) && /* Presents in files created by AdobePS5.dll Version 5.1.2 */
memcmp(tag, "cmap", 4);
}
static void sfnt_copy_table(sfnts_reader *r, sfnts_writer *w, int length)
{ byte buf[1024];
while (length > 0 && !r->error) {
int l = min(length, sizeof(buf));
(void)r->rstring(r, buf, l);
w->wstring(w, buf, l);
length -= l;
}
}
static ulong sfnts_copy_except_glyf(sfnts_reader *r, sfnts_writer *w)
{ /* Note : TTC is not supported and probably is unuseful for Type 42. */
/* This skips glyf, loca and cmap from copying. */
struct {
byte tag[4];
ulong checkSum, offset, offset_new, length;
} tables[30];
const ushort alignment = 4; /* Not sure, maybe 2 */
ulong version = r->rlong(r);
ushort num_tables = r->rword(r);
ushort i, num_tables_new = 0;
ushort searchRange, entrySelector = 0, rangeShift, v;
ulong size_new = 12;
r->rword(r); /* searchRange */
r->rword(r); /* entrySelector */
r->rword(r); /* rangeShift */
for (i = 0; i < num_tables; i++) {
if (r->error)
return 0;
(void)r->rstring(r, tables[i].tag, 4);
tables[i].checkSum = r->rlong(r);
tables[i].offset = r->rlong(r);
tables[i].length = r->rlong(r);
tables[i].offset_new = size_new;
if (sfnts_need_copy_table(tables[i].tag)) {
num_tables_new ++;
size_new += (tables[i].length + alignment - 1) / alignment * alignment;
}
}
size_new += num_tables_new * 16;
if (w == 0)
return size_new;
searchRange = v = num_tables_new * 16;
for (i = 0; v; i++) {
v >>= 1;
searchRange |= v;
entrySelector++;
}
searchRange -= searchRange >> 1;
rangeShift = num_tables_new * 16 - searchRange;
w->wlong(w, version);
w->wword(w, num_tables_new);
w->wword(w, searchRange);
w->wword(w, entrySelector);
w->wword(w, rangeShift);
for (i = 0; i < num_tables; i++)
if (sfnts_need_copy_table(tables[i].tag)) {
w->wstring(w, tables[i].tag, 4);
w->wlong(w, tables[i].checkSum);
w->wlong(w, tables[i].offset_new + num_tables_new * 16);
w->wlong(w, tables[i].length);
}
for (i = 0; i < num_tables; i++)
if (sfnts_need_copy_table(tables[i].tag)) {
int k = tables[i].length;
r->seek(r, tables[i].offset);
if (r->error)
return 0;
if (w->p - w->buf != tables[i].offset_new + num_tables_new * 16)
return 0; /* the algorithm consistency check */
sfnt_copy_table(r, w, tables[i].length);
for (; k & (alignment - 1); k++)
w->wbyte(w, 0);
}
return size_new;
}
static ulong true_type_size(ref *pdr)
{ sfnts_reader r;
sfnts_reader_init(&r, pdr);
return sfnts_copy_except_glyf(&r, 0);
}
static ushort FAPI_FF_serialize_tt_font(FAPI_font *ff, void *buf, int buf_size)
{ ref *pdr = (ref *)ff->client_font_data2;
sfnts_reader r;
sfnts_writer w = sfnts_writer_stub;
w.buf_size = buf_size;
w.buf = w.p = buf;
sfnts_reader_init(&r, pdr);
if(!sfnts_copy_except_glyf(&r, &w))
return 1;
return r.error;
}
static inline ushort float_to_ushort(float v)
{ return (ushort)(v * 16); /* fixme : the scale may depend on renderer */
}
static ushort FAPI_FF_get_word(FAPI_font *ff, fapi_font_feature var_id, int index)
{ gs_font_type1 *pfont = (gs_font_type1 *)ff->client_font_data;
ref *pdr = (ref *)ff->client_font_data2;
switch((int)var_id) {
case FAPI_FONT_FEATURE_Weight: return 0; /* wrong */
case FAPI_FONT_FEATURE_ItalicAngle: return 0; /* wrong */
case FAPI_FONT_FEATURE_IsFixedPitch: return 0; /* wrong */
case FAPI_FONT_FEATURE_UnderLinePosition: return 0; /* wrong */
case FAPI_FONT_FEATURE_UnderlineThickness: return 0; /* wrong */
case FAPI_FONT_FEATURE_FontType: return (pfont->FontType == 2 ? 2 : 1);
case FAPI_FONT_FEATURE_FontBBox:
switch (index) {
case 0 : return (ushort)pfont->FontBBox.p.x;
case 1 : return (ushort)pfont->FontBBox.p.y;
case 2 : return (ushort)pfont->FontBBox.q.x;
case 3 : return (ushort)pfont->FontBBox.q.y;
}
return 0;
case FAPI_FONT_FEATURE_BlueValues_count: return pfont->data.BlueValues.count;
case FAPI_FONT_FEATURE_BlueValues: return float_to_ushort(pfont->data.BlueValues.values[index]);
case FAPI_FONT_FEATURE_OtherBlues_count: return pfont->data.OtherBlues.count;
case FAPI_FONT_FEATURE_OtherBlues: return float_to_ushort(pfont->data.OtherBlues.values[index]);
case FAPI_FONT_FEATURE_FamilyBlues_count: return pfont->data.FamilyBlues.count;
case FAPI_FONT_FEATURE_FamilyBlues: return float_to_ushort(pfont->data.FamilyBlues.values[index]);
case FAPI_FONT_FEATURE_FamilyOtherBlues_count: return pfont->data.FamilyOtherBlues.count;
case FAPI_FONT_FEATURE_FamilyOtherBlues: return float_to_ushort(pfont->data.FamilyOtherBlues.values[index]);
case FAPI_FONT_FEATURE_BlueShift: return float_to_ushort(pfont->data.BlueShift);
case FAPI_FONT_FEATURE_BlueFuzz: return float_to_ushort(pfont->data.BlueShift);
case FAPI_FONT_FEATURE_StdHW: return (pfont->data.StdHW.count == 0 ? 0 : float_to_ushort(pfont->data.StdHW.values[0])); /* UFST bug ? */
case FAPI_FONT_FEATURE_StdVW: return (pfont->data.StdVW.count == 0 ? 0 : float_to_ushort(pfont->data.StdVW.values[0])); /* UFST bug ? */
case FAPI_FONT_FEATURE_StemSnapH_count: return pfont->data.StemSnapH.count;
case FAPI_FONT_FEATURE_StemSnapH: return float_to_ushort(pfont->data.StemSnapH.values[index]);
case FAPI_FONT_FEATURE_StemSnapV_count: return pfont->data.StemSnapV.count;
case FAPI_FONT_FEATURE_StemSnapV: return float_to_ushort(pfont->data.StemSnapV.values[index]);
case FAPI_FONT_FEATURE_ForceBold: return pfont->data.ForceBold;
case FAPI_FONT_FEATURE_LanguageGroup: return pfont->data.LanguageGroup;
case FAPI_FONT_FEATURE_lenIV: return (ff->need_decrypt ? 0 : pfont->data.lenIV);
case FAPI_FONT_FEATURE_GlobalSubrs_count:
{ ref *Private, *GlobalSubrs;
if (pfont->FontType == ft_encrypted2) {
if (dict_find_string(pdr, "Private", &Private) <= 0)
return 0;
if (dict_find_string(Private, "GlobalSubrs", &GlobalSubrs) <= 0)
return 0;;
return r_size(GlobalSubrs);
}
/* Since we don't have an error return capability, use as unlikely a value as possible */
return(65535);
}
case FAPI_FONT_FEATURE_Subrs_count:
{ ref *Private, *Subrs;
if (dict_find_string(pdr, "Private", &Private) <= 0)
return 0;
if (dict_find_string(Private, "Subrs", &Subrs) <= 0)
return 0;
return r_size(Subrs);
}
case FAPI_FONT_FEATURE_CharStrings_count:
{ ref *CharStrings;
if (dict_find_string(pdr, "CharStrings", &CharStrings) <= 0)
return 0;
return dict_length(CharStrings);
}
/* Multiple Master specific */
case FAPI_FONT_FEATURE_DollarBlend:
{ ref *DBlend;
if (dict_find_string(pdr, "$Blend", &DBlend) <= 0)
return 0;
return 1;
}
case FAPI_FONT_FEATURE_BlendAxisTypes_count:
{ ref *Info, *Axes;
if (dict_find_string(pdr, "FontInfo", &Info) <= 0)
return 0;
if (dict_find_string(Info, "BlendAxisTypes", &Axes) <= 0)
return 0;
return r_size(Axes);
}
case FAPI_FONT_FEATURE_BlendFontInfo_count:
{ ref *Info, *FontInfo;
if (dict_find_string(pdr, "Blend", &Info) <= 0)
return 0;
if (dict_find_string(Info, "FontInfo", &FontInfo) <= 0)
return 0;
return dict_length(FontInfo);
}
case FAPI_FONT_FEATURE_BlendPrivate_count:
{ ref *Info, *Private;
if (dict_find_string(pdr, "Blend", &Info) <= 0)
return 0;
if (dict_find_string(Info, "Private", &Private) <= 0)
return 0;
return dict_length(Private);
}
case FAPI_FONT_FEATURE_WeightVector_count:
{ ref *Array;
if (dict_find_string(pdr, "WeightVector", &Array) <= 0)
return 0;
return r_size(Array);
}
case FAPI_FONT_FEATURE_BlendDesignPositionsArrays_count:
{ ref *Info, *Array;
if (dict_find_string(pdr, "FontInfo", &Info) <= 0)
return 0;
if (dict_find_string(Info, "BlendDesignPositions", &Array) <= 0)
return 0;
return r_size(Array);
}
case FAPI_FONT_FEATURE_BlendDesignMapArrays_count:
{ ref *Info, *Array;
if (dict_find_string(pdr, "FontInfo", &Info) <= 0)
return 0;
if (dict_find_string(Info, "BlendDesignMap", &Array) <= 0)
return 0;
return r_size(Array);
}
case FAPI_FONT_FEATURE_BlendDesignMapSubArrays_count:
{ ref *Info, *Array, SubArray;
if (dict_find_string(pdr, "FontInfo", &Info) <= 0)
return 0;
if (dict_find_string(Info, "BlendDesignMap", &Array) <= 0)
return 0;
if (array_get(ff->memory, Array, index, &SubArray) < 0)
return 0;
return r_size(&SubArray);
}
case FAPI_FONT_FEATURE_DollarBlend_length:
{ ref *DBlend, Element, string;
int i, length = 0;
char Buffer[32];
if (dict_find_string(pdr, "$Blend", &DBlend) <= 0)
return 0;
for (i = 0;i < r_size(DBlend);i++) {
if (array_get(ff->memory, DBlend, i, &Element) < 0)
return 0;
switch (r_btype(&Element)) {
case t_name:
name_string_ref(ff->memory, &Element, &string);
length += r_size(&string) + 1;
break;
case t_real:
sprintf(Buffer, "%f", Element.value.realval);
length += strlen(Buffer) + 1;
break;
case t_integer:
sprintf(Buffer, "%d", Element.value.intval);
length += strlen(Buffer) + 1;
break;
case t_operator:
{ op_def const *op;
op = op_index_def(r_size(&Element));
length += strlen(op->oname + 1) + 1;
}
break;
default:
break;
}
}
return length;
}
/* End MM specifics */
}
return 0;
}
static ulong FAPI_FF_get_long(FAPI_font *ff, fapi_font_feature var_id, int index)
{ gs_font_type1 *pfont = (gs_font_type1 *)ff->client_font_data;
ref *pdr = (ref *)ff->client_font_data2;
switch((int)var_id) {
case FAPI_FONT_FEATURE_UniqueID: return pfont->UID.id;
case FAPI_FONT_FEATURE_BlueScale: return (ulong)(pfont->data.BlueScale * 65536);
case FAPI_FONT_FEATURE_Subrs_total_size :
{ ref *Private, *Subrs, v;
int lenIV = max(pfont->data.lenIV, 0), k;
ulong size = 0;
long i;
const char *name[2] = {"Subrs", "GlobalSubrs"};
if (dict_find_string(pdr, "Private", &Private) <= 0)
return 0;
for (k = 0; k < 2; k++) {
if (dict_find_string(Private, name[k], &Subrs) > 0)
for (i = r_size(Subrs) - 1; i >= 0; i--) {
array_get(pfont->memory, Subrs, i, &v);
size += r_size(&v) - (ff->need_decrypt ? 0 : lenIV);
}
}
return size;
}
case FAPI_FONT_FEATURE_TT_size:
return true_type_size(pdr);
}
return 0;
}
static float FAPI_FF_get_float(FAPI_font *ff, fapi_font_feature var_id, int index)
{ gs_font_base *pbfont = (gs_font_base *)ff->client_font_data;
ref *pdr = (ref *)ff->client_font_data2;
FAPI_server *I = pbfont->FAPI;
switch((int)var_id) {
case FAPI_FONT_FEATURE_FontMatrix:
{
double FontMatrix_div;
gs_matrix m, *mptr;
if (I && I->get_fontmatrix) {
FontMatrix_div = 1;
mptr = &m;
I->get_fontmatrix (I, mptr);
}
else {
FontMatrix_div = (ff->is_cid && !IsCIDFont(pbfont) ? 1000 : 1);
mptr = &(pbfont->base->FontMatrix);
}
switch(index) {
case 0 : return mptr->xx / FontMatrix_div;
case 1 : return mptr->xy / FontMatrix_div;
case 2 : return mptr->yx / FontMatrix_div;
case 3 : return mptr->yy / FontMatrix_div;
case 4 : return mptr->tx / FontMatrix_div;
case 5 : return mptr->ty / FontMatrix_div;
}
}
case FAPI_FONT_FEATURE_WeightVector:
{ ref *Array, value;
if (dict_find_string(pdr, "WeightVector", &Array) <= 0)
return 0;
if (array_get(ff->memory, Array, index, &value) < 0)
return 0;
if (!r_has_type(&value, t_integer)) {
if (r_has_type(&value, t_real)) {
return value.value.realval;
} else
return 0;
}
else
return (float)value.value.intval;
}
case FAPI_FONT_FEATURE_BlendDesignPositionsArrayValue:
{ ref *Info, *Array, SubArray, value;
int array_index = index / 8;
index %= 8;
if (dict_find_string(pdr, "FontInfo", &Info) <= 0)
return 0;
if (dict_find_string(Info, "BlendDesignPositions", &Array) <= 0)
return 0;
if (array_get(ff->memory, Array, array_index, &SubArray) < 0)
return 0;
if (array_get(ff->memory, &SubArray, index, &value) < 0)
return 0;
if (!r_has_type(&value, t_integer)) {
if (r_has_type(&value, t_real)) {
return value.value.realval;
} else
return 0;
}
else
return (float)value.value.intval;
}
case FAPI_FONT_FEATURE_BlendDesignMapArrayValue:
{ ref *Info, *Array, SubArray, SubSubArray, value;
int array_index = index / 64;
index %= 8;
if (dict_find_string(pdr, "FontInfo", &Info) <= 0)
return 0;
if (dict_find_string(Info, "BlendDesignMap", &Array) <= 0)
return 0;
if (array_get(ff->memory, Array, array_index, &SubArray) < 0)
return 0;
if (array_get(ff->memory, &SubArray, index, &SubSubArray) < 0)
return 0;
if (array_get(ff->memory, &SubSubArray, index, &value) < 0)
return 0;
if (!r_has_type(&value, t_integer)) {
if (r_has_type(&value, t_real)) {
return value.value.realval;
} else
return 0;
}
else
return (float)value.value.intval;
}
}
return 0;
}
static int FAPI_FF_get_name(FAPI_font *ff, fapi_font_feature var_id, int index, char *Buffer, int len)
{
ref name, string, *pdr = (ref *)ff->client_font_data2;
switch((int)var_id) {
case FAPI_FONT_FEATURE_BlendAxisTypes:
{ ref *Info, *Axes;
if (dict_find_string(pdr, "FontInfo", &Info) <= 0)
return 0;
if (dict_find_string(Info, "BlendAxisTypes", &Axes) <= 0)
return 0;
if(!r_has_type(Axes, t_array))
return 0;
if (array_get(ff->memory, Axes, index, &name) < 0)
return 0;
}
}
name_string_ref(ff->memory, &name, &string);
if(r_size(&string) >= len)
return 0;
memcpy(Buffer, string.value.const_bytes, r_size(&string));
Buffer[r_size(&string)] = 0x00;
return 1;
}
static int FAPI_FF_get_proc(FAPI_font *ff, fapi_font_feature var_id, int index, char *Buffer)
{
ref *pdr = (ref *)ff->client_font_data2;
char *ptr = Buffer;
if (!Buffer)
return 0;
switch((int)var_id) {
case FAPI_FONT_FEATURE_DollarBlend:
{ ref *DBlend, Element, string;
int i;
char Buf[32];
if (dict_find_string(pdr, "$Blend", &DBlend) <= 0)
return 0;
for (i = 0;i < r_size(DBlend);i++) {
*ptr++ = 0x20;
if (array_get(ff->memory, DBlend, i, &Element) < 0)
return 0;
switch (r_btype(&Element)) {
case t_name:
name_string_ref(ff->memory, &Element, &string);
strncpy(ptr, (char *)string.value.const_bytes, r_size(&string));
ptr += r_size(&string);
break;
case t_real:
sprintf(Buf, "%f", Element.value.realval);
strcpy(ptr, Buf);
ptr += strlen(Buf);
break;
case t_integer:
sprintf(Buf, "%d", Element.value.intval);
strcpy(ptr, Buf);
ptr += strlen(Buf);
break;
case t_operator:
{ op_def const *op;
op = op_index_def(r_size(&Element));
strcpy(ptr, op->oname + 1);
ptr += strlen(op->oname + 1);
}
break;
default:
break;
}
}
}
}
return ptr - Buffer;
}
static inline void decode_bytes(byte *p, const byte *s, int l, int lenIV)
{ ushort state = 4330;
for (; l; s++, l--) {
uchar c = (*s ^ (state >> 8));
state = (*s + state) * crypt_c1 + crypt_c2;
if (lenIV > 0)
lenIV--;
else {
*p = c;
p++;
}
}
}
static ushort get_type1_data(FAPI_font *ff, const ref *type1string,
byte *buf, ushort buf_length)
{ gs_font_type1 *pfont = (gs_font_type1 *)ff->client_font_data;
int lenIV = max(pfont->data.lenIV, 0);
int length = r_size(type1string) - (ff->need_decrypt ? lenIV : 0);
if (buf != 0) {
int l = min(length, buf_length); /*safety */
if (ff->need_decrypt && pfont->data.lenIV >= 0)
decode_bytes(buf, type1string->value.const_bytes, l + lenIV, lenIV);
else
memcpy(buf, type1string->value.const_bytes, l);
}
return length;
}
static ushort FAPI_FF_get_gsubr(FAPI_font *ff, int index, byte *buf, ushort buf_length)
{ ref *pdr = (ref *)ff->client_font_data2;
ref *Private, *GlobalSubrs, subr;
if (dict_find_string(pdr, "Private", &Private) <= 0)
return 0;
if (dict_find_string(Private, "GlobalSubrs", &GlobalSubrs) <= 0)
return 0;
if (array_get(ff->memory,
GlobalSubrs, index, &subr) < 0 || r_type(&subr) != t_string)
return 0;
return get_type1_data(ff, &subr, buf, buf_length);
}
static ushort FAPI_FF_get_subr(FAPI_font *ff, int index, byte *buf, ushort buf_length)
{ ref *pdr = (ref *)ff->client_font_data2;
ref *Private, *Subrs, subr;
if (dict_find_string(pdr, "Private", &Private) <= 0)
return 0;
if (dict_find_string(Private, "Subrs", &Subrs) <= 0)
return 0;
if (array_get(ff->memory, Subrs, index, &subr) < 0 || r_type(&subr) != t_string)
return 0;
return get_type1_data(ff, &subr, buf, buf_length);
}
static ushort FAPI_FF_get_raw_subr(FAPI_font *ff, int index, byte *buf, ushort buf_length)
{ ref *pdr = (ref *)ff->client_font_data2;
ref *Private, *Subrs, subr;
if (dict_find_string(pdr, "Private", &Private) <= 0)
return 0;
if (dict_find_string(Private, "Subrs", &Subrs) <= 0)
return 0;
if (array_get(ff->memory, Subrs, index, &subr) < 0 || r_type(&subr) != t_string)
return 0;
if (buf && buf_length && buf_length >= r_size(&subr)) {
memcpy(buf, subr.value.const_bytes, r_size(&subr));
}
return r_size(&subr);
}
static ushort FAPI_FF_get_charstring_name(FAPI_font *ff, int index, byte *buf, ushort buf_length)
{
ref *pdr = (ref *)ff->client_font_data2;
ref *CharStrings, eltp[2], string;
if (dict_find_string(pdr, "CharStrings", &CharStrings) <= 0)
return 0;
if (dict_index_entry(CharStrings, index, eltp) < 0)
return 0;
name_string_ref(ff->memory, &eltp[0], &string);
if(r_size(&string) > buf_length)
return r_size(&string);
memcpy(buf, string.value.const_bytes, r_size(&string));
buf[r_size(&string)] = 0x00;
return r_size(&string);
}
static ushort FAPI_FF_get_charstring(FAPI_font *ff, int index, byte *buf, ushort buf_length)
{
ref *pdr = (ref *)ff->client_font_data2;
ref *CharStrings, eltp[2];
if (dict_find_string(pdr, "CharStrings", &CharStrings) <= 0)
return 0;
if (dict_index_entry(CharStrings, index, eltp) < 0)
return 0;
if (buf && buf_length && buf_length >= r_size(&eltp[1])) {
memcpy(buf, eltp[1].value.const_bytes, r_size(&eltp[1]));
}
return r_size(&eltp[1]);
}
static bool sfnt_get_glyph_offset(ref *pdr, gs_font_type42 *pfont42, int index, ulong *offset0)
{ /* Note : TTC is not supported and probably is unuseful for Type 42. */
sfnts_reader r;
int glyf_elem_size = (pfont42->data.indexToLocFormat) ? 4 : 2;
sfnts_reader_init(&r, pdr);
r.seek(&r, pfont42->data.loca + index * glyf_elem_size);
*offset0 = pfont42->data.glyf + (glyf_elem_size == 2 ? r.rword(&r) * 2 : r.rlong(&r));
return r.error;
}
static int get_GlyphDirectory_data_ptr(const gs_memory_t *mem,
ref *pdr, int char_code, const byte **ptr)
{
ref *GlyphDirectory, glyph0, *glyph = &glyph0, glyph_index;
if (dict_find_string(pdr, "GlyphDirectory", &GlyphDirectory) > 0) {
if (((r_type(GlyphDirectory) == t_dictionary &&
(make_int(&glyph_index, char_code),
dict_find(GlyphDirectory, &glyph_index, &glyph) > 0)) ||
(r_type(GlyphDirectory) == t_array &&
array_get(mem, GlyphDirectory, char_code, &glyph0) >= 0)
)
&& r_type(glyph) == t_string) {
*ptr = glyph->value.const_bytes;
return r_size(glyph);
} else
/* We have a GlyphDirectory, but couldn't find the glyph. If we
* return -1 then we will attempt to use glyf and loca which
* will fail. Instead return 0, so we execute an 'empty' glyph.
*/
return 0;
}
return -1;
}
static bool get_MetricsCount(FAPI_font *ff)
{ if (!ff->is_type1 && ff->is_cid) {
gs_font_cid2 *pfcid = (gs_font_cid2 *)ff->client_font_data;
return pfcid->cidata.MetricsCount;
}
return 0;
}
static int get_charstring(FAPI_font *ff, int char_code, ref **proc)
{
ref *CharStrings, char_name;
ref *pdr = (ref *)ff->client_font_data2;
if (ff->is_type1) {
if (ff->is_cid)
return -1;
if (dict_find_string(pdr, "CharStrings", &CharStrings) <= 0)
return -1;
if (ff->char_data != NULL) {
/*
* Can't use char_code in this case because hooked Type 1 fonts
* with 'glyphshow' may render a character which has no
* Encoding entry.
*/
if (name_ref(ff->memory, ff->char_data,
ff->char_data_len, &char_name, -1) < 0)
return -1;
} else { /* seac */
i_ctx_t *i_ctx_p = (i_ctx_t *)ff->client_ctx_p;
ref *StandardEncoding;
if (dict_find_string(systemdict, "StandardEncoding", &StandardEncoding) <= 0 ||
array_get(ff->memory, StandardEncoding, char_code, &char_name) < 0)
if (name_ref(ff->memory, (const byte *)".notdef", 7, &char_name, -1) < 0)
return -1;
}
if (dict_find(CharStrings, &char_name, (ref **)proc) <= 0)
return -1;
}
return 0;
}
static int FAPI_FF_get_glyph(FAPI_font *ff, int char_code, byte *buf, ushort buf_length)
{ /*
* We assume that renderer requests glyph data with multiple
* consecutive calls to this function.
*
* For a simple glyph it calls this function exactly twice: first
* with buf == NULL for requesting the necessary buffer length, and
* second with buf != NULL for requesting the data (the second call
* may be skipped if the renderer discontinues the rendering).
*
* For a composite glyph it calls this function 2 * (N + 1)
* times: 2 calls for the main glyph (same as above) followed with
* 2 * N calls for subglyphs, where N is less or equal to the number
* of subglyphs (N may be less if the renderer caches glyph data,
* or discontinues rendering on an exception).
*/
ref *pdr = (ref *)ff->client_font_data2;
ushort glyph_length;
i_ctx_t *i_ctx_p = (i_ctx_t *)ff->client_ctx_p;
if (ff->is_type1) {
if (ff->is_cid) {
const ref *glyph = ff->char_data;
glyph_length = get_type1_data(ff, glyph, buf, buf_length);
} else {
ref *CharStrings, char_name, *glyph;
if (ff->char_data != NULL) {
/*
* Can't use char_code in this case because hooked Type 1 fonts
* with 'glyphshow' may render a character which has no
* Encoding entry.
*/
if (name_ref(ff->memory, ff->char_data,
ff->char_data_len, &char_name, -1) < 0)
return -1;
if (buf != NULL) {
/*
* Trigger the next call to the 'seac' case below.
* Here we use the assumption about call sequence
* being documented above.
*/
ff->char_data = NULL;
}
} else { /* seac */
ref *StandardEncoding;
if (dict_find_string(systemdict, "StandardEncoding", &StandardEncoding) <= 0 ||
array_get(ff->memory, StandardEncoding, char_code, &char_name) < 0)
if (name_ref(ff->memory, (const byte *)".notdef", 7, &char_name, -1) < 0)
return -1;
}
if (dict_find_string(pdr, "CharStrings", &CharStrings) <= 0)
return -1;
if (dict_find(CharStrings, &char_name, &glyph) <= 0) {
if (name_ref(ff->memory, (const byte *)".notdef", 7, &char_name, -1) < 0) {
return -1;
}
if (dict_find(CharStrings, &char_name, &glyph) <= 0) {
return -1;
}
}
if (r_has_type(glyph, t_array) || r_has_type(glyph, t_mixedarray))
return -1;
glyph_length = get_type1_data(ff, glyph, buf, buf_length);
}
} else { /* type 42 */
const byte *data_ptr;
int l = get_GlyphDirectory_data_ptr(ff->memory, pdr, char_code, &data_ptr);
/* We should only render the TT notdef if we've been told to - logic lifted from zchar42.c */
if (!i_ctx_p->RenderTTNotdef && ((ff->char_data_len == 7 && strncmp((const char *)ff->char_data, ".notdef", 7) == 0)
|| (ff->char_data_len > 9 && strncmp((const char *)ff->char_data, ".notdef~GS", 10) == 0))) {
glyph_length = 0;
}
else {
if (l >= 0) {
int MetricsCount = get_MetricsCount(ff), mc = MetricsCount << 1;
glyph_length = max((ushort)(l - mc), 0); /* safety */
if (buf != 0 && glyph_length > 0)
memcpy(buf, data_ptr + mc, min(glyph_length, buf_length)/* safety */);
} else {
gs_font_type42 *pfont42 = (gs_font_type42 *)ff->client_font_data;
ulong offset0, length_read;
bool error = sfnt_get_glyph_offset(pdr, pfont42, char_code, &offset0);
glyph_length = (error ? -1 : pfont42->data.len_glyphs[char_code]);
if (buf != 0 && !error) {
sfnts_reader r;
sfnts_reader_init(&r, pdr);
r.seek(&r, offset0);
length_read = r.rstring(&r, buf, min(glyph_length, buf_length)/* safety */);
if (r.error == 1) {
glyph_length = -1;
}
/* r.error == 2 means a rangecheck, and probably means that the
* font is broken, and the final glyph length is longer than the data available for it.
* In which case we need to return the number of bytes read.
*/
if (r.error == 2) {
glyph_length = length_read;
}
}
}
}
}
return glyph_length;
}
/* If we're rendering an uncached glyph, we need to know
* whether we're filling it with a pattern, and whether
* transparency is involved - if so, we have to produce
* a path outline, and not a bitmap.
*/
static bool using_transparency_pattern (gs_state *pgs)
{
gx_device *dev = gs_currentdevice_inline(pgs);
return((!gs_color_writes_pure(pgs)) && dev->procs.begin_transparency_group != NULL && dev->procs.end_transparency_group != NULL);
}
static bool produce_outline_char (i_ctx_t *i_ctx_p, gs_show_enum *penum_s, gs_font_base *pbfont, int abits, gs_log2_scale_point *log2_scale)
{
gs_state *pgs = (gs_state *)penum_s->pis;
log2_scale->x = 0;
log2_scale->y = 0;
/* Checking both gx_compute_text_oversampling() result, and abits (below) may seem redundant,
* and hopefully it will be soon, but for now, gx_compute_text_oversampling() could opt to
* "oversample" sufficiently small glyphs (fwiw, I don't think gx_compute_text_oversampling is
* working as intended in that respect), regardless of the device's anti-alias setting.
* This was an old, partial solution for dropouts in small glyphs.
*/
gx_compute_text_oversampling(penum_s, (gs_font *)pbfont, abits, log2_scale);
return (pgs->in_charpath || pbfont->PaintType != 0 ||
(pgs->in_cachedevice != CACHE_DEVICE_CACHING && using_transparency_pattern ((gs_state *)penum_s->pis)) ||
(pgs->in_cachedevice != CACHE_DEVICE_CACHING && (log2_scale->x > 0 || log2_scale->y > 0)) ||
(pgs->in_cachedevice != CACHE_DEVICE_CACHING && abits > 1));
}
static const FAPI_font ff_stub = {
0, /* server_font_data */
0, /* need_decrypt */
NULL, /* const gs_memory_t */
0, /* font_file_path */
0, /* subfont */
false, /* is_type1 */
false, /* is_cid */
false, /* is_outline_font */
false, /* is_mtx_skipped */
false, /* is_vertical */
0, /* client_ctx_p */
0, /* client_font_data */
0, /* client_font_data2 */
0, /* char_data */
0, /* char_data_len */
FAPI_FF_get_word,
FAPI_FF_get_long,
FAPI_FF_get_float,
FAPI_FF_get_name,
FAPI_FF_get_proc,
FAPI_FF_get_gsubr,
FAPI_FF_get_subr,
FAPI_FF_get_raw_subr,
FAPI_FF_get_glyph,
FAPI_FF_serialize_tt_font,
FAPI_FF_get_charstring,
FAPI_FF_get_charstring_name
};
static int FAPI_get_xlatmap(i_ctx_t *i_ctx_p, char **xlatmap)
{ ref *pref;
int code;
if ((code = dict_find_string(systemdict, ".xlatmap", &pref)) < 0)
return code;
if (r_type(pref) != t_string)
return_error(e_typecheck);
*xlatmap = (char *)pref->value.bytes;
/* Note : this supposes that xlatmap doesn't move in virtual memory.
Garbager must not be called while plugin executes get_scaled_font, get_decodingID.
Fix some day with making copy of xlatmap in system memory.
*/
return 0;
}
static int renderer_retcode(i_ctx_t *i_ctx_p, FAPI_server *I, FAPI_retcode rc)
{ if (rc == 0)
return 0;
emprintf2(imemory,
"Error: Font Renderer Plugin ( %s ) return code = %d\n",
I->ig.d->subtype,
rc);
return rc < 0 ? rc : e_invalidfont;
}
static int zFAPIavailable(i_ctx_t *i_ctx_p)
{ i_plugin_holder *h = i_plugin_get_list(i_ctx_p);
bool available = true;
os_ptr op = osp;
for (; h != 0; h = h->next)
if (!strcmp(h->I->d->type,"FAPI"))
goto found;
available = false;
found :
push(1);
make_bool(op, available);
return 0;
}
static void get_server_param(i_ctx_t *i_ctx_p, const char *subtype, const byte **server_param, int *server_param_size)
{ ref *FAPIconfig, *options, *server_options;
if (dict_find_string(systemdict, ".FAPIconfig", &FAPIconfig) >= 0 && r_has_type(FAPIconfig, t_dictionary)) {
if (dict_find_string(FAPIconfig, "ServerOptions", &options) >= 0 && r_has_type(options, t_dictionary)) {
if (dict_find_string(options, subtype, &server_options) >= 0 && r_has_type(server_options, t_string)) {
*server_param = server_options->value.const_bytes;
*server_param_size = r_size(server_options);
}
}
}
}
static int FAPI_find_plugin(i_ctx_t *i_ctx_p, const char *subtype, FAPI_server **pI)
{ i_plugin_holder *h = i_plugin_get_list(i_ctx_p);
int code;
for (; h != 0; h = h->next)
if (!strcmp(h->I->d->type,"FAPI"))
if (!strcmp(h->I->d->subtype, subtype)) {
FAPI_server *I = *pI = (FAPI_server *)h->I;
const byte *server_param = NULL;
int server_param_size = 0;
get_server_param(i_ctx_p, subtype, &server_param, &server_param_size);
if ((code = renderer_retcode(i_ctx_p, I, I->ensure_open(I, server_param, server_param_size))) < 0)
return code;
return 0;
}
return_error(e_invalidfont);
}
static inline void release_typeface(FAPI_server *I, void **server_font_data)
{
I->release_typeface(I, *server_font_data);
I->face.font_id = gs_no_id;
if (I->ff.server_font_data == *server_font_data)
I->ff.server_font_data = 0;
*server_font_data = 0;
}
static int FAPI_prepare_font(i_ctx_t *i_ctx_p, FAPI_server *I, ref *pdr, gs_font_base *pbfont,
const char *font_file_path, const FAPI_font_scale *font_scale,
const char *xlatmap, int BBox[4], const char **decodingID)
{ /* Returns 1 iff BBox is set. */
/* Cleans up server's font data if failed. */
/* A renderer may need to access the top level font's data of
* a CIDFontType 0 (FontType 9) font while preparing its subfonts,
* and/or perform a completion action with the top level font after
* its descendants are prepared. Therefore with such fonts
* we first call get_scaled_font(..., FAPI_TOPLEVEL_BEGIN), then
* get_scaled_font(..., i) with eash descendant font index i,
* and then get_scaled_font(..., FAPI_TOPLEVEL_COMPLETE).
* For other fonts we don't call with 'i'.
*
* Actually server's data for top level CIDFontTYpe 0 non-disk fonts should not be important,
* because with non-disk fonts FAPI_do_char never deals with the top-level font,
* but does with its descendants individually.
* Therefore a recommendation for the renderer is don't build any special
* data for the top-level non-disk font of CIDFontType 0, but return immediately
* with success code and NULL data pointer.
*
* get_scaled_font may be called for same font at second time,
* so the renderen must check whether the data is already built.
*/
int code, bbox_set = 0;
ref *SubfontId;
int subfont;
I->ff = ff_stub;
if (dict_find_string(pdr, "SubfontId", &SubfontId) >= 0 && r_has_type(SubfontId, t_integer))
subfont = SubfontId->value.intval;
else
subfont = 0;
I->ff.subfont = subfont;
I->ff.font_file_path = font_file_path;
I->ff.is_type1 = IsType1GlyphData(pbfont);
I->ff.is_vertical = (pbfont->WMode != 0);
I->ff.memory = imemory;
I->ff.client_ctx_p = i_ctx_p;
I->ff.client_font_data = pbfont;
I->ff.client_font_data2 = pdr;
I->ff.server_font_data = pbfont->FAPI_font_data; /* Possibly pass it from zFAPIpassfont. */
I->ff.is_cid = IsCIDFont(pbfont);
I->ff.is_outline_font = pbfont->PaintType != 0;
I->ff.is_mtx_skipped = (get_MetricsCount(&I->ff) != 0);
if ((code = renderer_retcode(i_ctx_p, I, I->get_scaled_font(I, &I->ff,
font_scale, xlatmap, FAPI_TOPLEVEL_BEGIN))) < 0)
return code;
pbfont->FAPI_font_data = I->ff.server_font_data; /* Save it back to GS font. */
if (I->ff.server_font_data != 0) {
if ((code = renderer_retcode(i_ctx_p, I, I->get_font_bbox(I, &I->ff, BBox))) < 0) {
release_typeface(I, &pbfont->FAPI_font_data);
return code;
}
bbox_set = 1;
}
if (xlatmap != NULL && pbfont->FAPI_font_data != NULL)
if ((code = renderer_retcode(i_ctx_p, I, I->get_decodingID(I, &I->ff, decodingID))) < 0) {
release_typeface(I, &pbfont->FAPI_font_data);
return code;
}
/* Prepare descendant fonts : */
if (font_file_path == NULL && I->ff.is_type1 && I->ff.is_cid) { /* Renderers should expect same condition. */
gs_font_cid0 *pfcid = (gs_font_cid0 *)pbfont;
gs_font_type1 **FDArray = pfcid->cidata.FDArray;
int i, n = pfcid->cidata.FDArray_size;
ref *rFDArray, f;
if (dict_find_string(pdr, "FDArray", &rFDArray) <= 0 || r_type(rFDArray) != t_array)
return_error(e_invalidfont);
I->ff = ff_stub;
I->ff.is_type1 = true;
I->ff.is_vertical = false; /* A subfont may be shared with another fonts. */
I->ff.memory = imemory;
I->ff.client_ctx_p = i_ctx_p;
for (i = 0; i < n; i++) {
gs_font_type1 *pbfont1 = FDArray[i];
int BBox_temp[4];
pbfont1->FontBBox = pbfont->FontBBox; /* Inherit FontBBox from the type 9 font. */
if(array_get(imemory, rFDArray, i, &f) < 0 || r_type(&f) != t_dictionary)
return_error(e_invalidfont);
I->ff.client_font_data = pbfont1;
pbfont1->FAPI = pbfont->FAPI;
I->ff.client_font_data2 = &f;
I->ff.server_font_data = pbfont1->FAPI_font_data;
I->ff.is_cid = true;
I->ff.is_outline_font = pbfont1->PaintType != 0;
I->ff.is_mtx_skipped = (get_MetricsCount(&I->ff) != 0);
I->ff.subfont = 0;
if ((code = renderer_retcode(i_ctx_p, I, I->get_scaled_font(I, &I->ff,
font_scale, NULL, i))) < 0)
break;
pbfont1->FAPI_font_data = I->ff.server_font_data; /* Save it back to GS font. */
/* Try to do something with the descendant font to ensure that it's working : */
if ((code = renderer_retcode(i_ctx_p, I, I->get_font_bbox(I, &I->ff, BBox_temp))) < 0)
break;
}
if (i == n) {
code = renderer_retcode(i_ctx_p, I, I->get_scaled_font(I, &I->ff,
font_scale, NULL, FAPI_TOPLEVEL_COMPLETE));
if (code >= 0)
return bbox_set; /* Full success. */
}
/* Fail, release server's font data : */
for (i = 0; i < n; i++) {
gs_font_type1 *pbfont1 = FDArray[i];
if (pbfont1->FAPI_font_data != NULL)
release_typeface(I, &pbfont1->FAPI_font_data);
}
if (pbfont->FAPI_font_data != NULL)
release_typeface(I, &pbfont->FAPI_font_data);
return_error(e_invalidfont);
} else {
code = renderer_retcode(i_ctx_p, I, I->get_scaled_font(I, &I->ff,
font_scale, xlatmap, FAPI_TOPLEVEL_COMPLETE));
if (code < 0) {
release_typeface(I, &pbfont->FAPI_font_data);
return code;
}
return bbox_set;
}
}
static int FAPI_refine_font(i_ctx_t *i_ctx_p, os_ptr op, gs_font_base *pbfont, const char *font_file_path)
{ ref *pdr = op; /* font dict */
double size, size1;
int BBox[4], scale;
const char *decodingID = NULL;
char *xlatmap = NULL;
FAPI_server *I = pbfont->FAPI;
FAPI_font_scale font_scale = {{1, 0, 0, 1, 0, 0}, {0, 0}, {1, 1}, true};
ref *Decoding_old;
int code;
if (font_file_path != NULL && pbfont->FAPI_font_data == NULL)
if ((code = FAPI_get_xlatmap(i_ctx_p, &xlatmap)) < 0)
return code;
scale = 1 << I->frac_shift;
size1 = size = 1 / hypot(pbfont->FontMatrix.xx, pbfont->FontMatrix.xy);
if (size < 1000)
size = 1000;
if (size1 > 100)
size1 = (int)(size1 + 0.5);
font_scale.matrix[0] = font_scale.matrix[3] = (int)(size * scale + 0.5);
font_scale.HWResolution[0] = (FracInt)(72 * scale);
font_scale.HWResolution[1] = (FracInt)(72 * scale);
code = FAPI_prepare_font(i_ctx_p, I, pdr, pbfont, font_file_path, &font_scale, xlatmap, BBox, &decodingID);
if (code < 0)
return code;
if (code > 0) {
/* Refine FontBBox : */
ref *v, mat[4], arr;
int attrs;
pbfont->FontBBox.p.x = (double)BBox[0] * size1 / size;
pbfont->FontBBox.p.y = (double)BBox[1] * size1 / size;
pbfont->FontBBox.q.x = (double)BBox[2] * size1 / size;
pbfont->FontBBox.q.y = (double)BBox[3] * size1 / size;
if (dict_find_string(op, "FontBBox", &v) > 0) {
if(!r_has_type(v, t_array) && !r_has_type(v, t_shortarray) && !r_has_type(v, t_mixedarray))
return_error(e_invalidfont);
make_real(&mat[0], pbfont->FontBBox.p.x);
make_real(&mat[1], pbfont->FontBBox.p.y);
make_real(&mat[2], pbfont->FontBBox.q.x);
make_real(&mat[3], pbfont->FontBBox.q.y);
if(r_has_type(v, t_shortarray) || r_has_type(v, t_mixedarray) || r_size(v) < 4) {
/* Create a new full blown array in case the values are reals */
code = ialloc_ref_array(&arr, a_all, 4, "array");
if (code < 0)
return code;
v = &arr;
code = idict_put_string(op, "FontBBox", &arr);
if (code < 0)
return code;
ref_assign_new(v->value.refs + 0, &mat[0]);
ref_assign_new(v->value.refs + 1, &mat[1]);
ref_assign_new(v->value.refs + 2, &mat[2]);
ref_assign_new(v->value.refs + 3, &mat[3]);
} else {
ref_assign_old(v, v->value.refs + 0, &mat[0], "FAPI_refine_font_BBox");
ref_assign_old(v, v->value.refs + 1, &mat[1], "FAPI_refine_font_BBox");
ref_assign_old(v, v->value.refs + 2, &mat[2], "FAPI_refine_font_BBox");
ref_assign_old(v, v->value.refs + 3, &mat[3], "FAPI_refine_font_BBox");
}
attrs = v->tas.type_attrs;
r_clear_attrs(v, a_all);
r_set_attrs(v, attrs | a_execute);
}
}
/* Assign a Decoding : */
if (decodingID != 0 && *decodingID && dict_find_string(pdr, "Decoding", &Decoding_old) <= 0) {
ref Decoding;
if (IsCIDFont(pbfont)) {
ref *CIDSystemInfo, *Ordering, SubstNWP;
byte buf[30];
int ordering_length, decodingID_length = min(strlen(decodingID), sizeof(buf) - 2);
if (dict_find_string(pdr, "CIDSystemInfo", &CIDSystemInfo) <= 0 || !r_has_type(CIDSystemInfo, t_dictionary))
return_error(e_invalidfont);
if (dict_find_string(CIDSystemInfo, "Ordering", &Ordering) <= 0 || !r_has_type(Ordering, t_string))
return_error(e_invalidfont);
ordering_length = min(r_size(Ordering), sizeof(buf) - 2 - decodingID_length);
memcpy(buf, Ordering->value.const_bytes, ordering_length);
if ((code = name_ref(imemory, buf, ordering_length, &SubstNWP, 0)) < 0)
return code;
if ((code = dict_put_string(pdr, "SubstNWP", &SubstNWP, NULL)) < 0)
return code;
buf[ordering_length] = '.';
memcpy(buf + ordering_length + 1, decodingID, decodingID_length);
buf[decodingID_length + 1 + ordering_length] = 0; /* Debug purpose only */
if ((code = name_ref(imemory, buf,
decodingID_length + 1 + ordering_length, &Decoding, 0)) < 0)
return code;
} else
if ((code = name_ref(imemory, (const byte *)decodingID,
strlen(decodingID), &Decoding, 0)) < 0)
return code;
if ((code = dict_put_string(pdr, "Decoding", &Decoding, NULL)) < 0)
return code;
}
return 0;
}
static int notify_remove_font(void *proc_data, void *event_data)
{ /* gs_font_finalize passes event_data == NULL, so check it here. */
if (event_data == NULL) {
gs_font_base *pbfont = proc_data;
FAPI_server *I = pbfont->FAPI;
if (pbfont->FAPI_font_data != 0) {
release_typeface(I, &pbfont->FAPI_font_data);
}
}
return 0;
}
/* <string|name> <font> <is_disk_font> .rebuildfontFAPI <string|name> <font> */
/* Rebuild a font for handling it with an external renderer.
The font was built as a native GS font to allow easy access
to font features. Then zFAPIrebuildfont sets FAPI entry
into gx_font_base and replaces BuildGlyph and BuildChar
to enforce the FAPI handling.
This operator must not be called with devices which embed fonts.
*/
static int zFAPIrebuildfont(i_ctx_t *i_ctx_p)
{ os_ptr op = osp;
build_proc_refs build;
gs_font *pfont;
int code = font_param(op - 1, &pfont), code1;
gs_font_base *pbfont = (gs_font_base *)pfont;
ref *v;
char *font_file_path = NULL, FAPI_ID[20];
const byte *pchars;
uint len;
font_data *pdata;
FAPI_server *I;
bool has_buildglyph;
bool has_buildchar;
if (code < 0)
return code;
check_type(*op, t_boolean);
if (pbfont->FAPI != 0) {
/* If the font was processed with zFAPIpassfont,
it already has an attached FAPI and server_font_data.
Don't change them here.
*/
} else {
if (dict_find_string(op - 1, "FAPI", &v) <= 0 || !r_has_type(v, t_name))
return_error(e_invalidfont);
obj_string_data(imemory, v, &pchars, &len);
len = min(len, sizeof(FAPI_ID) - 1);
strncpy(FAPI_ID, (const char *)pchars, len);
FAPI_ID[len] = 0;
if ((code = FAPI_find_plugin(i_ctx_p, FAPI_ID, &pbfont->FAPI)) < 0)
return code;
}
pdata = (font_data *)pfont->client_data;
I = pbfont->FAPI;
if (r_type(&(pdata->BuildGlyph)) != t_null) {
has_buildglyph = true;
} else {
has_buildglyph = false;
}
if (r_type(&(pdata->BuildChar)) != t_null) {
has_buildchar = true;
} else {
has_buildchar = false;
}
/* This shouldn't happen, but just in case */
if (has_buildglyph == false && has_buildchar == false) {
has_buildglyph = true;
}
if (dict_find_string(op - 1, "Path", &v) <= 0 || !r_has_type(v, t_string))
v = NULL;
if (pfont->FontType == ft_CID_encrypted && v == NULL) {
if ((code = build_proc_name_refs(imemory, &build, ".FAPIBuildGlyph9", ".FAPIBuildGlyph9")) < 0)
return code;
} else
if ((code = build_proc_name_refs(imemory, &build, ".FAPIBuildChar", ".FAPIBuildGlyph")) < 0)
return code;
if ((r_type(&(pdata->BuildChar)) != t_null && pdata->BuildChar.value.pname && build.BuildChar.value.pname &&
name_index(imemory, &pdata->BuildChar) == name_index(imemory, &build.BuildChar))
|| (r_type(&(pdata->BuildGlyph)) != t_null && pdata->BuildGlyph.value.pname && build.BuildGlyph.value.pname &&
name_index(imemory, &pdata->BuildGlyph) == name_index(imemory, &build.BuildGlyph))) {
/* Already rebuilt - maybe a substituted font. */
} else {
if (has_buildchar == true) {
ref_assign_new(&pdata->BuildChar, &build.BuildChar);
} else {
make_null(&pdata->BuildChar);
}
if (has_buildglyph == true) {
ref_assign_new(&pdata->BuildGlyph, &build.BuildGlyph);
} else {
make_null(&pdata->BuildGlyph);
}
if (v != NULL)
font_file_path = ref_to_string(v, imemory_global, "font file path");
code = FAPI_refine_font(i_ctx_p, op - 1, pbfont, font_file_path);
memcpy(&I->initial_FontMatrix, &pbfont->FontMatrix, sizeof(gs_matrix));
if (font_file_path != NULL)
gs_free_string(imemory_global, (byte *)font_file_path, r_size(v) + 1, "font file path");
code1 = gs_notify_register(&pfont->notify_list, notify_remove_font, pbfont);
(void)code1; /* Recover possible error just ignoring it. */
}
pop(1);
return code;
}
static ulong array_find(const gs_memory_t *mem, ref *Encoding, ref *char_name) {
ulong n = r_size(Encoding), i;
ref v;
for (i = 0; i < n; i++)
if (array_get(mem, Encoding, i, &v) < 0)
break;
else if(r_type(char_name) == r_type(&v) && char_name->value.const_pname == v.value.const_pname)
return i;
return 0;
}
static int outline_char(i_ctx_t *i_ctx_p, FAPI_server *I, int import_shift_v, gs_show_enum *penum_s, struct gx_path_s *path, bool close_path)
{ FAPI_path path_interface = path_interface_stub;
FAPI_outline_handler olh;
int code;
gs_state *pgs;
extern_st(st_gs_show_enum);
extern_st(st_gs_state);
if (gs_object_type(penum_s->memory, penum_s) == &st_gs_show_enum) {
pgs = penum_s->pgs;
} else {
if (gs_object_type(penum_s->memory, penum_s->pis) == &st_gs_state) {
pgs = (gs_state *)penum_s->pis;
} else
/* No graphics state, give up... */
return_error(e_undefined);
}
olh.path = path;
olh.x0 = pgs->ctm.tx_fixed;
olh.y0 = pgs->ctm.ty_fixed;
olh.close_path = close_path;
olh.need_close = false;
path_interface.olh = &olh;
path_interface.shift = import_shift_v;
if ((code = renderer_retcode(i_ctx_p, I, I->get_char_outline(I, &path_interface))) < 0 || path_interface.gs_error != 0) {
if (path_interface.gs_error != 0)
return path_interface.gs_error;
else
return code;
}
if (olh.need_close && olh.close_path)
if ((code = add_closepath(&path_interface)) < 0)
return code;
return 0;
}
static void compute_em_scale(const gs_font_base *pbfont, FAPI_metrics *metrics, double FontMatrix_div, double *em_scale_x, double *em_scale_y)
{ /* optimize : move this stuff to FAPI_refine_font */
gs_matrix mat;
gs_matrix *m = &pbfont->base->orig_FontMatrix;
int rounding_x, rounding_y; /* Striking out the 'float' representation error in FontMatrix. */
double sx, sy;
FAPI_server *I = pbfont->FAPI;
m = &mat;
#if 1
I->get_fontmatrix(I, m);
#else
/* Temporary: replace with a FAPI call to check *if* the library needs a replacement matrix */
memset(m, 0x00, sizeof(gs_matrix));
m->xx = m->yy = 1.0;
#endif
if (m->xx == 0 && m->xy == 0 && m->yx == 0 && m->yy == 0)
m = &pbfont->base->FontMatrix;
sx = hypot(m->xx, m->xy) * metrics->em_x / FontMatrix_div;
sy = hypot(m->yx, m->yy) * metrics->em_y / FontMatrix_div;
rounding_x = (int)(0x00800000 / sx);
rounding_y = (int)(0x00800000 / sy);
*em_scale_x = (int)(sx * rounding_x + 0.5) / (double)rounding_x;
*em_scale_y = (int)(sy * rounding_y + 0.5) / (double)rounding_y;
}
static int fapi_copy_mono(gx_device *dev1, FAPI_raster *rast, int dx, int dy)
{ if ((rast->line_step & (align_bitmap_mod - 1)) == 0)
return dev_proc(dev1, copy_mono)(dev1, rast->p, 0, rast->line_step, 0, dx, dy, rast->width, rast->height, 0, 1);
else { /* bitmap data needs to be aligned, make the aligned copy : */
int line_step = bitmap_raster(rast->width), code;
byte *p = gs_alloc_byte_array(dev1->memory, rast->height, line_step, "fapi_copy_mono");
byte *q = p, *r = rast->p, *pe;
if (p == NULL)
return_error(e_VMerror);
pe = p + rast->height * line_step;
for (; q < pe; q+=line_step, r += rast->line_step)
memcpy(q, r, rast->line_step);
code = dev_proc(dev1, copy_mono)(dev1, p, 0, line_step, 0, dx, dy, rast->width, rast->height, 0, 1);
gs_free_object(dev1->memory, p, "fapi_copy_mono");
return code;
}
}
static const int frac_pixel_shift = 4;
/* NOTE: fapi_image_uncached_glyph() doesn't check various paramters: it assumes fapi_finish_render_aux()
* has done so: if it gets called from another function, the function must either do all the parameter
* validation, or fapi_image_uncached_glyph() must be changed to include the validation.
*/
static int fapi_image_uncached_glyph (i_ctx_t *i_ctx_p, gs_show_enum *penum, FAPI_raster *rast, const int import_shift_v)
{
gx_device *dev = penum->dev;
gs_state *pgs = (gs_state *)penum->pis;
int code;
const gx_clip_path * pcpath = i_ctx_p->pgs->clip_path;
const gx_drawing_color * pdcolor = penum->pdcolor;
int rast_orig_x = rast->orig_x;
int rast_orig_y = - rast->orig_y;
extern_st(st_gs_show_enum);
byte *r = rast->p;
byte *src, *dst;
int h, padbytes, cpbytes, dstr = bitmap_raster(rast->width);
int sstr = rast->line_step;
/* we can only safely use the gx_image_fill_masked() "shortcut" if we're drawing
* a "simple" colour, rather than a pattern.
*/
if (gs_color_writes_pure(pgs)) {
if (dstr != sstr) {
/* If the stride of the bitmap we've got doesn't match what the rest
* of the Ghostscript world expects, make one that does.
* Ghostscript aligns bitmap raster memory in a platform specific
* manner, so see gxbitmap.h for details.
*
* Ideally the padding bytes wouldn't matter, but currently the
* clist code ends up compressing it using bitmap compression. To
* ensure consistency across runs (and to get the best possible
* compression ratios) we therefore set such bytes to zero. It would
* be nicer if this was fixed in future.
*/
r = gs_alloc_bytes(penum->memory, dstr * rast->height, "fapi_finish_render_aux");
if (!r) {
return_error(e_VMerror);
}
cpbytes = sstr < dstr ? sstr: dstr;
padbytes = dstr-cpbytes;
h = rast->height;
src = rast->p;
dst = r;
if (padbytes > 0)
{
while (h-- > 0) {
memcpy(dst, src, cpbytes);
memset(dst+cpbytes, 0, padbytes);
src += sstr;
dst += dstr;
}
}
else
{
while (h-- > 0) {
memcpy(dst, src, cpbytes);
src += sstr;
dst += dstr;
}
}
}
if (gs_object_type(penum->memory, penum) == &st_gs_show_enum) {
code = gx_image_fill_masked(dev, r, 0, dstr, 0,
(int)(pgs->ctm.tx + (double)rast_orig_x / (1 << frac_pixel_shift) + penum->fapi_glyph_shift.x + 0.5),
(int)(pgs->ctm.ty + (double)rast_orig_y / (1 << frac_pixel_shift) + penum->fapi_glyph_shift.y + 0.5),
rast->width, rast->height,
pdcolor, 1, rop3_default, pcpath);
} else {
code = gx_image_fill_masked(dev, r, 0, dstr, 0,
(int)(pgs->ctm.tx + (double)rast_orig_x / (1 << frac_pixel_shift) + 0.5),
(int)(pgs->ctm.ty + (double)rast_orig_y / (1 << frac_pixel_shift) + 0.5),
rast->width, rast->height,
pdcolor, 1, rop3_default, pcpath);
}
if (rast->p != r) {
gs_free_object(penum->memory, r, "fapi_finish_render_aux");
}
}
else {
gs_memory_t *mem = penum->memory->non_gc_memory;
gs_image_enum *pie = gs_image_enum_alloc(mem, "image_char(image_enum)");
gs_image_t image;
int iy, nbytes;
uint used;
int code1;
int x, y, w, h;
if (!pie) {
return_error(e_VMerror);
}
x = (int) (pgs->ctm.tx + (double)rast_orig_x / (1 << frac_pixel_shift) + 0.5);
y = (int) (pgs->ctm.ty + (double)rast_orig_y / (1 << frac_pixel_shift) + 0.5);
w = rast->width;
h = rast->height;
/* Make a matrix that will place the image */
/* at (x,y) with no transformation. */
gs_image_t_init_mask(&image, true);
gs_make_translation((floatp) -x, (floatp) -y, &image.ImageMatrix);
gs_matrix_multiply(&ctm_only(pgs), &image.ImageMatrix, &image.ImageMatrix);
image.Width = w;
image.Height = h;
image.adjust = false;
code = gs_image_init(pie, &image, false, pgs);
nbytes = (rast->width + 7) >> 3;
switch (code) {
case 1: /* empty image */
code = 0;
default:
break;
case 0:
for (iy = 0; iy < h && code >= 0; iy++, r += sstr)
code = gs_image_next(pie, r, nbytes, &used);
}
code1 = gs_image_cleanup_and_free_enum(pie, pgs);
if (code >= 0 && code1 < 0)
code = code1;
}
return(code);
}
static int fapi_finish_render_aux(i_ctx_t *i_ctx_p, gs_font_base *pbfont, FAPI_server *I)
{ gs_text_enum_t *penum = op_show_find(i_ctx_p);
gs_show_enum *penum_s = (gs_show_enum *)penum;
gs_state *pgs;
gx_device *dev1;
const int import_shift_v = _fixed_shift - 32; /* we always 32.32 values for the outline interface now */
FAPI_raster rast = {0};
int code;
extern_st(st_gs_show_enum);
extern_st(st_gs_state);
if(penum == NULL) {
return_error(e_undefined);
}
/* Ensure that pis points to a st_gs_gstate (graphics state) structure */
if (gs_object_type(penum->memory, penum->pis) != &st_gs_state) {
/* If pis is not a graphics state, see if the text enumerator is a
* show enumerator, in which case we have a pointer to the graphics state there
*/
if (gs_object_type(penum->memory, penum) == &st_gs_show_enum) {
pgs = penum_s->pgs;
} else
/* No graphics state, give up... */
return_error(e_undefined);
} else
pgs = (gs_state *)penum->pis;
dev1 = gs_currentdevice_inline(pgs); /* Possibly changed by zchar_set_cache. */
/* Even for "non-marking" text operations (for example, stringwidth) we are expected
* to have a glyph bitmap for the cache, if we're using the cache. For the
* non-cacheing, non-marking cases, we must not draw the glyph.
*/
if (igs->in_charpath && !SHOW_IS(penum, TEXT_DO_NONE)) {
if ((code = outline_char(i_ctx_p, I, import_shift_v, penum_s, pgs->path, !pbfont->PaintType)) < 0)
return code;
if ((code = gx_path_add_char_path(pgs->show_gstate->path, pgs->path, pgs->in_charpath)) < 0)
return code;
} else {
int code;
code = I->get_char_raster(I, &rast);
if (!SHOW_IS(penum, TEXT_DO_NONE) && I->use_outline) {
/* The server provides an outline instead the raster. */
gs_imager_state *pis = (gs_imager_state *)pgs->show_gstate;
gs_point pt;
if ((code = gs_currentpoint(pgs, &pt)) < 0)
return code;
if ((code = outline_char(i_ctx_p, I, import_shift_v, penum_s, pgs->path, !pbfont->PaintType)) < 0)
return code;
if ((code = gs_imager_setflat((gs_imager_state *)pgs, gs_char_flatness(pis, 1.0))) < 0)
return code;
if (pbfont->PaintType) {
float lw = gs_currentlinewidth(pgs);
gs_setlinewidth(pgs, pbfont->StrokeWidth);
code = gs_stroke(pgs);
gs_setlinewidth(pgs, lw);
if (code < 0)
return code;
} else {
gs_in_cache_device_t in_cachedevice = pgs->in_cachedevice;
pgs->in_cachedevice = CACHE_DEVICE_NOT_CACHING;
pgs->fill_adjust.x = pgs->fill_adjust.y = 0;
if ((code = gs_fill(pgs)) < 0)
return code;
pgs->in_cachedevice = in_cachedevice;
}
if ((code = gs_moveto(pgs, pt.x, pt.y)) < 0)
return code;
} else {
int rast_orig_x = rast.orig_x;
int rast_orig_y = - rast.orig_y;
if (pgs->in_cachedevice == CACHE_DEVICE_CACHING) { /* Using GS cache */
/* GS and renderer may transform coordinates few differently.
The best way is to make set_cache_device to take the renderer's bitmap metrics immediately,
but we need to account CDevProc, which may truncate the bitmap.
Perhaps GS overestimates the bitmap size,
so now we only add a compensating shift - the dx and dy.
*/
if (rast.width != 0) {
int shift_rd = _fixed_shift - frac_pixel_shift;
int rounding = 1 << (frac_pixel_shift - 1);
int dx = arith_rshift_slow((pgs->ctm.tx_fixed >> shift_rd) + rast_orig_x + rounding, frac_pixel_shift);
int dy = arith_rshift_slow((pgs->ctm.ty_fixed >> shift_rd) + rast_orig_y + rounding, frac_pixel_shift);
if (dx + rast.left_indent < 0 || dx + rast.left_indent + rast.black_width > dev1->width) {
#ifdef DEBUG
if (gs_debug_c('m')) {
emprintf2(dev1->memory,
"Warning : Cropping a FAPI glyph while caching : dx=%d,%d.\n",
dx + rast.left_indent,
dx + rast.left_indent + rast.black_width - dev1->width);
}
#endif
if (dx + rast.left_indent < 0)
dx -= dx + rast.left_indent;
}
if (dy + rast.top_indent < 0 || dy + rast.top_indent + rast.black_height > dev1->height) {
#ifdef DEBUG
if (gs_debug_c('m')) {
emprintf2(dev1->memory,
"Warning : Cropping a FAPI glyph while caching : dx=%d,%d.\n",
dy + rast.top_indent,
dy + rast.top_indent + rast.black_height - dev1->height);
}
#endif
if (dy + rast.top_indent < 0)
dy -= dy + rast.top_indent;
}
if ((code = fapi_copy_mono(dev1, &rast, dx, dy)) < 0)
return code;
if (gs_object_type(penum->memory, penum) == &st_gs_show_enum) {
penum_s->cc->offset.x += float2fixed(penum_s->fapi_glyph_shift.x);
penum_s->cc->offset.y += float2fixed(penum_s->fapi_glyph_shift.y);
}
}
} else if (!SHOW_IS(penum, TEXT_DO_NONE)) { /* Not using GS cache */
if ((code = fapi_image_uncached_glyph(i_ctx_p, penum_s, &rast, import_shift_v)) < 0)
return code;
}
}
}
pop(2);
return 0;
}
static int fapi_finish_render(i_ctx_t *i_ctx_p)
{ os_ptr op = osp;
gs_font *pfont;
int code = font_param(op - 1, &pfont);
if (code == 0) {
gs_font_base *pbfont = (gs_font_base *) pfont;
FAPI_server *I = pbfont->FAPI;
code = fapi_finish_render_aux(i_ctx_p, pbfont, I);
I->release_char_data(I);
}
return code;
}
static const byte *
find_substring(const byte *where, int length, const char *what)
{
int l = strlen(what);
int n = length - l;
const byte *p = where;
for (; n >= 0; n--, p++)
if (!memcmp(p, what, l))
return p;
return NULL;
}
#define GET_U16_MSB(p) (((uint)((p)[0]) << 8) + (p)[1])
#define GET_S16_MSB(p) (int)((GET_U16_MSB(p) ^ 0x8000) - 0x8000)
#define MTX_EQ(mtx1,mtx2) (mtx1->xx == mtx2->xx && mtx1->xy == mtx2->xy && \
mtx1->yx == mtx2->yx && mtx1->yy == mtx2->yy && \
mtx1->tx == mtx2->tx && mtx1->ty == mtx2->ty)
static int FAPI_do_char(i_ctx_t *i_ctx_p, gs_font_base *pbfont, gx_device *dev, char *font_file_path, bool bBuildGlyph, ref *charstring)
{ /* Stack : <font> <code|name> --> - */
os_ptr op = osp;
ref *pdr = op - 1;
gs_text_enum_t *penum = op_show_find(i_ctx_p);
gs_show_enum *penum_s = (gs_show_enum *)penum;
/*
fixme: the following code needs to optimize with a maintainence of scaled font objects
in graphics library and in interpreter. Now we suppose that the renderer
uses font cache, so redundant font opening isn't a big expense.
*/
FAPI_char_ref cr = {0, 0, {0}, 0, false, NULL, 0, 0, 0, 0, 0, FAPI_METRICS_NOTDEF};
const gs_matrix * ctm = &ctm_only(igs);
int scale;
FAPI_metrics metrics;
FAPI_server *I = pbfont->FAPI;
int client_char_code = 0;
ref char_name, enc_char_name, *SubfontId;
bool is_TT_from_type42 = (pbfont->FontType == ft_TrueType && font_file_path == NULL);
bool is_embedded_type1 = ((pbfont->FontType == ft_encrypted ||
pbfont->FontType == ft_encrypted2) &&
font_file_path == NULL);
bool bCID = (IsCIDFont(pbfont) || charstring != NULL);
bool bIsType1GlyphData = IsType1GlyphData(pbfont);
gs_log2_scale_point log2_scale = {0, 0};
int alpha_bits = (*dev_proc(dev, get_alpha_bits)) (dev, go_text);
double FontMatrix_div = 1;
bool bVertical = (gs_rootfont(igs)->WMode != 0), bVertical0 = bVertical;
double *sbwp, sbw[4] = {0, 0, 0, 0};
double em_scale_x, em_scale_y;
gs_rect char_bbox;
op_proc_t exec_cont = 0;
int code;
bool align_to_pixels = gs_currentaligntopixels(pbfont->dir);
enum {
SBW_DONE,
SBW_SCALE,
SBW_FROM_RENDERER
} sbw_state = SBW_SCALE;
I->use_outline = false;
memset(&char_bbox, 0x00, sizeof(char_bbox));
I->ff = ff_stub;
if(bBuildGlyph && !bCID) {
if (r_type(op) != t_name) {
name_enter_string (imemory, ".notdef", op);
}
check_type(*op, t_name);
} else {
if (bBuildGlyph && pbfont->FontType == ft_CID_TrueType && r_has_type(op, t_name)) {
ref *chstrs, *chs;
/* This logic is lifted from %Type11BuildGlyph in gs_cidfn.ps
* Note we only have to deal with mistakenly being given a name object
* here, the out of range CID is handled later
*/
if ((dict_find_string(op - 1, "CharStrings", &chstrs)) <= 0) {
return_error(e_undefined);
}
if ((dict_find_string(chstrs, ".notdef", &chs)) <= 0) {
return_error(e_undefined);
}
ref_assign_inline(op, chs);
}
check_type(*op, t_integer);
}
if (penum == 0)
return_error(e_undefined);
I->use_outline = produce_outline_char(i_ctx_p, penum_s, pbfont, alpha_bits, &log2_scale);
if (I->use_outline) {
I->max_bitmap = 0;
}
else {
/* FIX ME: It can be a very bad thing, right now, for the FAPI code to decide unilaterally to
* produce an outline, when the rest of GS expects a bitmap, so we give ourselves a
* 50% leeway on the maximum cache bitmap, just to be sure. Or the same maximum bitmap size
* used in gxchar.c
*/
I->max_bitmap = pbfont->dir->ccache.upper + (pbfont->dir->ccache.upper >> 1) < MAX_TEMP_BITMAP_BITS ?
pbfont->dir->ccache.upper + (pbfont->dir->ccache.upper >> 1) : MAX_TEMP_BITMAP_BITS;
}
/* Compute the scale : */
if (!SHOW_IS(penum, TEXT_DO_NONE) && !I->use_outline) {
gs_currentcharmatrix(igs, NULL, 1); /* make char_tm valid */
penum_s->fapi_log2_scale = log2_scale;
}
else {
log2_scale.x = 0;
log2_scale.y = 0;
}
/* Prepare font data
* This needs done here (earlier than it used to be) because FAPI/UFST has conflicting
* requirements in what I->get_fontmatrix() returns based on font type, so it needs to
* find the font type.
*/
if (dict_find_string(pdr, "SubfontId", &SubfontId) > 0 && r_has_type(SubfontId, t_integer))
I->ff.subfont = SubfontId->value.intval;
else
I->ff.subfont = 0;
I->ff.memory = pbfont->memory;
I->ff.font_file_path = font_file_path;
I->ff.client_font_data = pbfont;
I->ff.client_font_data2 = pdr;
I->ff.server_font_data = pbfont->FAPI_font_data;
I->ff.is_type1 = bIsType1GlyphData;
I->ff.is_cid = bCID;
I->ff.is_outline_font = pbfont->PaintType != 0;
I->ff.is_mtx_skipped = (get_MetricsCount(&I->ff) != 0);
I->ff.is_vertical = bVertical;
I->ff.client_ctx_p = i_ctx_p;
scale = 1 << I->frac_shift;
retry_oversampling:
if (I->face.font_id != pbfont->id ||
!MTX_EQ((&I->face.ctm),ctm) ||
I->face.log2_scale.x != log2_scale.x ||
I->face.log2_scale.y != log2_scale.y ||
I->face.align_to_pixels != align_to_pixels ||
I->face.HWResolution[0] != dev->HWResolution[0] ||
I->face.HWResolution[1] != dev->HWResolution[1]
) {
FAPI_font_scale font_scale = {{1, 0, 0, 1, 0, 0}, {0, 0}, {1, 1}, true};
gs_matrix scale_mat, scale_ctm;
I->face.font_id = pbfont->id;
I->face.ctm = *ctm;
I->face.log2_scale = log2_scale;
I->face.align_to_pixels = align_to_pixels;
I->face.HWResolution[0] = dev->HWResolution[0];
I->face.HWResolution[1] = dev->HWResolution[1];
font_scale.subpixels[0] = 1 << log2_scale.x;
font_scale.subpixels[1] = 1 << log2_scale.y;
font_scale.align_to_pixels = align_to_pixels;
#if 1
/* We apply the entire transform to the glyph (that is ctm x FontMatrix)
* at render time.
*/
memset(&scale_ctm, 0x00, sizeof(gs_matrix));
scale_ctm.xx = dev->HWResolution[0]/72;
scale_ctm.yy = dev->HWResolution[1]/72;
code = gs_matrix_invert((const gs_matrix *)&scale_ctm, &scale_ctm);
code = gs_matrix_multiply(ctm, &scale_ctm, &scale_mat); /* scale_mat == CTM - resolution scaling */
code = I->get_fontmatrix(I, &scale_ctm);
code = gs_matrix_invert((const gs_matrix *)&scale_ctm, &scale_ctm);
code = gs_matrix_multiply(&scale_mat, &scale_ctm, &scale_mat); /* scale_mat == CTM - resolution scaling - FontMatrix scaling */
font_scale.matrix[0] = (FracInt)(scale_mat.xx * FontMatrix_div * scale + 0.5);
font_scale.matrix[1] = -(FracInt)(scale_mat.xy * FontMatrix_div * scale + 0.5);
font_scale.matrix[2] = (FracInt)(scale_mat.yx * FontMatrix_div * scale + 0.5);
font_scale.matrix[3] = -(FracInt)(scale_mat.yy * FontMatrix_div * scale + 0.5);
font_scale.matrix[4] = (FracInt)(scale_mat.tx * FontMatrix_div * scale + 0.5);
font_scale.matrix[5] = (FracInt)(scale_mat.ty * FontMatrix_div * scale + 0.5);
#else
# if 1
base_font_matrix = &I->initial_FontMatrix;
# else
base_font_matrix = &pbfont->base->orig_FontMatrix;
# endif
if (base_font_matrix->xx == 0 && base_font_matrix->xy == 0 &&
base_font_matrix->yx == 0 && base_font_matrix->yy == 0)
base_font_matrix = &pbfont->base->FontMatrix;
dx = hypot(base_font_matrix->xx, base_font_matrix->xy);
dy = hypot(base_font_matrix->yx, base_font_matrix->yy);
/* Trick : we need to restore the font scale from ctm, pbfont->FontMatrix,
and base_font_matrix. We assume that base_font_matrix is
a multiple of pbfont->FontMatrix with a constant from scalefont.
But we cannot devide ctm by pbfont->FontMatrix for getting
a proper result: the base_font_matrix may be XY transposition,
but we must not cut out the transposition from ctm.
Therefore we use the norm of base_font_matrix columns as the divisors
for X and Y. It is not clear what to do when base_font_matrix is anisotropic
(i.e. dx != dy), but we did not meet such fonts before now.
*/
font_scale.matrix[0] = (FracInt)(ctm->xx * FontMatrix_div / dx * 72 / dev->HWResolution[0] * scale + 0.5);
font_scale.matrix[1] = -(FracInt)(ctm->xy * FontMatrix_div / dy * 72 / dev->HWResolution[0] * scale + 0.5);
font_scale.matrix[2] = (FracInt)(ctm->yx * FontMatrix_div / dx * 72 / dev->HWResolution[1] * scale + 0.5);
font_scale.matrix[3] = -(FracInt)(ctm->yy * FontMatrix_div / dy * 72 / dev->HWResolution[1] * scale + 0.5);
font_scale.matrix[4] = (FracInt)(ctm->tx * FontMatrix_div / dx * 72 / dev->HWResolution[0] * scale + 0.5);
font_scale.matrix[5] = (FracInt)(ctm->ty * FontMatrix_div / dy * 72 / dev->HWResolution[1] * scale + 0.5);
#endif
/* Note: the ctm mapping here is upside down. */
font_scale.HWResolution[0] = (FracInt)((double)dev->HWResolution[0] * font_scale.subpixels[0] * scale);
font_scale.HWResolution[1] = (FracInt)((double)dev->HWResolution[1] * font_scale.subpixels[1] * scale);
if ((hypot ((double)font_scale.matrix[0], (double)font_scale.matrix[2]) == 0.0
|| hypot ((double)font_scale.matrix[1], (double)font_scale.matrix[3]) == 0.0)) {
/* If the matrix is degenerate, force a scale to 1 unit. */
if (!font_scale.matrix[0]) font_scale.matrix[0] = 1;
if (!font_scale.matrix[3]) font_scale.matrix[3] = 1;
}
if ((code = renderer_retcode(i_ctx_p, I, I->get_scaled_font(I, &I->ff, &font_scale,
NULL,
(!bCID || (pbfont->FontType != ft_encrypted &&
pbfont->FontType != ft_encrypted2)
? FAPI_TOPLEVEL_PREPARED : FAPI_DESCENDANT_PREPARED)))) < 0)
return code;
}
else {
}
/* Obtain the character name : */
if (bCID) {
int_param(op, 0xFFFF, &client_char_code);
make_null(&char_name);
} else if (r_has_type(op, t_integer)) {
/* Translate from PS encoding to char name : */
ref *Encoding;
int_param(op, 0xFF, &client_char_code);
if (dict_find_string(pdr, "Encoding", &Encoding) > 0 &&
(r_has_type(Encoding, t_array) ||
r_has_type(Encoding, t_shortarray) || r_has_type(Encoding, t_mixedarray))) {
if (array_get(imemory, Encoding, client_char_code, &char_name) < 0)
if ((code = name_ref(imemory, (const byte *)".notdef", 7, &char_name, -1)) < 0)
return code;
} else
return_error(e_invalidfont);
} else
char_name = *op;
/* We need to store the name as we get it (from the Encoding array), in case it's
* had the name extended (with "~GS~xx"), we'll remove the extension before passing
* it to the renderer for a disk based font. But the metrics dictionary may have
* been constructed using the extended name....
*/
ref_assign(&enc_char_name, &char_name);
/* Obtain the character code or glyph index : */
cr.char_codes_count = 1;
if (bCID) {
if (font_file_path != NULL) {
ref *Decoding, *TT_cmap, *SubstNWP;
ref src_type, dst_type;
bool is_glyph_index = true;
uint c;
if (dict_find_string(pdr, "Decoding", &Decoding) <= 0 || !r_has_type(Decoding, t_dictionary))
return_error(e_invalidfont);
if (dict_find_string(pdr, "SubstNWP", &SubstNWP) <= 0 || !r_has_type(SubstNWP, t_array))
return_error(e_invalidfont);
if (dict_find_string(pdr, "TT_cmap", &TT_cmap) <= 0 || !r_has_type(TT_cmap, t_dictionary)) {
ref *DecodingArray, char_code, char_code1, ih;
int i = client_char_code % 256, n;
make_int(&ih, client_char_code / 256);
/* Check the Decoding array for this block of CIDs */
if (dict_find(Decoding, &ih, &DecodingArray) <= 0 ||
!r_has_type(DecodingArray, t_array) ||
array_get(imemory, DecodingArray, i, &char_code) < 0)
return_error(e_invalidfont);
/* Check the Decoding entry */
if (r_has_type(&char_code, t_integer))
n = 1;
else if (r_has_type(&char_code, t_array)) {
DecodingArray = &char_code;
i = 0;
n = r_size(DecodingArray);
} else
return_error(e_invalidfont);
for (;n--; i++) {
if (array_get(imemory, DecodingArray, i, &char_code1) < 0 ||
!r_has_type(&char_code1, t_integer))
return_error(e_invalidfont);
c = char_code1.value.intval;
I->check_cmap_for_GID(I, &c);
if (c != 0)
break;
}
} else {
ref *CIDSystemInfo;
ref *Ordering;
/* We only have to lookup the char code if we're *not* using an identity ordering */
if (dict_find_string(pdr, "CIDSystemInfo", &CIDSystemInfo) >= 0 && r_has_type(CIDSystemInfo, t_dictionary) &&
dict_find_string(CIDSystemInfo, "Ordering", &Ordering) >= 0 && r_has_type(Ordering, t_string) &&
strncmp((const char *)Ordering->value.bytes, "Identity", 8) != 0) {
code = cid_to_TT_charcode(imemory, Decoding, TT_cmap, SubstNWP,
client_char_code, &c, &src_type, &dst_type);
if (code < 0)
return code;
/* cid_to_TT_charcode() returns 1 if it found a
* matching character code. Otherwise it returns
* zero after setting c to zero (.notdef glyph id)
* or a negative value on error. */
#if 0
if (code > 0)
is_glyph_index = false;
#endif
}
else {
c = client_char_code;
}
}
cr.char_codes[0] = c;
cr.is_glyph_index = is_glyph_index;
/* fixme : process the narrow/wide/proportional mapping type,
using src_type, dst_type. Should adjust the 'matrix' above.
Call get_font_proportional_feature for proper choice.
*/
} else {
ref *CIDMap;
byte *Map;
int ccode = client_char_code;
int gdb = 2;
int i;
ref *GDBytes = NULL;
if ((dict_find_string(pdr, "GDBytes", &GDBytes) > 0) && r_has_type(GDBytes, t_integer)) {
gdb = GDBytes->value.intval;
}
/* The PDF Reference says that we should use a CIDToGIDMap, but the PDF
* interpreter converts this into a CIDMap (see pdf_font.ps, processCIDToGIDMap)
*/
if (dict_find_string(pdr, "CIDMap", &CIDMap) > 0 && !r_has_type(CIDMap, t_name) &&
(r_has_type(CIDMap, t_array) || r_has_type(CIDMap, t_string))) {
if (r_has_type(CIDMap, t_array)) {
/* Too big for single string, so its an array of 2 strings */
code = string_array_access_proc(pbfont->memory, CIDMap, 1, client_char_code * gdb, gdb, NULL, NULL, (const byte **)&Map);
} else {
if (CIDMap->tas.rsize < ccode * gdb) {
ccode = 0;
}
Map = &CIDMap->value.bytes[ccode * gdb];
}
cr.char_codes[0] = 0;
for (i = 0; i < gdb; i++) {
cr.char_codes[0] = (cr.char_codes[0] << 8) + Map[i];
}
}
else
cr.char_codes[0] = client_char_code;
}
} else if (is_TT_from_type42) {
/* This font must not use 'cmap', so compute glyph index from CharStrings : */
ref *CharStrings, *glyph_index;
if (dict_find_string(pdr, "CharStrings", &CharStrings) <= 0 || !r_has_type(CharStrings, t_dictionary))
return_error(e_invalidfont);
if ((dict_find(CharStrings, &char_name, &glyph_index) < 0) || r_has_type(glyph_index, t_null)) {
#ifdef DEBUG
ref *pvalue;
if (gs_debug_c('1') && (dict_find_string(systemdict,"QUIET", &pvalue)) > 0 &&
(r_has_type(pvalue, t_boolean) && pvalue->value.boolval == false)) {
char *glyphn;
name_string_ref (imemory, &char_name, &char_name);
glyphn = ref_to_string(&char_name, imemory, "FAPI_do_char");
if (glyphn) {
dprintf2(" Substituting .notdef for %s in the font %s \n", glyphn, pbfont->font_name.chars);
gs_free_string(imemory, (byte *)glyphn, strlen(glyphn) + 1, "FAPI_do_char");
}
}
#endif
cr.char_codes[0] = 0; /* .notdef */
if ((code = name_ref(imemory, (const byte *)".notdef", 7, &char_name, -1)) < 0)
return code;
} else if (r_has_type(glyph_index, t_integer))
cr.char_codes[0] = glyph_index->value.intval;
else {
/* Check execution stack has space for BuldChar proc and finish_render */
check_estack(2);
/* check space and duplicate the glyph index for BuildChar */
check_op(1);
push(1);
ref_assign_inline(op, op - 1);
/* Come back to fapi_finish_render after running the BuildChar */
push_op_estack(fapi_finish_render);
++esp;
ref_assign(esp, glyph_index);
return o_push_estack;
}
cr.is_glyph_index = true;
} else if (is_embedded_type1) {
/* Since the client passes charstring by callback using I->ff.char_data,
the client doesn't need to provide a good cr here.
Perhaps since UFST uses char codes as glyph cache keys (UFST 4.2 cannot use names),
we provide font char codes equal to document's char codes.
This trick assumes that Encoding can't point different glyphs
for same char code. The last should be true due to
PLRM3, "5.9.4 Subsetting and Incremental Definition of Glyphs".
*/
if (r_has_type(op, t_integer))
cr.char_codes[0] = client_char_code;
else {
/*
* Reverse Encoding here, because it can be an incremental one.
* Note that this can cause problems with UFST (see the comment above),
* if the encoding doesn't contain the glyph name rendered with glyphshow.
*/
ref *Encoding;
if (dict_find_string(osp - 1, "Encoding", &Encoding) > 0)
cr.char_codes[0] = (uint)array_find(imemory, Encoding, op);
else
return_error(e_invalidfont);
}
} else { /* a non-embedded font, i.e. a disk font */
bool can_retrieve_char_by_name = false;
const byte *p;
obj_string_data(imemory, &char_name, &cr.char_name, &cr.char_name_length);
p = find_substring(cr.char_name, cr.char_name_length, gx_extendeg_glyph_name_separator);
if (p != NULL) {
cr.char_name_length = p - cr.char_name;
name_ref(pbfont->memory, cr.char_name, cr.char_name_length, &char_name, true);
}
if ((code = renderer_retcode(i_ctx_p, I, I->can_retrieve_char_by_name(I, &I->ff, &cr, &can_retrieve_char_by_name))) < 0)
return code;
if (!can_retrieve_char_by_name) {
/* Translate from char name to encoding used with 3d party font technology : */
ref *Decoding, *char_code;
if (dict_find_string(osp - 1, "Decoding", &Decoding) > 0 && r_has_type(Decoding, t_dictionary)) {
if (dict_find(Decoding, &char_name, &char_code) > 0) {
code = 0;
if (r_has_type(char_code, t_integer)) {
int_param(char_code, 0xFFFF, &cr.char_codes[0]);
} else if (r_has_type(char_code, t_array) || r_has_type(char_code, t_shortarray)) {
int i;
ref v;
cr.char_codes_count = r_size(char_code);
if (cr.char_codes_count > count_of(cr.char_codes))
code = gs_note_error(e_rangecheck);
if (code >= 0) {
for (i = 0; i < cr.char_codes_count; i++) {
code = array_get(imemory, char_code, i, &v);
if (code < 0)
break;
if (!r_has_type(char_code, t_integer)) {
code = gs_note_error(e_rangecheck);
break;
}
cr.char_codes[i] = v.value.intval;
}
}
} else
code = gs_note_error(e_rangecheck);
if (code < 0) {
char buf[16];
int l = cr.char_name_length;
if (l > sizeof(buf) - 1)
l = sizeof(buf) - 1;
memcpy(buf, cr.char_name, l);
buf[l] = 0;
emprintf1(imemory,
"Wrong decoding entry for the character '%s'.\n",
buf);
return_error(e_rangecheck);
}
}
}
}
}
cr.char_code = cr.char_codes[0];
cr.client_char_code = client_char_code;
#if 0 /* Debug purpose only: search chars in UFST fonts. */
cr.char_code = client_char_code; /* remove for release !!!!!!!!!!!!!!!! */
#endif
/* Provide glyph data for renderer : */
/* Occasionally, char_name is already a glyph index to pass to the rendering engine
* so don't treat it as a name object.
* I believe this will only happen with a TTF/Type42, but checking the object type
* is cheap, and covers all font type eventualities.
*/
if (!I->ff.is_cid && r_has_type(&char_name, t_name)) {
ref sname;
name_string_ref(imemory, &char_name, &sname);
I->ff.char_data = sname.value.const_bytes;
I->ff.char_data_len = r_size(&sname);
} else if (I->ff.is_type1)
I->ff.char_data = charstring;
/* Compute the metrics replacement : */
if(bCID && !bIsType1GlyphData) {
gs_font_cid2 *pfcid = (gs_font_cid2 *)pbfont;
int MetricsCount = pfcid->cidata.MetricsCount;
if (MetricsCount > 0) {
const byte *data_ptr;
int l = get_GlyphDirectory_data_ptr(imemory, pdr, cr.char_code, &data_ptr);
if (MetricsCount == 2 && l >= 4) {
if (!bVertical0) {
cr.sb_x = GET_S16_MSB(data_ptr + 2) * scale;
cr.aw_x = GET_U16_MSB(data_ptr + 0) * scale;
cr.metrics_type = FAPI_METRICS_REPLACE;
}
} else if (l >= 8){
cr.sb_y = GET_S16_MSB(data_ptr + 2) * scale;
cr.aw_y = GET_U16_MSB(data_ptr + 0) * scale;
cr.sb_x = GET_S16_MSB(data_ptr + 6) * scale;
cr.aw_x = GET_U16_MSB(data_ptr + 4) * scale;
cr.metrics_type = FAPI_METRICS_REPLACE;
}
}
}
if (cr.metrics_type != FAPI_METRICS_REPLACE && bVertical) {
double pwv[4];
code = zchar_get_metrics2(pbfont, &enc_char_name, pwv);
if (code < 0)
return code;
if (code == metricsNone) {
if (bCID && (!bIsType1GlyphData && font_file_path)) {
cr.sb_x = fapi_round(sbw[2] / 2 * scale);
cr.sb_y = fapi_round(pbfont->FontBBox.q.y * scale);
cr.aw_y = fapi_round(- pbfont->FontBBox.q.x * scale); /* Sic ! */
cr.metrics_scale = (bIsType1GlyphData ? 1000 : 1);
cr.metrics_type = FAPI_METRICS_REPLACE;
sbw[0] = sbw[2] / 2;
sbw[1] = pbfont->FontBBox.q.y;
sbw[2] = 0;
sbw[3] = - pbfont->FontBBox.q.x; /* Sic ! */
sbw_state = SBW_DONE;
} else
bVertical = false;
} else {
cr.sb_x = fapi_round(pwv[2] * scale);
cr.sb_y = fapi_round(pwv[3] * scale);
cr.aw_x = fapi_round(pwv[0] * scale);
cr.aw_y = fapi_round(pwv[1] * scale);
cr.metrics_scale = (bIsType1GlyphData ? 1000 : 1);
cr.metrics_type = (code == metricsSideBearingAndWidth ?
FAPI_METRICS_REPLACE : FAPI_METRICS_REPLACE_WIDTH);
sbw[0] = pwv[2];
sbw[1] = pwv[3];
sbw[2] = pwv[0];
sbw[3] = pwv[1];
sbw_state = SBW_DONE;
}
}
if (cr.metrics_type == FAPI_METRICS_NOTDEF && !bVertical) {
code = zchar_get_metrics(pbfont, &enc_char_name, sbw);
if (code < 0)
return code;
if (code == metricsNone) {
sbw_state = SBW_FROM_RENDERER;
if (pbfont->FontType == 2) {
gs_font_type1 *pfont1 = (gs_font_type1 *)pbfont;
cr.aw_x = export_shift(pfont1->data.defaultWidthX, _fixed_shift - I->frac_shift);
cr.metrics_scale = 1000;
cr.metrics_type = FAPI_METRICS_ADD;
}
} else {
cr.sb_x = fapi_round(sbw[0] * scale);
cr.sb_y = fapi_round(sbw[1] * scale);
cr.aw_x = fapi_round(sbw[2] * scale);
cr.aw_y = fapi_round(sbw[3] * scale);
cr.metrics_scale = (bIsType1GlyphData ? 1000 : 1);
cr.metrics_type = (code == metricsSideBearingAndWidth ?
FAPI_METRICS_REPLACE : FAPI_METRICS_REPLACE_WIDTH);
sbw_state = SBW_DONE;
}
}
memset(&metrics, 0x00, sizeof(metrics));
/* Take metrics from font : */
if (zchar_show_width_only(penum)) {
code = I->get_char_width(I, &I->ff, &cr, &metrics);
/* A VMerror could be a real out of memory, or the glyph being too big for a bitmap
* so it's worth retrying as an outline glyph
*/
if (code == e_VMerror && I->use_outline == false) {
I->max_bitmap = 0;
I->use_outline = true;
goto retry_oversampling;
}
} else if (I->use_outline) {
code = I->get_char_outline_metrics(I, &I->ff, &cr, &metrics);
} else {
#if 0 /* Debug purpose only. */
code = e_limitcheck;
#else
code = I->get_char_raster_metrics(I, &I->ff, &cr, &metrics);
#endif
/* A VMerror could be a real out of memory, or the glyph being too big for a bitmap
* so it's worth retrying as an outline glyph
*/
if (code == e_VMerror) {
I->use_outline = true;
goto retry_oversampling;
}
if (code == e_limitcheck) {
if(log2_scale.x > 0 || log2_scale.y > 0) {
penum_s->fapi_log2_scale.x = log2_scale.x = penum_s->fapi_log2_scale.y = log2_scale.y = 0;
I->release_char_data(I);
goto retry_oversampling;
}
if ((code = renderer_retcode(i_ctx_p, I, I->get_char_outline_metrics(I, &I->ff, &cr, &metrics))) < 0)
return code;
}
}
/* This handles the situation where a charstring has been replaced with a PS procedure.
* against the rules, but not *that* rare.
* It's also something that GS does internally to simulate font styles.
*/
if (code > 0) {
os_ptr op = osp;
ref *proc;
if ((get_charstring(&I->ff, code - 1, &proc) >= 0) && (r_has_type(proc, t_array) || r_has_type(proc, t_mixedarray))) {
push(2);
ref_assign(op - 1, &char_name);
ref_assign(op, proc);
return(zchar_exec_char_proc(i_ctx_p));
}
}
if ((code = renderer_retcode(i_ctx_p, I, code)) < 0)
return code;
compute_em_scale(pbfont, &metrics, FontMatrix_div, &em_scale_x, &em_scale_y);
char_bbox.p.x = metrics.bbox_x0 / em_scale_x;
char_bbox.p.y = metrics.bbox_y0 / em_scale_y;
char_bbox.q.x = metrics.bbox_x1 / em_scale_x;
char_bbox.q.y = metrics.bbox_y1 / em_scale_y;
/* We must use the FontBBox, but it seems some buggy fonts have glyphs which extend outside the
* FontBBox, so we have to do this....
*/
if (!bCID && pbfont->FontBBox.q.x > pbfont->FontBBox.p.x
&& pbfont->FontBBox.q.y > pbfont->FontBBox.p.y) {
char_bbox.p.x = min(char_bbox.p.x, pbfont->FontBBox.p.x);
char_bbox.p.y = min(char_bbox.p.y, pbfont->FontBBox.p.y);
char_bbox.q.x = max(char_bbox.q.x, pbfont->FontBBox.q.x);
char_bbox.q.y = max(char_bbox.q.y, pbfont->FontBBox.q.y);
}
if (pbfont->PaintType != 0) {
float w = pbfont->StrokeWidth / 2;
char_bbox.p.x -= w;
char_bbox.p.y -= w;
char_bbox.q.x += w;
char_bbox.q.y += w;
}
penum_s->fapi_glyph_shift.x = penum_s->fapi_glyph_shift.y = 0;
if (sbw_state == SBW_FROM_RENDERER) {
int can_replace_metrics;
if ((code = renderer_retcode(i_ctx_p, I, I->can_replace_metrics(I, &I->ff, &cr, &can_replace_metrics))) < 0)
return code;
sbw[2] = metrics.escapement / em_scale_x;
sbw[3] = metrics.v_escapement / em_scale_y;
if (pbfont->FontType == 2 && !can_replace_metrics) {
gs_font_type1 *pfont1 = (gs_font_type1 *)pbfont;
sbw[2] += fixed2float(pfont1->data.nominalWidthX);
}
} else if (sbw_state == SBW_SCALE) {
sbw[0] = (double)cr.sb_x / scale / em_scale_x;
sbw[1] = (double)cr.sb_y / scale / em_scale_y;
sbw[2] = (double)cr.aw_x / scale / em_scale_x;
sbw[3] = (double)cr.aw_y / scale / em_scale_y;
}
/* Setup cache and render : */
if (cr.metrics_type == FAPI_METRICS_REPLACE) {
/*
* Here we don't take care of replaced advance width
* because gs_text_setcachedevice handles it.
*/
int can_replace_metrics;
if ((code = renderer_retcode(i_ctx_p, I, I->can_replace_metrics(I, &I->ff, &cr, &can_replace_metrics))) < 0)
return code;
if (!can_replace_metrics) {
/*
* The renderer should replace the lsb, but it can't.
* To work around we compute a displacement in integral pixels
* and later shift the bitmap to it. The raster will be inprecise
* with non-integral pixels shift.
*/
char_bbox.q.x -= char_bbox.p.x;
char_bbox.p.x = 0;
gs_distance_transform((metrics.bbox_x0 / em_scale_x - sbw[0]),
0, ctm, &penum_s->fapi_glyph_shift);
penum_s->fapi_glyph_shift.x *= 1 << log2_scale.x;
penum_s->fapi_glyph_shift.y *= 1 << log2_scale.y;
}
}
/*
* We assume that if bMetricsFromGlyphDirectory is true,
* the font does not specify Metrics[2] and/or CDevProc
* If someday we meet a font contradicting this assumption,
* zchar_set_cache to be improved with additional flag,
* to ignore Metrics[2] and CDevProc.
*
* Note that for best quality the result of CDevProc
* to be passed to I->get_char_raster_metrics, because
* both raster and metrics depend on replaced lsb.
* Perhaps in many cases the metrics from font is
* used as an argument for CDevProc. Only way to resolve
* is to call I->get_char_raster_metrics twice (before
* and after CDevProc), or better to split it into
* smaller functions. Unfortunately UFST cannot retrieve metrics
* quickly and separately from raster. Only way to resolve is
* to devide the replaced lsb into 2 parts, which correspond to
* integral and fractinal pixels, then pass the fractional shift
* to renderer and apply the integer shift after it.
*
* Besides that, we are not sure what to do if a font
* contains both Metrics[2] and CDevProc. Should
* CDevProc to be applied to Metrics[2] or to the metrics
* from glyph code ? Currently we keep a compatibility
* to the native GS font renderer without a deep analyzis.
*/
if (igs->in_cachedevice == CACHE_DEVICE_CACHING) {
sbwp = sbw;
}
else {
/* Very occasionally, if we don't do this, setcachedevice2
* will decide we are cacheing, when we're not, and this
* causes problems when we get to show_update().
*/
sbwp = NULL;
if (I->use_outline) {
/* HACK!!
* The decision about whether to cache has already been
* we need to prevent it being made again....
*/
igs->in_cachedevice = CACHE_DEVICE_NOT_CACHING;
}
}
if (bCID)
code = zchar_set_cache(i_ctx_p, pbfont, op,
NULL, sbw + 2, &char_bbox,
fapi_finish_render, &exec_cont, sbwp);
else
code = zchar_set_cache(i_ctx_p, pbfont, &char_name,
NULL, sbw + 2, &char_bbox,
fapi_finish_render, &exec_cont, sbwp);
if (code >= 0 && exec_cont != 0)
code = (*exec_cont)(i_ctx_p);
if (code != 0) {
if (code < 0) {
/* An error */
I->release_char_data(I);
} else {
/* Callout to CDevProc, zsetcachedevice2, fapi_finish_render. */
}
}
return code;
}
static int FAPI_char(i_ctx_t *i_ctx_p, bool bBuildGlyph, ref *charstring)
{ /* Stack : <font> <code|name> --> - */
ref *v;
char *font_file_path = NULL;
gx_device *dev = gs_currentdevice_inline(igs);
gs_font *pfont;
int code = font_param(osp - 1, &pfont);
if (code == 0) {
gs_font_base *pbfont = (gs_font_base *) pfont;
if (dict_find_string(osp - 1, "Path", &v) > 0 && r_has_type(v, t_string))
font_file_path = ref_to_string(v, imemory, "font file path");
code = FAPI_do_char(i_ctx_p, pbfont, dev, font_file_path, bBuildGlyph, charstring);
if (font_file_path != NULL)
gs_free_string(imemory, (byte *)font_file_path, r_size(v) + 1, "font file path");
}
return code;
}
static int FAPIBuildGlyph9aux(i_ctx_t *i_ctx_p)
{
os_ptr op = osp; /* <font0> <cid> <font9> <cid> */
ref font9 = *pfont_dict(gs_currentfont(igs));
ref *rFDArray, f;
int font_index;
int code;
if ((code = ztype9mapcid(i_ctx_p)) < 0)
return code; /* <font0> <cid> <charstring> <font_index> */
/* fixme: what happens if the charstring is absent ?
Can FDArray contain 'null' (see %Type9BuildGlyph in gs_cidfn.ps)? */
font_index = op[0].value.intval;
if (dict_find_string(&font9, "FDArray", &rFDArray) <= 0 || r_type(rFDArray) != t_array)
return_error(e_invalidfont);
if(array_get(imemory, rFDArray, font_index, &f) < 0 || r_type(&f) != t_dictionary)
return_error(e_invalidfont);
op[0] = op[-2];
op[-2] = op[-1]; /* Keep the charstring on ostack for the garbager. */
op[-1] = f; /* <font0> <charstring> <subfont> <cid> */
if ((code = FAPI_char(i_ctx_p, true, op - 2)) < 0)
return code;
/* <font0> <charstring> */
return code;
}
/* <font> <code> .FAPIBuildChar - */
static int zFAPIBuildChar(i_ctx_t *i_ctx_p)
{
return FAPI_char(i_ctx_p, false, NULL);
}
/* non-CID : <font> <code> .FAPIBuildGlyph - */
/* CID : <font> <name> .FAPIBuildGlyph - */
static int zFAPIBuildGlyph(i_ctx_t *i_ctx_p)
{
return FAPI_char(i_ctx_p, true, NULL);
}
/* <font> <cid> .FAPIBuildGlyph9 - */
static int zFAPIBuildGlyph9(i_ctx_t *i_ctx_p)
{
/* The alghorithm is taken from %Type9BuildGlyph - see gs_cidfn.ps . */
os_ptr lop, op = osp;
int cid, code;
avm_space s = ialloc_space(idmemory);
check_type(op[ 0], t_integer);
check_type(op[-1], t_dictionary);
cid = op[0].value.intval;
push(2);
op[-1] = *pfont_dict(gs_currentfont(igs));
op[0] = op[-2]; /* <font0> <cid> <font9> <cid> */
ialloc_set_space(idmemory, (r_is_local(op - 3) ? avm_global : avm_local)); /* for ztype9mapcid */
code = FAPIBuildGlyph9aux(i_ctx_p);
lop = osp;
if (code == 5) {
int i, ind = (lop - op);
op = osp;
for (i = ind; i >= 0; i--) {
op[-i - 2] = op[-i];
}
pop(2);
}
else if (code < 0) { /* <font0> <dirty> <dirty> <dirty> */
/* Adjust ostack for the correct error handling : */
make_int(op - 2, cid);
pop(2); /* <font0> <cid> */
} else if (code != 5) { /* <font0> <dirty> */
pop(2); /* */
/* Note that this releases the charstring, and it may be garbage-collected
before the interpreter calls fapi_finish_render. This requires the server
to keep glyph raster internally between calls to get_char_raster_metrics
and get_char_raster. Perhaps UFST cannot provide metrics without
building a raster, so this constraint actually goes from UFST.
*/
}
ialloc_set_space(idmemory, s);
return code;
}
static int do_FAPIpassfont(i_ctx_t *i_ctx_p, char *font_file_path, bool *success)
{ ref *pdr = osp; /* font dict */
gs_font *pfont;
int code = font_param(osp, &pfont);
gs_font_base *pbfont;
int BBox[4];
i_plugin_holder *h = i_plugin_get_list(i_ctx_p);
char *xlatmap = NULL;
FAPI_font_scale font_scale = {{1, 0, 0, 1, 0, 0}, {0, 0}, {1, 1}, true};
const char *decodingID = NULL;
ref *req, reqstr;
bool do_restart = false;
if (code < 0)
return code;
code = FAPI_get_xlatmap(i_ctx_p, &xlatmap); /* Useful for emulated fonts hooked with FAPI. */
if (code < 0)
return code;
pbfont = (gs_font_base *)pfont;
*success = false;
/* If the font dictionary contains a FAPIPlugInReq key, the the PS world wants us
* to try to use a specific FAPI plugin, so find it, and try it....
*/
if (dict_find_string(pdr, "FAPIPlugInReq", &req) >= 0 && r_type(req) == t_name) {
char *fapi_request;
name_string_ref (imemory, req, &reqstr);
fapi_request = ref_to_string(&reqstr, imemory, "FAPI_do_char");
if (fapi_request) {
dprintf1("Requested FAPI plugin: %s ", fapi_request);
while (h && (strncmp(h->I->d->type, "FAPI", 4) != 0 || strncmp(h->I->d->subtype, fapi_request, strlen(fapi_request)) != 0)) {
h = h->next;
}
if (!h) {
dprintf("not found. Falling back to normal plugin search\n");
h = i_plugin_get_list(i_ctx_p);
}
else {
dprintf("found.\n");
do_restart = true;
}
gs_free_string(imemory, (byte *)fapi_request, strlen(fapi_request) + 1, "do_FAPIpassfont");
}
}
while (h) {
ref FAPI_ID;
FAPI_server *I;
const byte *server_param = NULL;
int server_param_size = 0;
if (!strcmp(h->I->d->type, "FAPI")) {
I = (FAPI_server *)h->I;
get_server_param(i_ctx_p, I->ig.d->subtype, &server_param, &server_param_size);
if ((code = renderer_retcode(i_ctx_p, I, I->ensure_open(I, server_param, server_param_size))) < 0)
return code;
font_scale.HWResolution[0] = font_scale.HWResolution[1] = 72 << I->frac_shift;
font_scale.matrix[0] = font_scale.matrix[3] = 1 << I->frac_shift;
pbfont->FAPI = I; /* we need the FAPI server during this stage */
code = FAPI_prepare_font(i_ctx_p, I, pdr, pbfont, font_file_path, &font_scale, xlatmap, BBox, &decodingID);
if (code >= 0) {
if ((code = name_ref(imemory, (const byte *)I->ig.d->subtype, strlen(I->ig.d->subtype), &FAPI_ID, false)) < 0)
return code;
if ((code = dict_put_string(pdr, "FAPI", &FAPI_ID, NULL)) < 0)
return code; /* Insert FAPI entry to font dictionary. */
*success = true;
return 0;
}
}
/* renderer failed, continue search */
pbfont->FAPI = NULL;
if (do_restart == true) {
dprintf1("Requested FAPI plugin %s failed, searching for alternative plugin\n", h->I->d->subtype);
h = i_plugin_get_list(i_ctx_p);
do_restart = false;
}
else {
h = h->next;
}
}
/* Could not find renderer, return with false success. */
return 0;
}
/* <font_dict> .FAPIpassfont bool <font_dict> */
/* must insert /FAPI to font dictionary */
/* This operator must not be called with devices which embed fonts. */
static int zFAPIpassfont(i_ctx_t *i_ctx_p)
{ os_ptr op = osp;
int code;
bool found = false;
char *font_file_path = NULL;
ref *v;
/* Normally embedded fonts have no Path, but if a CID font is
* emulated with a TT font, and it is hooked with FAPI,
* the path presents and is neccessary to access the full font data.
*/
check_type(*op, t_dictionary);
if (dict_find_string(op, "Path", &v) > 0 && r_has_type(v, t_string))
font_file_path = ref_to_string(v, imemory_global, "font file path");
code = do_FAPIpassfont(i_ctx_p, font_file_path, &found);
if (font_file_path != NULL)
gs_free_string(imemory_global, (byte *)font_file_path, r_size(v) + 1, "font file path");
if(code != 0)
return code;
push(1);
make_bool(op, found);
return 0;
}
const op_def zfapi_op_defs[] =
{ {"2.FAPIavailable", zFAPIavailable},
{"2.FAPIpassfont", zFAPIpassfont},
{"2.FAPIrebuildfont", zFAPIrebuildfont},
{"2.FAPIBuildChar", zFAPIBuildChar},
{"2.FAPIBuildGlyph", zFAPIBuildGlyph},
{"2.FAPIBuildGlyph9", zFAPIBuildGlyph9},
op_def_end(0)
};
|