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 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435
|
/* 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.
*/
/* Text processing for pdfwrite. */
#include "math_.h"
#include "string_.h"
#include <stdlib.h> /* abs() */
#include "gx.h"
#include "gserrors.h"
#include "gscencs.h"
#include "gscedata.h"
#include "gsmatrix.h"
#include "gzstate.h"
#include "gxfcache.h" /* for orig_fonts list */
#include "gxfont.h"
#include "gxfont0.h"
#include "gxfcid.h"
#include "gxfcopy.h"
#include "gxfcmap.h"
#include "gxpath.h" /* for getting current point */
#include "gxchar.h"
#include "gxstate.h"
#include "gdevpdfx.h"
#include "gdevpdfg.h"
#include "gdevpdfo.h"
#include "gdevpdtx.h"
#include "gdevpdtd.h"
#include "gdevpdtf.h"
#include "gdevpdts.h"
#include "gdevpdtt.h"
#include "gdevpdti.h"
#include "gxhldevc.h"
#include "gzpath.h"
/* ================ Text enumerator ================ */
/* GC descriptor */
private_st_pdf_text_enum();
/* A static data for pdf_reserve_char_code_in_pdfont.
No, this isn't a reenterability error,
because all threads will set same value,
which actually depends on static data only. */
static gs_glyph standard_glyph_code_for_notdef = GS_NO_GLYPH;
/* Define the auxiliary procedures for text processing. */
static int
pdf_text_resync(gs_text_enum_t *pte, const gs_text_enum_t *pfrom)
{
pdf_text_enum_t *const penum = (pdf_text_enum_t *)pte;
if ((pte->text.operation ^ pfrom->text.operation) & ~TEXT_FROM_ANY)
return_error(gs_error_rangecheck);
if (penum->pte_default) {
int code = gs_text_resync(penum->pte_default, pfrom);
if (code < 0)
return code;
}
pte->text = pfrom->text;
gs_text_enum_copy_dynamic(pte, pfrom, false);
return 0;
}
static bool
pdf_text_is_width_only(const gs_text_enum_t *pte)
{
const pdf_text_enum_t *const penum = (const pdf_text_enum_t *)pte;
if (penum->pte_default)
return gs_text_is_width_only(penum->pte_default);
return false;
}
static int
pdf_text_current_width(const gs_text_enum_t *pte, gs_point *pwidth)
{
const pdf_text_enum_t *const penum = (const pdf_text_enum_t *)pte;
if (penum->pte_default)
return gs_text_current_width(penum->pte_default, pwidth);
return_error(gs_error_rangecheck); /* can't happen */
}
static int
pdf_text_set_cache(gs_text_enum_t *pte, const double *pw,
gs_text_cache_control_t control)
{
pdf_text_enum_t *const penum = (pdf_text_enum_t *)pte;
gs_text_enum_t *pgste;
gx_device_pdf *pdev = (gx_device_pdf *)pte->dev;
gs_matrix m;
if (pdev->type3charpath)
return gs_text_set_cache(penum->pte_default, pw, control);
switch (control) {
case TEXT_SET_CHAR_WIDTH:
case TEXT_SET_CACHE_DEVICE:
/* See comments in pdf_text_process. We are using a 100x100 matrix
* NOT the identity, but we want the cache device values to be in
* font co-ordinate space, so we need to undo that scale here.
*/
if (pdev->PS_accumulator){
gs_matrix_scale(&ctm_only(pte->pis), .01, .01, &m);
gs_distance_transform(pw[0], pw[1], &m, &pdev->char_width);
} else {
pdev->char_width.x = pw[0];
pdev->char_width.y = pw[1];
}
break;
case TEXT_SET_CACHE_DEVICE2:
/*
* pdev->char_width is used with synthesized Type 3 fonts only.
* Since they are simple fonts, we only need the horisontal
* width for Widths array. Therefore we don't check
* gs_rootfont(pgs)->WMode and don't use pw[6:7].
*/
/* See comments in pdf_text_process. We are using a 100x100 matrix
* NOT the identity, but we want the cache device values to be in
* font co-ordinate space, so we need to undo that scale here.
*/
if (pdev->PS_accumulator){
gs_matrix_scale(&ctm_only(pte->pis), .01, .01, &m);
gs_distance_transform(pw[0], pw[1], &m, &pdev->char_width);
} else {
pdev->char_width.x = pw[0];
pdev->char_width.y = pw[1];
}
if (penum->cdevproc_callout) {
memcpy(penum->cdevproc_result, pw, sizeof(penum->cdevproc_result));
return 0;
}
break;
default:
return_error(gs_error_rangecheck);
}
if (!pdev->PS_accumulator)
pgste = (gs_text_enum_t *)penum;
else
pgste = penum->pte_default;
if ((penum->current_font->FontType == ft_user_defined ||
penum->current_font->FontType == ft_PCL_user_defined ||
penum->current_font->FontType == ft_GL2_stick_user_defined) &&
penum->outer_CID == GS_NO_GLYPH &&
!(pgste->text.operation & TEXT_DO_CHARWIDTH)) {
int code;
gs_glyph glyph;
glyph = penum->returned.current_glyph;
if ((glyph != GS_NO_GLYPH && penum->output_char_code != GS_NO_CHAR) || !pdev->PS_accumulator) {
gs_show_enum *penum_s;
extern_st(st_gs_show_enum);
gs_fixed_rect clip_box;
double pw1[10];
int narg = (control == TEXT_SET_CHAR_WIDTH ? 2 :
control == TEXT_SET_CACHE_DEVICE ? 6 : 10), i;
/* Check to verify the structure type is really gs_show_enum */
if (gs_object_type(pgste->memory, pgste) != &st_gs_show_enum) {
/* Must not happen with PS interpreter.
Other clients should conform. */
return_error(gs_error_unregistered);
}
penum_s = (gs_show_enum *)pgste;
/* BuildChar could change the scale before calling setcachedevice (Bug 687290).
We must scale the setcachedevice arguments because we assumed
identity scale before entering the charproc.
For now we only handle scaling matrices.
*/
for (i = 0; i < narg; i += 2) {
gs_point p;
gs_point_transform(pw[i], pw[i + 1], &ctm_only(penum_s->pgs), &p);
pw1[i] = p.x;
pw1[i + 1] = p.y;
}
if (control != TEXT_SET_CHAR_WIDTH) {
clip_box.p.x = float2fixed(pw1[2]);
clip_box.p.y = float2fixed(pw1[3]);
clip_box.q.x = float2fixed(pw1[4]);
clip_box.q.y = float2fixed(pw1[5]);
} else {
/*
* We have no character bbox, but we need one to install the clipping
* to the graphic state of the PS interpreter. Since some fonts don't
* provide a proper FontBBox (Bug 687239 supplies a zero one),
* we set an "infinite" clipping here.
* We also detected that min_int, max_int don't work here with
* comparefiles/Bug687044.ps, therefore we divide them by 2.
*/
clip_box.p.x = clip_box.p.y = min_int / 2;
clip_box.q.x = clip_box.q.y = max_int / 2;
}
code = gx_clip_to_rectangle(penum_s->pgs, &clip_box);
if (code < 0)
return code;
/* See comments in pdf_text_process. We are using a 100x100 matrix
* NOT the identity, but we want the cache device values to be in
* font co-ordinate space, so we need to undo that scale here. We
* can't do it above, where we take any scaling from the BuildChar
* into account, because that would get the clip path wrong, that
* needs to be in the 100x100 space so that it doesn't clip
* out marking operations.
*/
if (pdev->PS_accumulator)
gs_matrix_scale(&ctm_only(penum_s->pgs), .01, .01, &m);
else
m = ctm_only(penum_s->pgs);
for (i = 0; i < narg; i += 2) {
gs_point p;
gs_point_transform(pw[i], pw[i + 1], &m, &p);
pw1[i] = p.x;
pw1[i + 1] = p.y;
}
if (!pdev->PS_accumulator)
code = pdf_set_charproc_attrs(pdev, pte->current_font,
pw1, narg, control, penum->returned.current_char, false);
else
code = pdf_set_charproc_attrs(pdev, pte->current_font,
pw1, narg, control, penum->output_char_code, true);
if (code < 0)
return code;
/* Prevent writing the clipping path to charproc.
See the comment above and bugs 687678, 688327.
Note that the clipping in the graphic state will be used while
fallbacks to default implementations of graphic objects.
Hopely such fallbacks are rare. */
pdev->clip_path_id = gx_get_clip_path_id(penum_s->pgs);
return code;
} else {
gs_matrix m;
pdf_resource_t *pres = pdev->accumulating_substream_resource;
/* pdf_text_process started a charproc stream accumulation,
but now we re-decided to go with the default implementation.
Cancel the stream now.
*/
code = pdf_exit_substream(pdev);
if (code < 0)
return code;
code = pdf_cancel_resource(pdev, pres, resourceCharProc);
if (code < 0)
return code;
pdf_forget_resource(pdev, pres, resourceCharProc);
/* pdf_text_process had set an identity CTM for the
charproc stream accumulation, but now we re-decided
to go with the default implementation.
Need to restore the correct CTM and add
changes, which the charproc possibly did. */
/* See comments in pdf_text_process. We are using a 100x100 matrix
* NOT the identity, so we need to undo that scale here.
*/
gs_matrix_scale(&ctm_only(penum->pis), .01, .01, (gs_matrix *)&ctm_only(penum->pis));
/* We also scaled the page height and width. Because we
* don't go through the accumulator 'close' in pdf_text_process
* we must also undo that scale.
*/
pdev->width /= 100;
pdev->height /= 100;
gs_matrix_multiply((gs_matrix *)&pdev->charproc_ctm, (gs_matrix *)&penum->pis->ctm, &m);
gs_matrix_fixed_from_matrix(&penum->pis->ctm, &m);
penum->charproc_accum = false;
}
}
if (pdev->PS_accumulator && penum->pte_default) {
if (penum->pte_default->text.operation & TEXT_DO_CHARWIDTH /* See process_cmap_text.*/)
return gs_text_set_cache(penum->pte_default, pw, TEXT_SET_CHAR_WIDTH);
else
return gs_text_set_cache(penum->pte_default, pw, control);
}
return_error(gs_error_unregistered); /* can't happen */
}
static int
pdf_text_retry(gs_text_enum_t *pte)
{
pdf_text_enum_t *const penum = (pdf_text_enum_t *)pte;
if (penum->pte_default)
return gs_text_retry(penum->pte_default);
return_error(gs_error_rangecheck); /* can't happen */
}
static void
pdf_text_release(gs_text_enum_t *pte, client_name_t cname)
{
pdf_text_enum_t *const penum = (pdf_text_enum_t *)pte;
if (penum->pte_default) {
gs_text_release(penum->pte_default, cname);
penum->pte_default = 0;
}
pdf_text_release_cgp(penum);
gx_default_text_release(pte, cname);
}
void
pdf_text_release_cgp(pdf_text_enum_t *penum)
{
if (penum->cgp) {
gs_free_object(penum->memory, penum->cgp, "pdf_text_release");
penum->cgp = 0;
}
}
/* Begin processing text. */
static text_enum_proc_process(pdf_text_process);
static const gs_text_enum_procs_t pdf_text_procs = {
pdf_text_resync, pdf_text_process,
pdf_text_is_width_only, pdf_text_current_width,
pdf_text_set_cache, pdf_text_retry,
pdf_text_release
};
/* Ideally we would set the stroke and fill colours in pdf_prepare_text_drawing
* but this is called from pdf_process_text, not pdf_begin_text. The problem is
* that if we get a pattern colour we need to exit to the interpreter and run
* the PaintProc, we do this by retunring e_ReampColor. But the 'process' routines
* aren't set up to accept this, and just throw an error. Trying to rework the
* interpreter routines began turning into a gigantic task, so I chose instead
* to 'set' the colours here, which is called from text_begin, where the code
* allows us to return e_RemapColor. Attempting to write the colour to the PDF file
* in this routine as well caused trouble keeping the graphics states synchronised,
* so this functionality was left in pdf_prepare_text_drawing.
*/
static int
pdf_prepare_text_color(gx_device_pdf *const pdev, gs_imager_state *pis, const gs_text_params_t *text, gs_font *font)
{
int code=0;
if (text->operation & TEXT_DO_DRAW) {
gs_state *pgs = (gs_state *)pis;
if (!pdev->ForOPDFRead) {
if (pis->text_rendering_mode != 3 && pis->text_rendering_mode != 7) {
if (font->PaintType == 2) {
/* Bit awkward, if the PaintType is 2 then we want to set the
* current ie 'fill' colour, but as a stroke colour because we
* will later change the text rendering mode to 1 (stroke).
*/
code = gx_set_dev_color(pgs);
if (code != 0)
return code;
code = pdf_set_drawing_color(pdev, pis, pgs->color[0].dev_color, &pdev->saved_stroke_color,
&pdev->stroke_used_process_color,
&psdf_set_stroke_color_commands);
if (code < 0)
return code;
} else {
if ((pis->text_rendering_mode == 0 || pis->text_rendering_mode == 2 ||
pis->text_rendering_mode == 4 || pis->text_rendering_mode == 6) &&
!pdev->remap_stroke_color) {
code = gx_set_dev_color(pgs);
if (code != 0)
return code;
}
if (pis->text_rendering_mode == 1 || pis->text_rendering_mode == 2 ||
pis->text_rendering_mode == 5 || pis->text_rendering_mode == 6) {
if (!pdev->remap_fill_color) {
if (pdev->remap_stroke_color) {
pdev->remap_stroke_color = false;
} else {
gs_swapcolors_quick(pgs);
code = gx_set_dev_color(pgs);
if (code == gs_error_Remap_Color)
pdev->remap_stroke_color = true;
if (code != 0)
return code;
}
} else
pdev->remap_fill_color = false;
gs_swapcolors_quick(pgs);
code = gx_set_dev_color(pgs);
if (code == gs_error_Remap_Color)
pdev->remap_fill_color = true;
if (code != 0)
return code;
}
}
}
}
}
return code;
}
static int
pdf_prepare_text_drawing(gx_device_pdf *const pdev, gs_text_enum_t *pte)
{
gs_imager_state * pis = pte->pis;
gs_state *pgs = (gs_state *)pis;
const gx_clip_path * pcpath = pte->pcpath;
const gs_text_params_t *text = &pte->text;
bool new_clip = false; /* Quiet compiler. */
int code;
gs_font *font = pte->current_font;
if (!(text->operation & TEXT_DO_NONE) || pis->text_rendering_mode == 3) {
new_clip = pdf_must_put_clip_path(pdev, pcpath);
if (new_clip)
code = pdf_unclip(pdev);
else if (pdev->context == PDF_IN_NONE)
code = pdf_open_page(pdev, PDF_IN_STREAM);
else
code = 0;
if (code < 0)
return code;
code = pdf_prepare_fill(pdev, pis);
if (code < 0)
return code;
}
if (text->operation & TEXT_DO_DRAW) {
/*
* Set the clipping path and drawing color. We set both the fill
* and stroke color, because we don't know whether the fonts will be
* filled or stroked, and we can't set a color while we are in text
* mode. (This is a consequence of the implementation, not a
* limitation of PDF.)
*/
if (new_clip) {
code = pdf_put_clip_path(pdev, pcpath);
if (code < 0)
return code;
}
if (!pdev->ForOPDFRead) {
if (pis->text_rendering_mode != 3 && pis->text_rendering_mode != 7) {
if (font->PaintType == 2) {
/* Bit awkward, if the PaintType is 2 then we want to set the
* current ie 'fill' colour, but as a stroke colour because we
* will later change the text rendering mode to 1 (stroke).
*/
code = gx_set_dev_color(pgs);
if (code != 0)
return code;
code = pdf_set_drawing_color(pdev, pis, pgs->color[0].dev_color, &pdev->saved_stroke_color,
&pdev->stroke_used_process_color,
&psdf_set_stroke_color_commands);
if (code < 0)
return code;
} else {
if (pis->text_rendering_mode == 0 || pis->text_rendering_mode == 2 ||
pis->text_rendering_mode == 4 || pis->text_rendering_mode == 6) {
code = gx_set_dev_color(pgs);
if (code != 0)
return code;
code = pdf_set_drawing_color(pdev, pis, pgs->color[0].dev_color, &pdev->saved_fill_color,
&pdev->fill_used_process_color,
&psdf_set_fill_color_commands);
if (code < 0)
return code;
}
if (pis->text_rendering_mode == 1 || pis->text_rendering_mode == 2 ||
pis->text_rendering_mode == 5 || pis->text_rendering_mode == 6) {
gs_swapcolors_quick(pgs);
code = gx_set_dev_color(pgs);
if (code != 0)
return code;
code = pdf_set_drawing_color(pdev, pis, pgs->color[0].dev_color, &pdev->saved_stroke_color,
&pdev->stroke_used_process_color,
&psdf_set_stroke_color_commands);
if (code < 0)
return code;
gs_swapcolors_quick(pgs);
}
}
}
} else {
code = gx_set_dev_color(pgs);
if (code != 0)
return code;
if ((code =
pdf_set_drawing_color(pdev, pis, pgs->color[0].dev_color, &pdev->saved_stroke_color,
&pdev->stroke_used_process_color,
&psdf_set_stroke_color_commands)) < 0 ||
(code =
pdf_set_drawing_color(pdev, pis, pgs->color[0].dev_color, &pdev->saved_fill_color,
&pdev->fill_used_process_color,
&psdf_set_fill_color_commands)) < 0
)
return code;
}
}
return 0;
}
int
gdev_pdf_text_begin(gx_device * dev, gs_imager_state * pis,
const gs_text_params_t *text, gs_font * font,
gx_path * path0, const gx_device_color * pdcolor,
const gx_clip_path * pcpath,
gs_memory_t * mem, gs_text_enum_t ** ppte)
{
gx_device_pdf *const pdev = (gx_device_pdf *)dev;
gx_path *path = path0;
pdf_text_enum_t *penum;
int code, user_defined = 0;
/* Track the dominant text rotation. */
{
gs_matrix tmat;
gs_point p;
int i;
gs_matrix_multiply(&font->FontMatrix, &ctm_only(pis), &tmat);
gs_distance_transform(1, 0, &tmat, &p);
if (p.x > fabs(p.y))
i = 0;
else if (p.x < -fabs(p.y))
i = 2;
else if (p.y > fabs(p.x))
i = 1;
else if (p.y < -fabs(p.x))
i = 3;
else
i = 4;
pdf_current_page(pdev)->text_rotation.counts[i] += text->size;
}
pdev->last_charpath_op = 0;
if ((text->operation & TEXT_DO_ANY_CHARPATH) && !path0->first_subpath) {
if (pdf_compare_text_state_for_charpath(pdev->text->text_state, pdev, pis, font, text))
pdev->last_charpath_op = text->operation & TEXT_DO_ANY_CHARPATH;
}
if(font->FontType == ft_user_defined ||
font->FontType == ft_PCL_user_defined ||
font->FontType == ft_GL2_stick_user_defined)
user_defined = 1;
/* We need to know whether any of the glyphs in a string using a composite font
* use a descendant font which is a type 3 (user-defined) so that we can properly
* skip the caching below.
*/
if(font->FontType == ft_composite && ((gs_font_type0 *)font)->data.FMapType != fmap_CMap) {
int font_code;
gs_char chr;
gs_glyph glyph;
rc_alloc_struct_1(penum, pdf_text_enum_t, &st_pdf_text_enum, mem,
return_error(gs_error_VMerror), "gdev_pdf_text_begin");
penum->rc.free = rc_free_text_enum;
penum->pte_default = 0;
penum->charproc_accum = false;
penum->cdevproc_callout = false;
penum->returned.total_width.x = penum->returned.total_width.y = 0;
penum->cgp = NULL;
penum->output_char_code = GS_NO_CHAR;
code = gs_text_enum_init((gs_text_enum_t *)penum, &pdf_text_procs,
dev, pis, text, font, path, pdcolor, pcpath, mem);
if (code < 0) {
gs_free_object(mem, penum, "gdev_pdf_text_begin");
return code;
}
do {
font_code = penum->orig_font->procs.next_char_glyph
((gs_text_enum_t *)penum, &chr, &glyph);
if (font_code == 1){
if (penum->fstack.items[penum->fstack.depth].font->FontType == 3) {
user_defined = 1;
break;
}
}
} while(font_code != 2 && font_code >= 0);
gs_text_release((gs_text_enum_t *)penum, "pdf_text_process");
}
if (!user_defined || !(text->operation & TEXT_DO_ANY_CHARPATH)) {
if (user_defined &&
(text->operation & TEXT_DO_NONE) && (text->operation & TEXT_RETURN_WIDTH)
&& pis->text_rendering_mode != 3) {
/* This is stringwidth, see gx_default_text_begin.
* We need to prevent writing characters to PS cache,
* otherwise the font converts to bitmaps.
* So pass through even with stringwidth.
*/
code = gx_hld_stringwidth_begin(pis, &path);
if (code < 0)
return code;
} else if ((!(text->operation & TEXT_DO_DRAW) && pis->text_rendering_mode != 3)
|| path == 0 || !path_position_valid(path)
|| pdev->type3charpath)
return gx_default_text_begin(dev, pis, text, font, path, pdcolor,
pcpath, mem, ppte);
else if (text->operation & TEXT_DO_ANY_CHARPATH)
return gx_default_text_begin(dev, pis, text, font, path, pdcolor,
pcpath, mem, ppte);
}
if (!pdev->ForOPDFRead) {
code = pdf_prepare_text_color(pdev, pis, text, font);
if (code != 0)
return code;
}
/* Allocate and initialize the enumerator. */
rc_alloc_struct_1(penum, pdf_text_enum_t, &st_pdf_text_enum, mem,
return_error(gs_error_VMerror), "gdev_pdf_text_begin");
penum->rc.free = rc_free_text_enum;
penum->pte_default = 0;
penum->charproc_accum = false;
penum->cdevproc_callout = false;
penum->returned.total_width.x = penum->returned.total_width.y = 0;
penum->cgp = NULL;
penum->output_char_code = GS_NO_CHAR;
code = gs_text_enum_init((gs_text_enum_t *)penum, &pdf_text_procs,
dev, pis, text, font, path, pdcolor, pcpath, mem);
if (code < 0) {
gs_free_object(mem, penum, "gdev_pdf_text_begin");
return code;
}
if (pdev->font3 != 0) {
/* A text operation happens while accumulating a charproc.
This is a case when source document uses a Type 3 font,
which's charproc uses another font.
Since the text operation is handled by the device,
the font isn't converting to a raster (i.e. to a bitmap font).
Disable the grid fitting for the convertion to get a proper outlines,
because the viewer resolution is not known during the accumulation.
Note we set identity CTM in pdf_text_set_cache for the accumilation,
and therefore the font may look too small while the source charproc
interpretation. The document tpc2.ps of the bug 687087 is an example.
*/
penum->device_disabled_grid_fitting = true;
}
*ppte = (gs_text_enum_t *)penum;
return 0;
}
/* ================ Font cache element ================ */
/* GC descriptor */
private_st_pdf_font_cache_elem();
/*
* Compute id for a font cache element.
*/
static ulong
pdf_font_cache_elem_id(gs_font *font)
{
#ifdef DEPRECATED_906
/*
* For compatibility with Ghostscript rasterizer's
* cache logic we use UniqueID to identify fonts.
* Note that with buggy documents, which don't
* undefine UniqueID redefining a font,
* Ghostscript PS interpreter can occasionaly
* replace cache elements on insufficient cache size,
* taking glyphs from random fonts with random metrics,
* therefore the compatibility isn't complete.
*/
/*
* This branch is incompatible with pdf_notify_remove_font.
*/
if (font->FontType == ft_composite || font->PaintType != 0 ||
!uid_is_valid(&(((gs_font_base *)font)->UID)))
return font->id;
else
return ((gs_font_base *)font)->UID.id;
#else
return font->id;
#endif
}
pdf_font_cache_elem_t **
pdf_locate_font_cache_elem(gx_device_pdf *pdev, gs_font *font)
{
pdf_font_cache_elem_t **e = &pdev->font_cache;
long id = pdf_font_cache_elem_id(font);
for (; *e != 0; e = &(*e)->next)
if ((*e)->font_id == id) {
return e;
}
return 0;
}
static void
pdf_remove_font_cache_elem(pdf_font_cache_elem_t *e0)
{
gx_device_pdf *pdev = e0->pdev;
pdf_font_cache_elem_t **e = &pdev->font_cache;
for (; *e != 0; e = &(*e)->next)
if (*e == e0) {
*e = e0->next;
gs_free_object(pdev->pdf_memory, e0->glyph_usage,
"pdf_remove_font_cache_elem");
gs_free_object(pdev->pdf_memory, e0->real_widths,
"pdf_remove_font_cache_elem");
/* Clean pointers, because gs_free_object below may work idle
when this function is called by a garbager notification.
Leaving unclean pointers may cause
a further heap validation to fail
since the unfreed structure points to freed areas.
For instance, e0->next may point to an element,
which is really freed with a subsequent 'restore'.
Bug 688837. */
e0->next = 0;
e0->glyph_usage = 0;
e0->real_widths = 0;
e0->pdev = 0;
gs_free_object(pdev->pdf_memory, e0,
"pdf_remove_font_cache_elem");
return;
}
}
static void
font_cache_elem_array_sizes(gx_device_pdf *pdev, gs_font *font,
int *num_widths, int *num_chars)
{
switch (font->FontType) {
case ft_composite:
*num_widths = 0; /* Unused for Type 0 */
*num_chars = 65536; /* No chance to determine, use max. */
break;
case ft_encrypted:
case ft_encrypted2:
case ft_user_defined:
case ft_GL2_stick_user_defined:
case ft_PCL_user_defined:
case ft_disk_based:
case ft_Chameleon:
case ft_TrueType:
*num_widths = *num_chars = 256; /* Assuming access to glyph_usage by character codes */
break;
case ft_CID_encrypted:
*num_widths = *num_chars = ((gs_font_cid0 *)font)->cidata.common.MaxCID + 1;
break;
case ft_CID_TrueType:
*num_widths = *num_chars = ((gs_font_cid2 *)font)->cidata.common.CIDCount;
break;
default:
*num_widths = *num_chars = 65536; /* No chance to determine, use max. */
}
}
static int
alloc_font_cache_elem_arrays(gx_device_pdf *pdev, pdf_font_cache_elem_t *e,
gs_font *font)
{
int num_widths, num_chars, len;
font_cache_elem_array_sizes(pdev, font, &num_widths, &num_chars);
len = (num_chars + 7) / 8;
e->glyph_usage = gs_alloc_bytes(pdev->pdf_memory,
len, "alloc_font_cache_elem_arrays");
e->real_widths = (num_widths > 0 ? (double *)gs_alloc_bytes(pdev->pdf_memory,
num_widths * sizeof(*e->real_widths) *
((font->FontType == ft_user_defined ||
font->FontType == ft_GL2_stick_user_defined ||
font->FontType == ft_PCL_user_defined) ? 2 : 1),
"alloc_font_cache_elem_arrays") : NULL);
if (e->glyph_usage == NULL || (num_widths !=0 && e->real_widths == NULL)) {
gs_free_object(pdev->pdf_memory, e->glyph_usage,
"pdf_attach_font_resource");
gs_free_object(pdev->pdf_memory, e->real_widths,
"alloc_font_cache_elem_arrays");
return_error(gs_error_VMerror);
}
e->num_chars = num_chars;
e->num_widths = num_widths;
memset(e->glyph_usage, 0, len);
if (e->real_widths != NULL)
memset(e->real_widths, 0, num_widths * sizeof(*e->real_widths));
return 0;
}
int
pdf_free_font_cache(gx_device_pdf *pdev)
{
pdf_font_cache_elem_t *e = pdev->font_cache, *next;
/* fixed! fixme : release elements.
* We no longer track font_cache elements in the original font, which is where
* the memory used to be released. So now we must release it ourselves.
*/
while (e != NULL) {
next = e->next;
pdf_remove_font_cache_elem(e);
e = next;
}
pdev->font_cache = NULL;
return 0;
}
/*
* Retrive font resource attached to a font,
* allocating glyph_usage and real_widths on request.
*/
int
pdf_attached_font_resource(gx_device_pdf *pdev, gs_font *font,
pdf_font_resource_t **pdfont, byte **glyph_usage,
double **real_widths, int *num_chars, int *num_widths)
{
pdf_font_cache_elem_t **e = pdf_locate_font_cache_elem(pdev, font);
if (e != NULL && (((*e)->glyph_usage == NULL && glyph_usage !=NULL) ||
((*e)->real_widths == NULL && real_widths !=NULL))) {
int code = alloc_font_cache_elem_arrays(pdev, *e, font);
if (code < 0)
return code;
}
*pdfont = (e == NULL ? NULL : (*e)->pdfont);
if (glyph_usage != NULL)
*glyph_usage = (e == NULL ? NULL : (*e)->glyph_usage);
if (real_widths != NULL)
*real_widths = (e == NULL ? NULL : (*e)->real_widths);
if (num_chars != NULL)
*num_chars = (e == NULL ? 0 : (*e)->num_chars);
if (num_widths != NULL)
*num_widths = (e == NULL ? 0 : (*e)->num_widths);
return 0;
}
/*
* Attach font resource to a font.
*/
int
pdf_attach_font_resource(gx_device_pdf *pdev, gs_font *font,
pdf_font_resource_t *pdfont)
{
int num_chars, num_widths, len;
pdf_font_cache_elem_t *e, **pe = pdf_locate_font_cache_elem(pdev, font);
/* Allow the HPGL2 stick font to be attached to a type 3 font, it *is* a
* type 3 font, its just identified differently so that we can choose not
* to capture it elsewhere. Same for PCL bitmap fonts.
*/
if (pdfont->FontType != font->FontType &&
(pdfont->FontType != ft_user_defined ||
(font->FontType != ft_PCL_user_defined &&
font->FontType != ft_GL2_stick_user_defined)))
return_error(gs_error_unregistered); /* Must not happen. */
font_cache_elem_array_sizes(pdev, font, &num_widths, &num_chars);
len = (num_chars + 7) / 8;
if (pe != NULL) {
e = *pe;
if (e->pdfont == pdfont)
return 0;
e->pdfont = pdfont;
/* Reset glyph cache because e->pdfont had changed. */
memset(e->glyph_usage, 0, len);
memset(e->real_widths, 0, num_widths * sizeof(*e->real_widths));
} else {
e = (pdf_font_cache_elem_t *)gs_alloc_struct(pdev->pdf_memory,
pdf_font_cache_elem_t, &st_pdf_font_cache_elem,
"pdf_attach_font_resource");
if (e == NULL)
return_error(gs_error_VMerror);
e->pdfont = pdfont;
e->font_id = pdf_font_cache_elem_id(font);
e->num_chars = 0;
e->glyph_usage = NULL;
e->real_widths = NULL;
e->pdev = pdev;
e->next = pdev->font_cache;
pdev->font_cache = e;
return 0;
}
return 0;
}
/* ================ Process text ================ */
/* ---------------- Internal utilities ---------------- */
/*
* Compute and return the orig_matrix of a font.
*/
int
pdf_font_orig_matrix(const gs_font *font, gs_matrix *pmat)
{
switch (font->FontType) {
case ft_composite: /* subfonts have their own FontMatrix */
case ft_TrueType:
case ft_CID_TrueType:
/* The TrueType FontMatrix is 1 unit per em, which is what we want. */
gs_make_identity(pmat);
return 0;
case ft_encrypted:
case ft_encrypted2:
case ft_CID_encrypted:
case ft_user_defined:
case ft_PCL_user_defined:
case ft_GL2_stick_user_defined:
/*
* Type 1 fonts are supposed to use a standard FontMatrix of
* [0.001 0 0 0.001 0 0], with a 1000-unit cell. However,
* Windows NT 4.0 creates Type 1 fonts, apparently derived from
* TrueType fonts, that use a 2048-unit cell and corresponding
* FontMatrix. Also, some PS programs perform font scaling by
* replacing FontMatrix like this :
*
* /f12 /Times-Roman findfont
* copyfont % (remove FID)
* dup /FontMatrix [0.012 0 0 0.012 0 0] put
* definefont
* /f12 1 selectfont
*
* Such fonts are their own "base font", but the orig_matrix
* must still be set to 0.001, not 0.012 .
*
* The old code used a heuristic to detect and correct for this here.
* Unfortunately it doesn't work properly when it meets a font
* with FontMatrix like this :
*
* /FontMatrix [1 2288 div 0 0 1 2288 div 0 0 ] def
*
* (the bug 686970). Also comparefiles\455690.pdf appears to
* have similar problem. Therefore we added a support to lib/gs_fonts.ps,
* src/zbfont.c, src/gsfont.c that provides an acces to the original
* font via a special key OrigFont added to the font dictionary while definefont.
* Now we work through this access with PS interpreter,
* but keep the old heuristic for other clients.
*/
{
const gs_font *base_font = font;
while (base_font->base != base_font)
base_font = base_font->base;
if (font->FontType == ft_user_defined ||
font->FontType == ft_PCL_user_defined ||
font->FontType == ft_GL2_stick_user_defined)
*pmat = base_font->FontMatrix;
else if (base_font->orig_FontMatrix.xx != 0 || base_font->orig_FontMatrix.xy != 0 ||
base_font->orig_FontMatrix.yx != 0 || base_font->orig_FontMatrix.yy != 0)
*pmat = base_font->orig_FontMatrix;
else {
/* Must not happen with PS interpreter.
Provide a hewuristic for other clients.
*/
if (base_font->FontMatrix.xx == 1.0/2048 &&
base_font->FontMatrix.xy == 0 &&
base_font->FontMatrix.yx == 0 &&
any_abs(base_font->FontMatrix.yy) == 1.0/2048
)
*pmat = base_font->FontMatrix;
else
gs_make_scaling(0.001, 0.001, pmat);
}
}
return 0;
default:
return_error(gs_error_rangecheck);
}
}
/*
* Special version of pdf_font_orig_matrix(), that cares FDArray font's FontMatrix too.
* Called only by pdf_glyph_width().
* 'cid' is only consulted if 'font' is a CIDFontType 0 CID font.
*/
static int
glyph_orig_matrix(const gs_font *font, gs_glyph cid, gs_matrix *pmat)
{
int code = pdf_font_orig_matrix(font, pmat);
if (code >= 0) {
if (font->FontType == ft_CID_encrypted) {
int fidx;
if (cid < GS_MIN_CID_GLYPH)
cid = GS_MIN_CID_GLYPH;
code = ((gs_font_cid0 *)font)->cidata.glyph_data((gs_font_base *)font,
cid, NULL, &fidx);
if (code < 0) {
code = ((gs_font_cid0 *)font)->cidata.glyph_data((gs_font_base *)font,
(gs_glyph)GS_MIN_CID_GLYPH, NULL, &fidx);
}
if (code >= 0) {
gs_matrix_multiply(&(gs_cid0_indexed_font(font, fidx)->FontMatrix),
pmat, pmat);
}
}
}
return code;
}
/*
* Check the Encoding compatibility
*/
bool
pdf_check_encoding_compatibility(const pdf_font_resource_t *pdfont,
const pdf_char_glyph_pair_t *pairs, int num_chars)
{
int i;
for (i = 0; i < num_chars; ++i) {
gs_char ch = pairs[i].chr;
pdf_encoding_element_t *pet = &pdfont->u.simple.Encoding[ch];
if (pairs[i].glyph == pet->glyph)
continue;
if (pet->glyph != GS_NO_GLYPH) /* encoding conflict */
return false;
}
return true;
}
/*
* Check whether the Encoding has listed glyphs.
*/
static bool
pdf_check_encoding_has_glyphs(const pdf_font_resource_t *pdfont,
const pdf_char_glyph_pair_t *pairs, int num_chars)
{
/* This function is pretty slow, but we can't find a better algorithm.
It works for the case of glyphshow with no proper encoding,
which we believe comes from poorly designed documents.
*/
int i, ch;
for (i = 0; i < num_chars; ++i) {
for (ch = 0; ch < 256; ch++) {
pdf_encoding_element_t *pet = &pdfont->u.simple.Encoding[ch];
if (pairs[i].glyph == pet->glyph)
return true;
}
}
return false;
}
/*
* Check font resource for encoding compatibility.
*/
static bool
pdf_is_compatible_encoding(gx_device_pdf *pdev, pdf_font_resource_t *pdfont,
gs_font *font, const pdf_char_glyph_pair_t *pairs, int num_chars)
{
/*
* This crude version of the code ignores
* the possibility of re-encoding characters.
*/
switch (pdfont->FontType) {
case ft_composite:
{ /*
* We assume that source document don't redefine CMap
* resources and that incremental CMaps do not exist.
* Therefore we don't maintain stable CMap copies,
* but just compare CMap names for equality.
* A better implementation should compare the chars->glyphs
* translation against the stable copy of CMap,
* which to be handled with PDF CMap resource.
*/
gs_font_type0 *pfont = (gs_font_type0 *)font;
if (pfont->data.FMapType == fmap_CMap) {
const gs_cmap_t *pcmap = pfont->data.CMap;
const gs_const_string *s0 = &pdfont->u.type0.CMapName;
const gs_const_string *s1 = &pcmap->CMapName;
return (s0->size == s1->size &&
!memcmp(s0->data, s1->data, s0->size));
}
}
return false;
case ft_user_defined:
case ft_PCL_user_defined:
case ft_GL2_stick_user_defined:
if (pdfont->u.simple.Encoding == NULL)
return false; /* Not sure. Happens with 020-01.ps . */
/* fall through */
case ft_encrypted:
case ft_encrypted2:
case ft_TrueType:
return pdf_check_encoding_compatibility(pdfont, pairs, num_chars);
case ft_CID_encrypted:
case ft_CID_TrueType:
{
gs_font *font1 = (gs_font *)pdf_font_resource_font(pdfont, false);
return gs_is_CIDSystemInfo_compatible(
gs_font_cid_system_info(font),
gs_font_cid_system_info(font1));
}
default:
return false;
}
}
/*
* Check whethet the font resource has glyphs.
*/
static bool
pdf_font_has_glyphs(gx_device_pdf *pdev, pdf_font_resource_t *pdfont,
gs_font *font, const pdf_char_glyph_pair_t *pairs, int num_chars)
{
/*
* This crude version of the code ignores
* the possibility of re-encoding characters.
*/
switch (pdfont->FontType) {
case ft_composite:
case ft_user_defined:
case ft_PCL_user_defined:
case ft_GL2_stick_user_defined:
/* Unused case. */
return false;
case ft_encrypted:
case ft_encrypted2:
case ft_TrueType:
return pdf_check_encoding_has_glyphs(pdfont, pairs, num_chars);
case ft_CID_encrypted:
case ft_CID_TrueType:
/* Unused case. */
return false;
default:
return false;
}
}
/*
* Find a font resource compatible with a given font.
*/
static int
pdf_find_font_resource(gx_device_pdf *pdev, gs_font *font,
pdf_resource_type_t type,
pdf_font_resource_t **ppdfont,
pdf_char_glyph_pairs_t *cgp,
bool compatible_encoding)
{
pdf_resource_t **pchain = pdev->resources[type].chains;
pdf_resource_t *pres;
int i;
for (i = 0; i < NUM_RESOURCE_CHAINS; i++) {
for (pres = pchain[i]; pres != 0; pres = pres->next) {
pdf_font_resource_t *pdfont = (pdf_font_resource_t *)pres;
const gs_font_base *cfont;
gs_font *ofont = font;
int code;
if (font->FontType != pdfont->FontType)
continue;
if (pdfont->FontType == ft_composite) {
gs_font_type0 *font0 = (gs_font_type0 *)font;
ofont = font0->data.FDepVector[0]; /* See pdf_make_font_resource. */
cfont = pdf_font_resource_font(pdfont->u.type0.DescendantFont, false);
if (font0->data.CMap->WMode != pdfont->u.type0.WMode)
continue;
} else
cfont = pdf_font_resource_font(pdfont, false);
if (!pdf_is_CID_font(ofont) &&
(compatible_encoding
? !pdf_is_compatible_encoding(pdev, pdfont, font, cgp->s, cgp->num_all_chars)
: !pdf_font_has_glyphs(pdev, pdfont, font, cgp->s, cgp->num_all_chars)))
continue;
if (cfont == 0)
continue;
code = gs_copied_can_copy_glyphs((const gs_font *)cfont, ofont,
&cgp->s[cgp->unused_offset].glyph, cgp->num_unused_chars,
sizeof(pdf_char_glyph_pair_t), true);
if (code == gs_error_unregistered) /* Debug purpose only. */
return code;
if(code > 0) {
*ppdfont = pdfont;
return 1;
}
}
}
return 0;
}
/*
* Find a type0 font resource for a gived descendent name and CMap name.
*/
static int
pdf_find_type0_font_resource(gx_device_pdf *pdev, const pdf_font_resource_t *pdsubf,
const gs_const_string *CMapName, uint font_index, pdf_font_resource_t **ppdfont)
{
pdf_resource_t **pchain = pdev->resources[resourceFont].chains;
pdf_resource_t *pres;
int i;
for (i = 0; i < NUM_RESOURCE_CHAINS; i++) {
for (pres = pchain[i]; pres != 0; pres = pres->next) {
pdf_font_resource_t *pdfont = (pdf_font_resource_t *)pres;
if (pdfont->FontType != ft_composite)
continue;
if (pdfont->u.type0.DescendantFont != pdsubf)
continue;
if (pdfont->u.type0.font_index != font_index)
continue;
if (pdfont->BaseFont.size != pdsubf->BaseFont.size + CMapName->size + 1)
continue;
if (memcmp(pdfont->BaseFont.data + pdsubf->BaseFont.size + 1,
CMapName->data, CMapName->size))
continue;
*ppdfont = pdfont;
return 1;
}
}
return 0;
}
static int pdf_make_font_resource(gx_device_pdf *pdev, gs_font *font,
pdf_font_resource_t **ppdfont,
pdf_char_glyph_pairs_t *cgp);
/*
* Create or find a CID font resource object for a glyph set.
*/
int
pdf_obtain_cidfont_resource(gx_device_pdf *pdev, gs_font *subfont,
pdf_font_resource_t **ppdsubf,
pdf_char_glyph_pairs_t *cgp)
{
int code = 0;
code = pdf_attached_font_resource(pdev, subfont, ppdsubf, NULL, NULL, NULL, NULL);
if (code < 0)
return code;
if (*ppdsubf != NULL) {
const gs_font_base *cfont = pdf_font_resource_font(*ppdsubf, false);
code = gs_copied_can_copy_glyphs((const gs_font *)cfont, subfont,
&cgp->s[cgp->unused_offset].glyph, cgp->num_unused_chars,
sizeof(pdf_char_glyph_pair_t), true);
if (code > 0)
return 0;
if (code < 0)
return code;
*ppdsubf = NULL;
}
code = pdf_find_font_resource(pdev, subfont,
resourceCIDFont, ppdsubf, cgp, true);
if (code < 0)
return code;
if (*ppdsubf == NULL) {
code = pdf_make_font_resource(pdev, subfont, ppdsubf, cgp);
if (code < 0)
return code;
}
return pdf_attach_font_resource(pdev, subfont, *ppdsubf);
}
/*
* Refine index of BaseEncoding.
*/
static int
pdf_refine_encoding_index(const gx_device_pdf *pdev, int index, bool is_standard)
{
if (pdev->ForOPDFRead) {
/*
* Allow Postscript encodings only.
*/
switch (index) {
case ENCODING_INDEX_STANDARD: return index;
case ENCODING_INDEX_ISOLATIN1: return index;
default:
return ENCODING_INDEX_STANDARD;
}
}
/*
* Per the PDF 1.3 documentation, there are only 3 BaseEncoding
* values allowed for non-embedded fonts. Pick one here.
*/
switch (index) {
case ENCODING_INDEX_WINANSI:
case ENCODING_INDEX_MACROMAN:
case ENCODING_INDEX_MACEXPERT:
return index;
case ENCODING_INDEX_STANDARD:
if (is_standard)
return index;
/* Falls through. */
default:
return ENCODING_INDEX_WINANSI;
}
}
/*
* Create a font resource object for a gs_font of Type 3.
*/
int
pdf_make_font3_resource(gx_device_pdf *pdev, gs_font *font,
pdf_font_resource_t **ppdfont)
{
const gs_font_base *bfont = (const gs_font_base *)font;
pdf_font_resource_t *pdfont;
byte *cached;
int code;
cached = gs_alloc_bytes(pdev->pdf_memory, 256/8, "pdf_make_font3_resource");
if (cached == NULL)
return_error(gs_error_VMerror);
code = font_resource_encoded_alloc(pdev, &pdfont, bfont->id,
ft_user_defined, pdf_write_contents_bitmap);
if (code < 0) {
gs_free_object(pdev->pdf_memory, cached, "pdf_make_font3_resource");
return code;
}
memset(cached, 0, 256 / 8);
pdfont->mark_glyph = font->dir->ccache.mark_glyph; /* For pdf_font_resource_enum_ptrs. */
pdfont->u.simple.s.type3.bitmap_font = false;
pdfont->u.simple.BaseEncoding = pdf_refine_encoding_index(pdev,
bfont->nearest_encoding_index, true);
pdfont->u.simple.s.type3.char_procs = NULL;
pdfont->u.simple.s.type3.cached = cached;
if (pdfont->FontType == ft_user_defined && bfont->FontBBox.p.x == 0.0 &&
bfont->FontBBox.p.y == 0.00 && bfont->FontBBox.q.x == 0.00 &&
bfont->FontBBox.q.y == 0.0) {
/* I think this can only happen with a type 3 (bitmap) font from PCL.
* If we leave the BBox as 0 then we end up putting a 0 0 1000 1000 in
* the PDF. This causes Acrobat to be unable to search or highlight
* the search results. I think that we will always get a consistent
* type of font from the PCL interpreter, and if so the correct BBox
* sould always is 0 0 1 -1.
*/
pdfont->u.simple.s.type3.FontBBox.p.x = 0;
pdfont->u.simple.s.type3.FontBBox.p.y = 0;
pdfont->u.simple.s.type3.FontBBox.q.x = 1;
pdfont->u.simple.s.type3.FontBBox.q.y = -1;
} else {
pdfont->u.simple.s.type3.FontBBox.p.x = bfont->FontBBox.p.x;
pdfont->u.simple.s.type3.FontBBox.p.y = bfont->FontBBox.p.y;
pdfont->u.simple.s.type3.FontBBox.q.x = bfont->FontBBox.q.x;
pdfont->u.simple.s.type3.FontBBox.q.y = bfont->FontBBox.q.y;
}
pdfont->u.simple.s.type3.FontMatrix = bfont->FontMatrix;
pdfont->u.simple.s.type3.Resources = cos_dict_alloc(pdev, "pdf_make_font3_resource");
if (pdfont->u.simple.s.type3.Resources == NULL)
return_error(gs_error_VMerror);
/* Adobe viewers have a precision problem with small font matrices : */
/* Don't perform this test if all entries are 0, leads to infinite loop! */
if (pdfont->u.simple.s.type3.FontMatrix.xx != 0.0 ||
pdfont->u.simple.s.type3.FontMatrix.xy != 0.0 ||
pdfont->u.simple.s.type3.FontMatrix.yx != 0.0 ||
pdfont->u.simple.s.type3.FontMatrix.yy != 0.0) {
while (any_abs(pdfont->u.simple.s.type3.FontMatrix.xx) < 0.001 &&
any_abs(pdfont->u.simple.s.type3.FontMatrix.xy) < 0.001 &&
any_abs(pdfont->u.simple.s.type3.FontMatrix.yx) < 0.001 &&
any_abs(pdfont->u.simple.s.type3.FontMatrix.yy) < 0.001) {
pdfont->u.simple.s.type3.FontMatrix.xx *= 10;
pdfont->u.simple.s.type3.FontMatrix.xy *= 10;
pdfont->u.simple.s.type3.FontMatrix.yx *= 10;
pdfont->u.simple.s.type3.FontMatrix.yy *= 10;
}
}
*ppdfont = pdfont;
return 0;
}
/*
* Create a font resource object for a gs_font. Return 1 iff the
* font was newly created (it's a roudiment, keeping reverse compatibility).
* This procedure is only intended to be called
* from a few places in the text code.
*/
static int
pdf_make_font_resource(gx_device_pdf *pdev, gs_font *font,
pdf_font_resource_t **ppdfont,
pdf_char_glyph_pairs_t *cgp)
{
int index = -1;
int BaseEncoding = ENCODING_INDEX_UNKNOWN;
pdf_font_embed_t embed;
pdf_font_descriptor_t *pfd = 0;
int (*font_alloc)(gx_device_pdf *, pdf_font_resource_t **,
gs_id, pdf_font_descriptor_t *);
gs_font *base_font = font; /* A roudiment from old code. Keep it for a while. */
pdf_font_resource_t *pdfont;
pdf_standard_font_t *const psfa =
pdev->text->outline_fonts->standard_fonts;
int code = 0;
if (pdev->version < psdf_version_level2_with_TT) {
switch(font->FontType) {
case ft_TrueType:
case ft_CID_TrueType:
return_error(gs_error_undefined);
default:
break;
}
}
if (pdev->ForOPDFRead && !pdev->HaveCIDSystem) {
switch(font->FontType) {
case ft_CID_encrypted:
case ft_CID_TrueType:
return_error(gs_error_undefined);
default:
break;
}
}
if (!pdev->HaveCFF) {
if (font->FontType == ft_encrypted2)
return_error(gs_error_undefined);
}
embed = pdf_font_embed_status(pdev, base_font, &index, cgp->s, cgp->num_all_chars);
if (pdev->CompatibilityLevel < 1.3)
if (embed != FONT_EMBED_NO && font->FontType == ft_CID_TrueType)
return_error(gs_error_rangecheck);
if (embed == FONT_EMBED_STANDARD) {
pdf_standard_font_t *psf = &psfa[index];
if (psf->pdfont == NULL ||
!pdf_is_compatible_encoding(pdev, psf->pdfont, font,
cgp->s, cgp->num_all_chars)) {
code = pdf_font_std_alloc(pdev, ppdfont, (psf->pdfont == NULL), base_font->id,
(gs_font_base *)base_font, index);
if (code < 0)
return code;
if (psf->pdfont == NULL)
psf->pdfont = *ppdfont;
(*ppdfont)->u.simple.BaseEncoding = pdf_refine_encoding_index(pdev,
((const gs_font_base *)base_font)->nearest_encoding_index, true);
code = 1;
} else
*ppdfont = psf->pdfont;
return code;
}
switch (font->FontType) {
case ft_CID_encrypted:
case ft_CID_TrueType:
font_alloc = pdf_font_cidfont_alloc;
break;
case ft_encrypted:
case ft_encrypted2:
case ft_TrueType:
font_alloc = pdf_font_simple_alloc;
break;
case ft_user_defined:
case ft_PCL_user_defined:
case ft_GL2_stick_user_defined:
code = pdf_make_font3_resource(pdev, font, ppdfont);
if (code < 0)
return code;
return 1;
default:
return_error(gs_error_invalidfont);
}
/* Create an appropriate font resource and descriptor. */
if (embed == FONT_EMBED_YES) {
/*
* HACK: Acrobat Reader 3 has a bug that makes cmap formats 4
* and 6 not work in embedded TrueType fonts. Consequently, it
* can only handle embedded TrueType fonts if all the glyphs
* referenced by the Encoding have numbers 0-255. Check for
* this now.
*/
if (font->FontType == ft_TrueType &&
pdev->CompatibilityLevel <= 1.2 && !pdev->ForOPDFRead
) {
int i;
for (i = 0; i <= 0xff; ++i) {
gs_glyph glyph =
font->procs.encode_char(font, (gs_char)i,
GLYPH_SPACE_INDEX);
if (glyph == GS_NO_GLYPH ||
(glyph >= GS_MIN_GLYPH_INDEX &&
glyph <= GS_MIN_GLYPH_INDEX + 0xff)
)
continue;
/* Can't embed, punt. */
return_error(gs_error_rangecheck);
}
}
}
if (font->FontType == ft_encrypted || font->FontType == ft_encrypted2
|| (font->FontType == ft_TrueType && pdev->ForOPDFRead)) {
/* Removed the addition of Encodings to TrueType fonts as we always write
* these with the Symbolic flag set. The comment below explains why we
* previously wrote these, but as the comment notes this was incorrect.
* Removed as it is causing preflight problems, and is specifically
* disallowed with PDF/A output.
*/
/*
* We write True Types with Symbolic flag set.
* PDF spec says that "symbolic font should not specify Encoding entry"
* (see section 5.5, the article "Encodings for True Type fonts", paragraph 3).
* However Acrobat Reader 4,5,6 fail when TT font with no Encoding
* appears in a document together with a CID font with a non-standard CMap
* (AR 4 and 5 claim "The encoding (CMap) specified by a font is corrupted."
* (we read it as "The encoding or CMap specified by a font is corrupted.",
* and apply the 1st alternative)). We believe that AR is buggy,
* and therefore we write an Encoding with non-CID True Type fonts.
* Hopely other viewers can ignore Encoding in such case. Actually in this case
* an Encoding doesn't add an useful information.
*/
BaseEncoding = pdf_refine_encoding_index(pdev,
((const gs_font_base *)base_font)->nearest_encoding_index, false);
}
if ((code = pdf_font_descriptor_alloc(pdev, &pfd,
(gs_font_base *)base_font,
embed == FONT_EMBED_YES)) < 0 ||
(code = font_alloc(pdev, &pdfont, base_font->id, pfd)) < 0
)
return code;
if (!pdf_is_CID_font(font)) {
pdfont->u.simple.BaseEncoding = BaseEncoding;
pdfont->mark_glyph = font->dir->ccache.mark_glyph;
}
if (pdev->PDFA != 0 && font->FontType == ft_TrueType) {
/* The Adobe preflight tool for PDF/A
checks whether Width or W include elements
for all characters in the True Type font.
Due to that we need to provide a width
for .notdef glyph.
(It's a part of the bug 688790).
*/
gs_font_base *cfont = pdf_font_descriptor_font(pfd, false/*any*/);
gs_glyph notdef_glyph = copied_get_notdef((const gs_font *)cfont);
pdf_glyph_widths_t widths;
double cdevproc_result[10] = {0,0,0,0,0, 0,0,0,0,0};
double *w, *v, *w0;
if (notdef_glyph != GS_NO_GLYPH) {
code = pdf_obtain_cidfont_widths_arrays(pdev, pdfont, font->WMode, &w, &w0, &v);
if (code < 0)
return code;
widths.Width.w = 0;
code = pdf_glyph_widths(pdfont, font->WMode, notdef_glyph,
font, &widths, cdevproc_result);
if (code < 0)
return code;
w[0] = widths.Width.w;
pdfont->used[0] |= 0x80;
}
}
*ppdfont = pdfont;
return 1;
}
/*
* Check for simple font.
*/
bool
pdf_is_simple_font(gs_font *font)
{
return (font->FontType == ft_encrypted ||
font->FontType == ft_encrypted2 ||
font->FontType == ft_TrueType ||
font->FontType == ft_user_defined ||
font->FontType == ft_PCL_user_defined ||
font->FontType == ft_GL2_stick_user_defined);
}
/*
* Check for CID font.
*/
bool
pdf_is_CID_font(gs_font *font)
{
return (font->FontType == ft_CID_encrypted ||
font->FontType == ft_CID_TrueType);
}
/*
* Enumerate glyphs for a text.
*/
static int
pdf_next_char_glyph(gs_text_enum_t *penum, const gs_string *pstr,
/* const */ gs_font *font, bool font_is_simple,
gs_char *char_code, gs_char *cid, gs_glyph *glyph)
{
int code = font->procs.next_char_glyph(penum, char_code, glyph);
if (code == 2) /* end of string */
return code;
if (code < 0)
return code;
if (font_is_simple) {
*cid = *char_code;
*glyph = font->procs.encode_char(font, *char_code, GLYPH_SPACE_NAME);
if (*glyph == GS_NO_GLYPH)
return 3;
} else {
if (*glyph < GS_MIN_CID_GLYPH)
return 3; /* Not sure why, copied from scan_cmap_text. */
*cid = *glyph - GS_MIN_CID_GLYPH; /* CID */
}
return 0;
}
static void
store_glyphs(pdf_char_glyph_pairs_t *cgp,
byte *glyph_usage, int char_cache_size,
gs_char char_code, gs_char cid, gs_glyph glyph)
{
int j;
for (j = 0; j < cgp->num_all_chars; j++)
if (cgp->s[j].chr == cid)
break;
if (j < cgp->num_all_chars)
return;
cgp->s[cgp->num_all_chars].glyph = glyph;
cgp->s[cgp->num_all_chars].chr = char_code;
cgp->num_all_chars++;
if (glyph_usage == 0 || !(glyph_usage[cid / 8] & (0x80 >> (cid & 7)))) {
cgp->s[cgp->unused_offset + cgp->num_unused_chars].glyph = glyph;
cgp->s[cgp->unused_offset + cgp->num_unused_chars].chr = char_code;
cgp->num_unused_chars++;
}
/* We are disliked that gs_copied_can_copy_glyphs can get redundant
* glyphs, if Encoding specifies several codes for same glyph.
* But we need the positional correspondence
* of glyphs to codes for pdf_is_compatible_encoding.
* Redundant glyphs isn't a big payment for it
* because they happen seldom.
*/
}
static gs_char
pdf_new_char_code_in_pdfont(pdf_char_glyph_pairs_t *cgp, gs_glyph glyph, int *last_reserved_char)
{ /* Returns 256 if encoding overflows. */
int j, ch;
for (j = 0; j < cgp->num_all_chars; j++)
if (cgp->s[j].glyph == glyph)
break;
if (j < cgp->num_all_chars)
return cgp->s[j].chr;
ch = ++*last_reserved_char;
cgp->s[cgp->num_all_chars].glyph = glyph;
cgp->s[cgp->num_all_chars].chr = ch;
cgp->num_all_chars++;
cgp->s[cgp->unused_offset + cgp->num_unused_chars].glyph = glyph;
cgp->s[cgp->unused_offset + cgp->num_unused_chars].chr = ch;
cgp->num_unused_chars++;
return ch;
}
static gs_char
pdf_reserve_char_code_in_pdfont(pdf_font_resource_t *pdfont, pdf_char_glyph_pairs_t *cgp, gs_glyph glyph,
int *last_reserved_char)
{ /* Returns 256 if encoding overflows. */
/* This function is pretty slow, but we can't find a better algorithm.
It works for the case of glyphshow with no proper encoding,
which we believe comes from poorly designed documents.
*/
int j, ch;
for (j = 0; j < cgp->num_all_chars; j++)
if (cgp->s[j].glyph == glyph)
break;
if (j < cgp->num_all_chars)
return cgp->s[j].chr;
for (ch = 0; ch < 256; ch++) {
pdf_encoding_element_t *pet = &pdfont->u.simple.Encoding[ch];
if (glyph == pet->glyph)
return ch;
}
/* If the font has a known encoding, prefer .notdef codes. */
if (pdfont->u.simple.preferred_encoding_index != -1) {
const ushort *enc = gs_c_known_encodings[pdfont->u.simple.preferred_encoding_index];
if (standard_glyph_code_for_notdef == GS_NO_GLYPH)
standard_glyph_code_for_notdef =
gs_c_name_glyph((const byte *)".notdef", 7) - gs_c_min_std_encoding_glyph;
for (ch = *last_reserved_char + 1; ch < 256; ch++) {
pdf_encoding_element_t *pet = &pdfont->u.simple.Encoding[ch];
if (pet->glyph == GS_NO_GLYPH && enc[ch] == standard_glyph_code_for_notdef) {
*last_reserved_char = ch;
break;
}
}
}
/* Otherwise use any code unused in the font. */
if (ch > 255) {
ch = *last_reserved_char + 1;
for (; ch < 255; ch++) {
pdf_encoding_element_t *pet = &pdfont->u.simple.Encoding[ch];
if (pet->glyph == GS_NO_GLYPH)
break;
}
*last_reserved_char = ch;
}
cgp->s[cgp->num_all_chars].glyph = glyph;
cgp->s[cgp->num_all_chars].chr = ch;
cgp->num_all_chars++;
cgp->s[cgp->unused_offset + cgp->num_unused_chars].glyph = glyph;
cgp->s[cgp->unused_offset + cgp->num_unused_chars].chr = ch;
cgp->num_unused_chars++;
return ch;
}
/* Allocate storage for the glyph set of the text. */
static int
pdf_alloc_text_glyphs_table(gx_device_pdf *pdev, pdf_text_enum_t *penum, const gs_string *pstr)
{
const int go = (pstr != NULL ? pstr->size : penum->text.size);
const int struct_size = sizeof(pdf_char_glyph_pairs_t) +
sizeof(pdf_char_glyph_pair_t) * (2 * go - 1);
pdf_char_glyph_pairs_t *cgp = (pdf_char_glyph_pairs_t *)gs_alloc_bytes(penum->memory,
struct_size, "pdf_alloc_text_glyphs_table");
if (cgp == NULL)
return_error(gs_error_VMerror);
penum->cgp = cgp;
cgp->unused_offset = go;
cgp->num_all_chars = 0;
cgp->num_unused_chars = 0;
return 0;
}
/* Build the glyph set of the text. */
static int
pdf_make_text_glyphs_table(pdf_text_enum_t *penum, const gs_string *pstr,
byte *glyph_usage, int char_cache_size)
{
gs_text_enum_t scan = *(gs_text_enum_t *)penum;
gs_font *font = (gs_font *)penum->current_font;
bool font_is_simple = pdf_is_simple_font(font);
pdf_char_glyph_pairs_t *cgp = penum->cgp;
gs_char char_code, cid;
gs_glyph glyph;
int code;
cgp->num_unused_chars = 0;
cgp->num_all_chars = 0;
if (pstr != NULL) {
scan.text.data.bytes = pstr->data;
scan.text.size = pstr->size;
scan.index = 0;
/* if TEXT_FROM_CHARS the data was converted to bytes earlier */
if ( scan.text.operation & TEXT_FROM_CHARS )
scan.text.operation = ((scan.text.operation & ~TEXT_FROM_CHARS) | TEXT_FROM_STRING);
}
for (;;) {
code = pdf_next_char_glyph(&scan, pstr, font, font_is_simple,
&char_code, &cid, &glyph);
if (code == 2) /* end of string */
break;
if (code == 3) /* no glyph */
continue;
if (code < 0)
return code;
if (cgp->num_all_chars > cgp->unused_offset)
return_error(gs_error_unregistered); /* Must not happen. */
if (glyph_usage != 0 && cid > char_cache_size)
continue;
store_glyphs(cgp, glyph_usage, char_cache_size,
char_code, cid, glyph);
}
return 0;
}
/* Build the glyph set of the glyphshow text, and re_encode the text. */
static int
pdf_make_text_glyphs_table_unencoded(gx_device_pdf *pdev, pdf_char_glyph_pairs_t *cgp,
gs_font *font, const gs_string *pstr, const gs_glyph *gdata,
int *ps_encoding_index)
{
int i, j, code;
gs_char ch;
gs_const_string gname;
gs_glyph *gid = (gs_glyph *)pstr->data; /* pdf_text_process allocs enough space. */
gs_font_base *bfont;
bool unknown = false;
pdf_font_resource_t *pdfont;
int ei, start_ei = -1;
code = pdf_attached_font_resource(pdev, font, &pdfont, NULL, NULL, NULL, NULL);
if (code < 0)
return code;
/* Translate glyph name indices into gscencs.c indices. */
for (i = 0; i < pstr->size; i++) {
int code = font->procs.glyph_name(font, gdata[i], &gname);
if (code < 0)
return code;
gid[i] = gs_c_name_glyph(gname.data, gname.size);
if (gid[i] == GS_NO_GLYPH) {
/* Use global glyph name. */
/* Assuming this can't fail in a middle of a text,
because TEXT_FROM_GLYPHS never works for Postscript. */
gid[i] = gdata[i];
unknown = true;
}
}
do_unknown:
if (unknown) {
int last_reserved_char = -1;
/* Using global glyph names. */
/* Try to find an existing font resource, which has necessary glyphs.
Doing so to prevent creating multiple font copies.
*/
cgp->num_unused_chars = 0;
cgp->num_all_chars = 0;
for (i = 0; i < pstr->size; i++) {
/* Temporary stub gid instead cid and char_code : */
store_glyphs(cgp, NULL, 0, gdata[i], gdata[i], gdata[i]);
}
code = pdf_find_font_resource(pdev, font, resourceFont, &pdfont, cgp, false);
if (code < 0)
return code;
if (code) {
/* Found one - make it be current. */
code = pdf_attach_font_resource(pdev, font, pdfont);
if (code < 0)
return code;
}
/* Try to add glyphs to the current font resource. . */
cgp->num_unused_chars = 0;
cgp->num_all_chars = 0;
if(pdfont != NULL)
last_reserved_char = pdfont->u.simple.last_reserved_char;
for (i = 0; i < pstr->size; i++) {
if (pdfont == NULL)
ch = 256; /* Force new encoding. */
else
ch = pdf_reserve_char_code_in_pdfont(pdfont, cgp, gdata[i], &last_reserved_char);
if (ch > 255) {
if(pdfont != NULL)
last_reserved_char = pdfont->u.simple.last_reserved_char;
/* Start a new font/encoding. */
last_reserved_char = -1;
cgp->num_unused_chars = 0;
cgp->num_all_chars = 0;
for (i = 0; i < pstr->size; i++) {
ch = pdf_new_char_code_in_pdfont(cgp, gdata[i], &last_reserved_char);
if (ch > 255) {
/* More than 255 unknown characters in a text.
It must not happen because TEXT_FROM_GLYPHS
never works for Postscript. */
return_error(gs_error_unregistered);
}
}
}
}
if (pdfont != NULL)
pdfont->u.simple.last_reserved_char = last_reserved_char;
/* Change glyphs to char codes in the text : */
for (i = 0; i < pstr->size; i++) {
/* Picked up by Coverity, if pdfont is NULL then the call might dereference it */
if (pdfont != NULL) {
/* A trick : pdf_reserve_char_code_in_pdfont here simply encodes with cgp. */
ch = pdf_reserve_char_code_in_pdfont(pdfont, cgp, gdata[i], &pdfont->u.simple.last_reserved_char);
pstr->data[i] = ch;
} else {
/* So if pdffont is NULL, do the 'trick' code mentioned above.
* If that fails (I believe it shouod not), then return an error.
*/
int j;
for (j = 0; j < cgp->num_all_chars; j++)
if (cgp->s[j].glyph == gdata[i])
break;
if (j < cgp->num_all_chars)
pstr->data[i] = cgp->s[j].chr;
else
return_error(gs_error_unregistered);
}
}
return 0;
}
/* Now we know it's a base font, bcause it has glyph names. */
bfont = (gs_font_base *)font;
if (start_ei < 0)
start_ei = bfont->nearest_encoding_index;
if (start_ei < 0)
start_ei = 0;
/* Find an acceptable encodng, starting from start_ei.
We need a conservative search to minimize the probability
of encoding conflicts.
*/
for (j = 0, ei = start_ei; gs_c_known_encodings[j]; j++, ei++) {
if (!gs_c_known_encodings[ei])
ei = 0;
/* Restrict with PDF encodings, because others give frequent conflicts. */
if (ei > 5) /* Hack : gscedata.c must provide a constant. */
continue;
cgp->num_unused_chars = 0;
cgp->num_all_chars = 0;
for (i = 0; i < pstr->size; i++) {
ch = gs_c_decode(gid[i], ei);
if (ch == GS_NO_CHAR)
break;
if (ch > 255)
break; /* MacGlyphEncoding defines extra glyphs. */
/* pstr->data[i] = (byte)ch; Can't do because pstr->data and gid
are same pointer. Will do in a separate pass below. */
store_glyphs(cgp, NULL, 0, ch, ch, gdata[i]);
}
*ps_encoding_index = ei;
if (i == pstr->size) {
/* Change glyphs to char codes in the text : */
for (i = 0; i < pstr->size; i++)
pstr->data[i] = (byte)gs_c_decode(gid[i], ei);
return 0;
}
}
unknown = true;
goto do_unknown;
}
/* Get/make font resource for the font with a known encoding. */
static int
pdf_obtain_font_resource_encoded(gx_device_pdf *pdev, gs_font *font,
pdf_font_resource_t **ppdfont, pdf_char_glyph_pairs_t *cgp)
{
int code;
pdf_font_resource_t *pdfont_not_allowed = NULL;
if (*ppdfont != 0) {
gs_font_base *cfont = pdf_font_resource_font(*ppdfont, false);
if (font->FontType != ft_user_defined &&
font->FontType != ft_PCL_user_defined &&
font->FontType != ft_GL2_stick_user_defined ) {
code = gs_copied_can_copy_glyphs((gs_font *)cfont, font,
&cgp->s[cgp->unused_offset].glyph, cgp->num_unused_chars,
sizeof(pdf_char_glyph_pair_t), true);
if (code < 0)
return code;
} else
code = 1;
if (code == 0) {
pdfont_not_allowed = *ppdfont;
*ppdfont = 0;
} else if(!pdf_is_compatible_encoding(pdev, *ppdfont, font,
cgp->s, cgp->num_all_chars)) {
pdfont_not_allowed = *ppdfont;
*ppdfont = 0;
}
}
if (*ppdfont == 0) {
gs_font *base_font = font;
gs_font *below;
bool same_encoding = true;
/*
* Find the "lowest" base font that has the same outlines.
* We use its FontName for font resource.
*/
while ((below = base_font->base) != base_font &&
base_font->procs.same_font(base_font, below, FONT_SAME_OUTLINES))
base_font = below;
if (base_font != font)
same_encoding = ((base_font->procs.same_font(base_font, font,
FONT_SAME_ENCODING) & FONT_SAME_ENCODING) != 0);
/* Find or make font resource. */
code = pdf_attached_font_resource(pdev, base_font, ppdfont, NULL, NULL, NULL, NULL);
if (code < 0)
return code;
if (base_font != font) {
if (pdfont_not_allowed == *ppdfont)
*ppdfont = NULL;
}
if(*ppdfont != NULL && !pdf_is_compatible_encoding(pdev, *ppdfont,
base_font, cgp->s, cgp->num_all_chars))
*ppdfont = NULL;
if (*ppdfont == NULL || *ppdfont == pdfont_not_allowed) {
pdf_resource_type_t type =
(pdf_is_CID_font(base_font) ? resourceCIDFont
: resourceFont);
*ppdfont = NULL;
code = pdf_find_font_resource(pdev, base_font, type, ppdfont, cgp, true);
if (code < 0)
return code;
if (*ppdfont == NULL) {
code = pdf_make_font_resource(pdev, base_font, ppdfont, cgp);
if (code < 0)
return code;
}
if (base_font != font && same_encoding) {
code = pdf_attach_font_resource(pdev, base_font, *ppdfont);
if (code < 0)
return code;
}
}
code = pdf_attach_font_resource(pdev, font, *ppdfont);
if (code < 0)
return code;
}
return 0;
}
/* Mark glyphs used in the text with the font resource. */
static int
pdf_mark_text_glyphs(const gs_text_enum_t *penum, const gs_string *pstr,
byte *glyph_usage, int char_cache_size)
{
gs_text_enum_t scan = *penum;
gs_font *font = (gs_font *)penum->current_font;
bool font_is_simple = pdf_is_simple_font(font);
gs_char char_code, cid;
gs_glyph glyph;
if (glyph_usage == NULL)
return 0;
if (pstr != NULL) {
scan.text.data.bytes = pstr->data;
scan.text.size = pstr->size;
scan.index = 0;
/* if TEXT_FROM_CHARS the data was converted to bytes earlier */
if ( scan.text.operation & TEXT_FROM_CHARS )
scan.text.operation =
((scan.text.operation & ~TEXT_FROM_CHARS) | TEXT_FROM_STRING);
}
for (;;) {
int code = pdf_next_char_glyph(&scan, pstr, font, font_is_simple,
&char_code, &cid, &glyph);
if (code == 2) /* end of string */
break;
if (code == 3) /* no glyph */
continue;
if (code < 0)
return code;
if (cid >= char_cache_size)
continue;
glyph_usage[cid / 8] |= 0x80 >> (cid & 7);
}
return 0;
}
/* Mark glyphs used in the glyphshow text with the font resource. */
static int
pdf_mark_text_glyphs_unencoded(const gs_text_enum_t *penum, const gs_string *pstr,
byte *glyph_usage, int char_cache_size)
{
int i;
for(i = 0; i < pstr->size; i++) {
byte ch = pstr->data[i];
if (ch >= char_cache_size)
return_error(gs_error_rangecheck);
glyph_usage[ch / 8] |= 0x80 >> (ch & 7);
}
return 0;
}
/*
* Create or find a font resource object for a text.
*/
int
pdf_obtain_font_resource(pdf_text_enum_t *penum,
const gs_string *pstr, pdf_font_resource_t **ppdfont)
{
gx_device_pdf *pdev = (gx_device_pdf *)penum->dev;
gs_font *font = (gs_font *)penum->current_font;
byte *glyph_usage = 0;
double *real_widths;
int char_cache_size, width_cache_size;
int code;
if (font->FontType == ft_composite) {
/* Must not happen, because we always split composite fonts into descendents. */
return_error(gs_error_unregistered);
}
code = pdf_attached_font_resource(pdev, font, ppdfont,
&glyph_usage, &real_widths, &char_cache_size, &width_cache_size);
/* *ppdfont is NULL if no resource attached. */
if (code < 0)
return code;
if (penum->cgp == NULL) {
code = pdf_alloc_text_glyphs_table(pdev, penum, pstr);
if (code < 0)
return code;
code = pdf_make_text_glyphs_table(penum, pstr,
glyph_usage, char_cache_size);
if (code < 0)
return code;
}
code = pdf_obtain_font_resource_encoded(pdev, font, ppdfont, penum->cgp);
if (code < 0)
return code;
code = pdf_attached_font_resource(pdev, font, ppdfont,
&glyph_usage, &real_widths, &char_cache_size, &width_cache_size);
if (code < 0)
return code;
return pdf_mark_text_glyphs((const gs_text_enum_t *)penum, pstr, glyph_usage, char_cache_size);
}
/*
* Create or find a font resource object for a glyphshow text.
*/
int
pdf_obtain_font_resource_unencoded(pdf_text_enum_t *penum,
const gs_string *pstr, pdf_font_resource_t **ppdfont, const gs_glyph *gdata)
{
gx_device_pdf *pdev = (gx_device_pdf *)penum->dev;
gs_font *font = (gs_font *)penum->current_font;
byte *glyph_usage = 0;
double *real_widths = 0;
int char_cache_size = 0, width_cache_size = 0;
int code, ps_encoding_index = -1;
if (font->FontType == ft_composite) {
/* Must not happen, because we always split composite fonts into descendents. */
return_error(gs_error_unregistered);
}
code = pdf_attached_font_resource(pdev, font, ppdfont,
&glyph_usage, &real_widths, &char_cache_size, &width_cache_size);
if (code < 0)
return code;
/* *ppdfont is NULL if no resource attached. */
if (*ppdfont != NULL)
ps_encoding_index = (*ppdfont)->u.simple.preferred_encoding_index;
if (penum->cgp == NULL) {
code = pdf_alloc_text_glyphs_table(pdev, penum, pstr);
if (code < 0)
return code;
code = pdf_make_text_glyphs_table_unencoded(pdev, penum->cgp, font, pstr, gdata, &ps_encoding_index);
if (code < 0)
return code;
}
code = pdf_obtain_font_resource_encoded(pdev, font, ppdfont, penum->cgp);
if (code < 0)
return code;
code = pdf_attached_font_resource(pdev, font, ppdfont,
&glyph_usage, &real_widths, &char_cache_size, &width_cache_size);
if (code < 0)
return code;
(*ppdfont)->u.simple.preferred_encoding_index = ps_encoding_index;
return pdf_mark_text_glyphs_unencoded((const gs_text_enum_t *)penum,
pstr, glyph_usage, char_cache_size);
}
static inline bool
strings_equal(const gs_const_string *s1, const gs_const_string *s2)
{
return s1->size == s2->size &&
!memcmp(s1->data, s2->data, s1->size);
}
/*
* Create or find a parent Type 0 font resource object for a CID font resource.
*/
int
pdf_obtain_parent_type0_font_resource(gx_device_pdf *pdev, pdf_font_resource_t *pdsubf,
uint font_index, const gs_const_string *CMapName, pdf_font_resource_t **pdfont)
{
if (pdsubf->u.cidfont.parent != 0 &&
font_index == pdsubf->u.cidfont.parent->u.type0.font_index &&
strings_equal(CMapName, &pdsubf->u.cidfont.parent->u.type0.CMapName))
*pdfont = pdsubf->u.cidfont.parent;
else {
/*
* PDF spec 1.4 section 5.6 "Composite Fonts" says :
*
* PDF 1.2 introduces a general architecture for composite fonts that theoretically
* allows a Type 0 font to have multiple descendants,which might themselves be
* Type 0 fonts.However,in versions up to and including PDF 1.4,only a single
* descendant is allowed,which must be a CIDFont (not a font).This restriction
* may be relaxed in a future PDF version.
*/
if (pdsubf->u.cidfont.parent == NULL ||
pdf_find_type0_font_resource(pdev, pdsubf, CMapName, font_index, pdfont) <= 0) {
int code = pdf_font_type0_alloc(pdev, pdfont, gs_no_id, pdsubf, CMapName);
if (code < 0)
return code;
(*pdfont)->u.type0.font_index = font_index;
}
pdsubf->u.cidfont.parent = *pdfont;
}
return 0;
}
gs_char
pdf_find_glyph(pdf_font_resource_t *pdfont, gs_glyph glyph)
{
if (pdfont->FontType != ft_user_defined &&
pdfont->FontType != ft_PCL_user_defined &&
pdfont->FontType != ft_GL2_stick_user_defined)
return GS_NO_CHAR;
else {
pdf_encoding_element_t *pet = pdfont->u.simple.Encoding;
int i, i0 = -1;
if (pdfont->u.simple.FirstChar > pdfont->u.simple.LastChar)
return (gs_char)0;
for (i = pdfont->u.simple.FirstChar; i <= pdfont->u.simple.LastChar; i++, pet++) {
if (pet->glyph == glyph)
return (gs_char)i;
if (i0 == -1 && pet->glyph == GS_NO_GLYPH)
i0 = i;
}
if (i0 != -1)
return (gs_char)i0;
if (i < 256)
return (gs_char)i;
return GS_NO_CHAR;
}
}
/*
* Compute the cached values in the text processing state from the text
* parameters, current_font, and pis->ctm. Return either an error code (<
* 0) or a mask of operation attributes that the caller must emulate.
* Currently the only such attributes are TEXT_ADD_TO_ALL_WIDTHS and
* TEXT_ADD_TO_SPACE_WIDTH. Note that this procedure fills in all the
* values in ppts->values, not just the ones that need to be set now.
*/
static int
transform_delta_inverse(const gs_point *pdelta, const gs_matrix *pmat,
gs_point *ppt)
{
int code = gs_distance_transform_inverse(pdelta->x, pdelta->y, pmat, ppt);
gs_point delta;
if (code < 0)
return code;
if (ppt->y == 0)
return 0;
/* Check for numerical fuzz. */
code = gs_distance_transform(ppt->x, 0.0, pmat, &delta);
if (code < 0)
return 0; /* punt */
if (fabs(delta.x - pdelta->x) < 0.01 && fabs(delta.y - pdelta->y) < 0.01) {
/* Close enough to y == 0: device space error < 0.01 pixel. */
ppt->y = 0;
}
return 0;
}
float pdf_calculate_text_size(gs_imager_state *pis, pdf_font_resource_t *pdfont,
const gs_matrix *pfmat, gs_matrix *smat, gs_matrix *tmat,
gs_font *font, gx_device_pdf *pdev)
{
gs_matrix orig_matrix;
double
sx = pdev->HWResolution[0] / 72.0,
sy = pdev->HWResolution[1] / 72.0;
float size;
/* Get the original matrix of the base font. */
{
gs_font_base *cfont = pdf_font_resource_font(pdfont, false);
if (pdfont->FontType == ft_user_defined ||
pdfont->FontType == ft_PCL_user_defined ||
pdfont->FontType == ft_GL2_stick_user_defined)
orig_matrix = pdfont->u.simple.s.type3.FontMatrix;
else if (cfont != 0) {
/*
* The text matrix to be computed relatively to the
* embedded font matrix.
*/
orig_matrix = cfont->FontMatrix;
} else {
/*
* We don't embed the font.
* The text matrix to be computed relatively to
* standard font matrix.
*/
pdf_font_orig_matrix(font, &orig_matrix);
}
}
/* Compute the scaling matrix and combined matrix. */
gs_matrix_invert(&orig_matrix, smat);
gs_matrix_multiply(smat, pfmat, smat);
*tmat = ctm_only(pis);
tmat->tx = tmat->ty = 0;
gs_matrix_multiply(smat, tmat, tmat);
/* Try to find a reasonable size value. This isn't necessary, */
/* but it's worth a little effort. */
size = hypot(tmat->yx, tmat->yy) / sy;
if (size < 0.01)
size = hypot(tmat->xx, tmat->xy) / sx;
if (size < 0.01)
size = 1;
return(size);
}
int
pdf_update_text_state(pdf_text_process_state_t *ppts,
const pdf_text_enum_t *penum,
pdf_font_resource_t *pdfont, const gs_matrix *pfmat)
{
gx_device_pdf *const pdev = (gx_device_pdf *)penum->dev;
gs_font *font = penum->current_font;
gs_fixed_point cpt;
gs_matrix smat, tmat;
float size;
float c_s = 0, w_s = 0;
int mask = 0;
int code = gx_path_current_point(penum->path, &cpt);
if (code < 0)
return code;
size = pdf_calculate_text_size(penum->pis, pdfont, pfmat, &smat, &tmat, penum->current_font, pdev);
/* Check for spacing parameters we can handle, and transform them. */
if (penum->text.operation & TEXT_ADD_TO_ALL_WIDTHS) {
if (penum->current_font->WMode == 0) {
gs_point pt;
code = transform_delta_inverse(&penum->text.delta_all, &smat, &pt);
if (code >= 0 && pt.y == 0)
c_s = pt.x * size;
else
mask |= TEXT_ADD_TO_ALL_WIDTHS;
}
else
mask |= TEXT_ADD_TO_ALL_WIDTHS;
}
if (penum->text.operation & TEXT_ADD_TO_SPACE_WIDTH) {
gs_point pt;
code = transform_delta_inverse(&penum->text.delta_space, &smat, &pt);
if (code >= 0 && pt.y == 0 && penum->text.space.s_char == 32)
w_s = pt.x * size;
else
mask |= TEXT_ADD_TO_SPACE_WIDTH;
}
/* Store the updated values. */
tmat.xx /= size;
tmat.xy /= size;
tmat.yx /= size;
tmat.yy /= size;
tmat.tx += fixed2float(cpt.x);
tmat.ty += fixed2float(cpt.y);
ppts->values.character_spacing = c_s;
ppts->values.pdfont = pdfont;
ppts->values.size = size;
ppts->values.matrix = tmat;
ppts->values.render_mode = penum->pis->text_rendering_mode;
ppts->values.word_spacing = w_s;
ppts->font = font;
if (font->PaintType == 2 && penum->pis->text_rendering_mode == 0)
{
gs_imager_state *pis = penum->pis;
gs_font *font = penum->current_font;
double scaled_width = font->StrokeWidth != 0 ? font->StrokeWidth : 0.001;
double saved_width = pis->line_params.half_width;
/*
* See stream_to_text in gdevpdfu.c re the computation of
* the scaling value.
*/
double scale = 72.0 / pdev->HWResolution[1];
if (font->FontMatrix.yy != 0)
scaled_width *= fabs(font->orig_FontMatrix.yy) * size * tmat.yy * scale;
else
scaled_width *= fabs(font->orig_FontMatrix.xy) * size * tmat.xy * scale;
ppts->values.render_mode = 1;
/* Sort out any pending glyphs */
code = pdf_set_PaintType0_params(pdev, pis, size, scaled_width, &ppts->values);
if (code < 0)
return code;
pis->line_params.half_width = scaled_width / 2;
code = pdf_set_text_process_state(pdev, (const gs_text_enum_t *)penum,
ppts);
if (code < 0)
return code;
pis->line_params.half_width = saved_width;
} else {
code = pdf_set_text_process_state(pdev, (const gs_text_enum_t *)penum,
ppts);
}
return (code < 0 ? code : mask);
}
/*
* Set up commands to make the output state match the processing state.
* General graphics state commands are written now; text state commands
* are written later.
*/
int
pdf_set_text_process_state(gx_device_pdf *pdev,
const gs_text_enum_t *pte, /* for pdcolor, pis */
pdf_text_process_state_t *ppts)
{
/*
* Setting the stroke parameters may exit text mode, causing the
* settings of the text parameters to be lost. Therefore, we set the
* stroke parameters first.
*/
if (pdf_render_mode_uses_stroke(pdev, &ppts->values)) {
/* Write all the parameters for stroking. */
gs_imager_state *pis = pte->pis;
float save_width = pis->line_params.half_width;
int code;
if (pdev->context == PDF_IN_STRING) {
code = sync_text_state(pdev);
if (code < 0)
return code;
}
code = pdf_open_contents(pdev, PDF_IN_STRING);
if (code < 0)
return code;
code = pdf_prepare_stroke(pdev, pis);
if (code >= 0)
code = gdev_vector_prepare_stroke((gx_device_vector *)pdev,
pis, NULL, NULL, 1);
pis->line_params.half_width = save_width;
if (code < 0)
return code;
}
/* Now set all the other parameters. */
return pdf_set_text_state_values(pdev, &ppts->values);
}
static int
store_glyph_width(pdf_glyph_width_t *pwidth, int wmode, const gs_matrix *scale,
const gs_glyph_info_t *pinfo)
{
double w, v;
gs_distance_transform(pinfo->width[wmode].x, pinfo->width[wmode].y, scale, &pwidth->xy);
if (wmode)
w = pwidth->xy.y, v = pwidth->xy.x;
else
w = pwidth->xy.x, v = pwidth->xy.y;
pwidth->w = w;
if (v != 0)
return 1;
gs_distance_transform(pinfo->v.x, pinfo->v.y, scale, &pwidth->v);
return 0;
}
static int
get_missing_width(gs_font_base *cfont, int wmode, const gs_matrix *scale_c,
pdf_glyph_widths_t *pwidths)
{
gs_font_info_t finfo;
int code;
code = cfont->procs.font_info((gs_font *)cfont, NULL,
FONT_INFO_MISSING_WIDTH, &finfo);
if (code < 0)
return code;
if (wmode) {
gs_distance_transform(0.0, -finfo.MissingWidth, scale_c, &pwidths->real_width.xy);
pwidths->Width.xy.x = 0;
pwidths->Width.xy.y = pwidths->real_width.xy.y;
pwidths->Width.w = pwidths->real_width.w =
pwidths->Width.xy.y;
pwidths->Width.v.x = - pwidths->Width.xy.y / 2;
pwidths->Width.v.y = - pwidths->Width.xy.y;
} else {
gs_distance_transform(finfo.MissingWidth, 0.0, scale_c, &pwidths->real_width.xy);
pwidths->Width.xy.x = pwidths->real_width.xy.x;
pwidths->Width.xy.y = 0;
pwidths->Width.w = pwidths->real_width.w =
pwidths->Width.xy.x;
pwidths->Width.v.x = pwidths->Width.v.y = 0;
}
/*
* Don't mark the width as known, just in case this is an
* incrementally defined font.
*/
return 1;
}
/*
* Get the widths (unmodified from the copied font,
* and possibly modified from the original font) of a given glyph.
* Return 1 if the width was defaulted to MissingWidth.
* Return TEXT_PROCESS_CDEVPROC if a CDevProc callout is needed.
* cdevproc_result != NULL if we restart after a CDevProc callout.
*/
int
pdf_glyph_widths(pdf_font_resource_t *pdfont, int wmode, gs_glyph glyph,
gs_font *orig_font, pdf_glyph_widths_t *pwidths,
const double cdevproc_result[10])
{
gs_font_base *cfont = pdf_font_resource_font(pdfont, false);
gs_font *ofont = orig_font;
gs_glyph_info_t info;
gs_matrix scale_c, scale_o;
int code, rcode = 0;
gs_point v;
int allow_cdevproc_callout = (orig_font->FontType == ft_CID_TrueType
|| orig_font->FontType == ft_CID_encrypted
? GLYPH_INFO_CDEVPROC : 0); /* fixme : allow more font types. */
if (ofont->FontType == ft_composite)
return_error(gs_error_unregistered); /* Must not happen. */
code = glyph_orig_matrix((const gs_font *)cfont, glyph, &scale_c);
if (code < 0)
return code;
code = glyph_orig_matrix(ofont, glyph, &scale_o);
if (code < 0)
return code;
gs_matrix_scale(&scale_c, 1000.0, 1000.0, &scale_c);
gs_matrix_scale(&scale_o, 1000.0, 1000.0, &scale_o);
pwidths->Width.v.x = pwidths->Width.v.y = 0;
pwidths->real_width.v.x = pwidths->real_width.v.y = 0;
pwidths->replaced_v = false;
if (glyph == GS_NO_GLYPH)
return get_missing_width(cfont, wmode, &scale_c, pwidths);
code = cfont->procs.glyph_info((gs_font *)cfont, glyph, NULL,
GLYPH_INFO_WIDTH0 |
(GLYPH_INFO_WIDTH0 << wmode) |
GLYPH_INFO_OUTLINE_WIDTHS |
(GLYPH_INFO_VVECTOR0 << wmode),
&info);
/* For CID fonts the PDF spec requires the x-component of v-vector
to be equal to half glyph width, and AR5 takes it from W, DW.
So make a compatibe data here.
*/
if ((code == gs_error_undefined || !(info.members & (GLYPH_INFO_WIDTH0 << wmode)))) {
/* If we got an undefined error, and its a type 1/CFF font, try to
* find the /.notdef glyph and use its width instead (as this is the
* glyph which will be rendered). We don't do this for other font types
* as it seems Acrobat/Distiller may not do so either.
*/
if (code == gs_error_undefined && (ofont->FontType == ft_encrypted || ofont->FontType == ft_encrypted2)) {
int index;
gs_glyph notdef_glyph;
for (index = 0;
(ofont->procs.enumerate_glyph((gs_font *)ofont, &index,
(GLYPH_SPACE_NAME), ¬def_glyph)) >= 0 &&
index != 0;) {
if (gs_font_glyph_is_notdef((gs_font_base *)ofont, notdef_glyph)) {
code = ofont->procs.glyph_info((gs_font *)ofont, notdef_glyph, NULL,
GLYPH_INFO_WIDTH0 << wmode,
&info);
if (code < 0)
return code;
code = store_glyph_width(&pwidths->Width, wmode, &scale_c, &info);
if (code < 0)
return code;
rcode |= code;
if (info.members & (GLYPH_INFO_VVECTOR0 << wmode))
gs_distance_transform(info.v.x, info.v.y, &scale_c, &v);
else
v.x = v.y = 0;
break;
}
}
} else {
code = get_missing_width(cfont, wmode, &scale_c, pwidths);
if (code < 0)
v.y = 0;
else
v.y = pwidths->Width.v.y;
if (wmode) {
pdf_glyph_widths_t widths1;
if (get_missing_width(cfont, 0, &scale_c, &widths1) < 0)
v.x = 0;
else
v.x = widths1.Width.w / 2;
} else
v.x = pwidths->Width.v.x;
}
} else if (code < 0)
return code;
else {
code = store_glyph_width(&pwidths->Width, wmode, &scale_c, &info);
if (code < 0)
return code;
rcode |= code;
if (info.members & (GLYPH_INFO_VVECTOR0 << wmode))
gs_distance_transform(info.v.x, info.v.y, &scale_c, &v);
else
v.x = v.y = 0;
if (wmode && pdf_is_CID_font(ofont)) {
if (info.members & (GLYPH_INFO_WIDTH0 << wmode)) {
gs_point xy;
gs_distance_transform(info.width[0].x, info.width[0].y, &scale_c, &xy);
v.x = xy.x / 2;
} else {
pdf_glyph_widths_t widths1;
if (get_missing_width(cfont, 0, &scale_c, &widths1) < 0)
v.x = 0;
else
v.x = widths1.Width.w / 2;
}
}
}
pwidths->Width.v = v;
#ifdef DEPRECATED_906
if (code > 0)
pwidths->Width.xy.x = pwidths->Width.xy.y = pwidths->Width.w = 0;
#else /* Skip only if not paralel to the axis. */
if (code > 0 && !pdf_is_CID_font(ofont))
pwidths->Width.xy.x = pwidths->Width.xy.y = pwidths->Width.w = 0;
#endif
if (cdevproc_result == NULL) {
info.members = 0;
code = ofont->procs.glyph_info(ofont, glyph, NULL,
(GLYPH_INFO_WIDTH0 << wmode) |
(GLYPH_INFO_VVECTOR0 << wmode) |
allow_cdevproc_callout,
&info);
/* fixme : Move this call before cfont->procs.glyph_info. */
if (info.members & GLYPH_INFO_CDEVPROC) {
if (allow_cdevproc_callout)
return TEXT_PROCESS_CDEVPROC;
else
return_error(gs_error_rangecheck);
}
} else {
info.width[0].x = cdevproc_result[0];
info.width[0].y = cdevproc_result[1];
info.width[1].x = cdevproc_result[6];
info.width[1].y = cdevproc_result[7];
info.v.x = (wmode ? cdevproc_result[8] : 0);
info.v.y = (wmode ? cdevproc_result[9] : 0);
info.members = (GLYPH_INFO_WIDTH0 << wmode) |
(wmode ? GLYPH_INFO_VVECTOR1 : 0);
code = 0;
}
if (code == gs_error_undefined || !(info.members & (GLYPH_INFO_WIDTH0 << wmode)))
pwidths->real_width = pwidths->Width;
else if (code < 0)
return code;
else {
if ((info.members & (GLYPH_INFO_VVECTOR0 | GLYPH_INFO_VVECTOR1)) != 0)
pwidths->replaced_v = true;
else
info.v.x = info.v.y = 0;
code = store_glyph_width(&pwidths->real_width, wmode, &scale_o, &info);
if (code < 0)
return code;
rcode |= code;
gs_distance_transform(info.v.x, info.v.y, &scale_o, &pwidths->real_width.v);
}
return rcode;
}
static int
pdf_choose_output_char_code(gx_device_pdf *pdev, pdf_text_enum_t *penum, gs_char *pch)
{
gs_char ch;
gs_font *font = penum->current_font;
if (penum->text.operation & TEXT_FROM_SINGLE_GLYPH) {
byte buf[1];
int char_code_length;
gs_glyph glyph = penum->text.data.d_glyph;
int code = pdf_encode_glyph((gs_font_base *)font, glyph,
buf, sizeof(buf), &char_code_length);
if (code < 0) {
/* Must not happen, becuse pdf_encode_glyph was passed in process_plain_text.*/
ch = GS_NO_CHAR;
} else if (char_code_length != 1) {
/* Must not happen with type 3 fonts.*/
ch = GS_NO_CHAR;
} else
ch = buf[0];
} else if (penum->orig_font->FontType == ft_composite) {
gs_font_type0 *font0 = (gs_font_type0 *)penum->orig_font;
gs_glyph glyph = penum->returned.current_glyph;
if (font0->data.FMapType == fmap_CMap) {
pdf_font_resource_t *pdfont;
int code = pdf_attached_font_resource(pdev, font, &pdfont, NULL, NULL, NULL, NULL);
if (code < 0)
return code;
ch = pdf_find_glyph(pdfont, glyph);
} else
ch = penum->returned.current_char;
} else {
ch = penum->returned.current_char;
/* Keep for records : glyph = font->procs.encode_char(font, ch, GLYPH_SPACE_NAME); */
/*
* If glyph == GS_NO_GLYPH, we should replace it with
* a notdef glyph, but we don't know how to do with Type 3 fonts.
*/
}
*pch = ch;
return 0;
}
static int
pdf_choose_output_glyph_hame(gx_device_pdf *pdev, pdf_text_enum_t *penum, gs_const_string *gnstr, gs_glyph glyph)
{
if (penum->orig_font->FontType == ft_composite || penum->orig_font->procs.glyph_name(penum->orig_font, glyph, gnstr) < 0) {
/* couldn't find a glyph name, so make one up! This can happen if we are handling PCL and the glyph
* (character code) is less than 29, the PCL glyph names start with /.notdef at 29. We also need to
* do this for composite fonts.
*/
char buf[6];
byte *p;
gnstr->size = 5;
p = (byte *)gs_alloc_string(pdev->pdf_memory, gnstr->size, "pdf_text_set_cache");
if (p == NULL)
return_error(gs_error_VMerror);
sprintf(buf, "g%04x", (unsigned int)(glyph & 0xFFFF));
memcpy(p, buf, 5);
gnstr->data = p;
}
return 0;
}
/* ---------------- Main entry ---------------- */
/*
* Fall back to the default text processing code when needed.
*/
int
pdf_default_text_begin(gs_text_enum_t *pte, const gs_text_params_t *text,
gs_text_enum_t **ppte)
{
gs_text_params_t text1 = *text;
if(pte->current_font->FontType == 3 && (text1.operation & TEXT_DO_NONE)) {
/* We need a real drawing to accumulate charproc. */
text1.operation &= ~TEXT_DO_NONE;
text1.operation |= TEXT_DO_DRAW;
}
return gx_default_text_begin(pte->dev, pte->pis, &text1, pte->current_font,
pte->path, pte->pdcolor, pte->pcpath,
pte->memory, ppte);
}
static int install_PS_charproc_accumulator(gx_device_pdf *pdev, gs_text_enum_t *pte,
gs_text_enum_t *pte_default, pdf_text_enum_t *const penum)
{
int code;
penum->returned.current_char = pte_default->returned.current_char;
penum->returned.current_glyph = pte_default->returned.current_glyph;
pdev->charproc_ctm = penum->pis->ctm;
if (penum->current_font->FontType == ft_user_defined &&
penum->outer_CID == GS_NO_GLYPH &&
!(penum->pte_default->text.operation & TEXT_DO_CHARWIDTH)) {
/* The condition above must be consistent with one in pdf_text_set_cache,
which decides to apply pdf_set_charproc_attrs. */
gs_matrix m;
pdf_font_resource_t *pdfont;
code = pdf_start_charproc_accum(pdev);
if (code < 0)
return code;
/* We need to give FreeType some room for accuracy when
* retrieving the outline. We will use a scale factor of 100
* (see below). Because this appears to the regular path
* handling code as if it were at the page level, the co-ords
* would be clipped frequently, so we temporarily hack the
* width and height of the device here to ensure it doesn't.
* Note that this requires some careful manipulation of the
* CTM in various places, which want numbers in the font
* co-ordinate space, not the scaled user space.
*/
pdev->width *= 100;
pdev->height *= 100;
pdf_viewer_state_from_imager_state(pdev, pte->pis, pte->pdcolor);
/* Set line params to unallowed values so that
they'll synchronize with writing them out on the first use.
Doing so because PDF viewer inherits them from the
contents stream when executing the charproc,
but at this moment we don't know in what contexts
it will be used. */
pdev->state.line_params.half_width = -1;
pdev->state.line_params.start_cap = gs_cap_unknown;
pdev->state.line_params.end_cap = gs_cap_unknown;
pdev->state.line_params.dash_cap = gs_cap_unknown;
pdev->state.line_params.join = gs_join_unknown;
pdev->state.line_params.miter_limit = -1;
pdev->state.line_params.dash.pattern_size = -1;
/* Must set an identity CTM for the charproc accumulation.
The function show_proceed (called from gs_text_process above)
executed gsave, so we are safe to change CTM now.
Note that BuildChar may change CTM before calling setcachedevice. */
gs_make_identity(&m);
/* See comment above, we actually want to use a scale factor
* of 100 in order to give FreeType some room in the fixed
* precision calculations when retrieing the outline. So in
* fact we don't use the identity CTM, but a 100x100 matrix
* Originally tried 1000, but that was too likely to cause
* clipping or arithmetic overflow.
*/
gs_matrix_scale(&m, 100, 100, &m);
gs_matrix_fixed_from_matrix(&penum->pis->ctm, &m);
/* Choose a character code to use with the charproc. */
code = pdf_choose_output_char_code(pdev, penum, &penum->output_char_code);
if (code < 0)
return code;
code = pdf_attached_font_resource(pdev, penum->current_font, &pdfont, NULL, NULL, NULL, NULL);
if (code < 0)
return code;
pdev->font3 = (pdf_resource_t *)pdfont;
pdev->substream_Resources = pdfont->u.simple.s.type3.Resources;
penum->charproc_accum = true;
return TEXT_PROCESS_RENDER;
}
return 0;
}
static int install_charproc_accumulator(gx_device_pdf *pdev, gs_text_enum_t *pte,
gs_text_enum_t *pte_default, pdf_text_enum_t *const penum)
{
int code;
pdev->charproc_ctm = penum->pis->ctm;
if ((penum->current_font->FontType == ft_user_defined ||
penum->current_font->FontType == ft_PCL_user_defined ||
penum->current_font->FontType == ft_GL2_stick_user_defined) &&
penum->outer_CID == GS_NO_GLYPH &&
!(penum->pte_default->text.operation & TEXT_DO_CHARWIDTH)) {
/* The condition above must be consistent with one in pdf_text_set_cache,
which decides to apply pdf_set_charproc_attrs. */
gs_matrix m;
pdf_font_resource_t *pdfont;
pdev->PS_accumulator = false;
code = pdf_start_charproc_accum(pdev);
if (code < 0)
return code;
pdf_viewer_state_from_imager_state(pdev, pte->pis, pte->pdcolor);
/* Set line params to unallowed values so that
they'll synchronize with writing them out on the first use.
Doing so because PDF viewer inherits them from the
contents stream when executing the charproc,
but at this moment we don't know in what contexts
it will be used. */
pdev->state.line_params.half_width = -1;
pdev->state.line_params.start_cap = gs_cap_unknown;
pdev->state.line_params.end_cap = gs_cap_unknown;
pdev->state.line_params.dash_cap = gs_cap_unknown;
pdev->state.line_params.join = gs_join_unknown;
pdev->state.line_params.miter_limit = -1;
pdev->state.line_params.dash.pattern_size = -1;
/* Must set an identity CTM for the charproc accumulation.
The function show_proceed (called from gs_text_process above)
executed gsave, so we are safe to change CTM now.
Note that BuildChar may change CTM before calling setcachedevice. */
gs_make_identity(&m);
gs_matrix_fixed_from_matrix(&penum->pis->ctm, &m);
/* Choose a character code to use with the charproc. */
code = pdf_choose_output_char_code(pdev, penum, &penum->output_char_code);
if (code < 0)
return code;
code = pdf_attached_font_resource(pdev, penum->current_font, &pdfont, NULL, NULL, NULL, NULL);
if (code < 0)
return code;
pdev->font3 = (pdf_resource_t *)pdfont;
pdev->substream_Resources = pdfont->u.simple.s.type3.Resources;
penum->charproc_accum = true;
return TEXT_PROCESS_RENDER;
}
return 0;
}
static int complete_charproc(gx_device_pdf *pdev, gs_text_enum_t *pte,
gs_text_enum_t *pte_default, pdf_text_enum_t *const penum,
bool was_PS_type3)
{
gs_const_string gnstr;
int code;
code = pdf_choose_output_glyph_hame(pdev, penum, &gnstr, pte_default->returned.current_glyph);
if (code < 0) {
return code;
}
if ((penum->current_font->FontType == ft_user_defined ||
penum->current_font->FontType == ft_PCL_user_defined ||
penum->current_font->FontType == ft_GL2_stick_user_defined) &&
stell(pdev->strm) == 0)
{
char glyph[256], FontName[gs_font_name_max + 1], KeyName[256];
int len;
len = min(gs_font_name_max, gnstr.size);
memcpy(glyph, gnstr.data, len);
glyph[len] = 0x00;
len = min(gs_font_name_max, penum->current_font->font_name.size);
memcpy(FontName, penum->current_font->font_name.chars, len);
FontName[len] = 0x00;
len = min(gs_font_name_max, penum->current_font->key_name.size);
memcpy(KeyName, penum->current_font->key_name.chars, len);
KeyName[len] = 0x00;
emprintf4(pdev->memory,
"ERROR: Page %d used undefined glyph '%s' from type 3 font '%s', key '%s'\n",
pdev->next_page, glyph, FontName, KeyName);
stream_puts(pdev->strm, "0 0 0 0 0 0 d1\n");
}
if (was_PS_type3) {
/* See below, we scaled the device height and width to prevent
* clipping of the CharProc operations, now we need to undo that.
*/
pdev->width /= 100;
pdev->height /= 100;
}
code = pdf_end_charproc_accum(pdev, penum->current_font, penum->cgp,
pte_default->returned.current_glyph, penum->output_char_code, &gnstr);
if (code < 0)
return code;
penum->charproc_accum = false;
code = gx_default_text_restore_state(pte_default);
if (code < 0)
return code;
gs_text_release(pte_default, "pdf_text_process");
penum->pte_default = 0;
return 0;
}
/* Nasty hackery. The PCL 'stick font' is drawn by constructing a path, and then stroking it.
* The stroke width is calculated under the influence of the device default matrix, which
* ensures it is the same, no matter what size the font is drawn at. Of course we are
* capturing the glyph under an identity matrix, so using the device matrix blows it up.
* What we do is replace the get_initial_matrix method for the course of the charproc
* accumulation *only*, and return a more sensible 'device' matrix.
* We know that the Charproc CTM is a combination of the font point size, and the default device
* matrix, so we just take off the default matrix, and invert the font scaling.
* This will scale the linewidth nicely for us. It does mean that if we use the
* same font at a different size, then the width will not be 'correct', but I
* think this is good enough.
*/
static void pdf_type3_get_initial_matrix(gx_device * dev, gs_matrix * pmat)
{
gx_device_pdf *pdev = (gx_device_pdf *)dev;
pmat->xx = pdev->charproc_ctm.xx;
pmat->xy = pdev->charproc_ctm.xy;
pmat->yx = pdev->charproc_ctm.yx;
pmat->yy = pdev->charproc_ctm.yy;
pmat->tx = 0;
pmat->ty = 0;
gs_matrix_invert(pmat, pmat);
gs_matrix_scale(pmat, pdev->HWResolution[0] / 72.0, pdev->HWResolution[0] / 72.0, pmat);
}
/*
* Continue processing text. This is the 'process' procedure in the text
* enumerator. Per the check in pdf_text_begin, we know the operation is
* not a charpath, but it could be anything else.
*/
int
pdf_text_process(gs_text_enum_t *pte)
{
pdf_text_enum_t *const penum = (pdf_text_enum_t *)pte;
uint operation = pte->text.operation;
uint size = pte->text.size - pte->index;
gs_text_enum_t *pte_default;
PROCESS_TEXT_PROC((*process));
int code, early_accumulator = 0;
gx_device_pdf *pdev = (gx_device_pdf *)penum->dev;
#define BUF_SIZE 100 /* arbitrary > 0 */
/* Use a union to ensure alignment. */
union bu_ {
byte bytes[BUF_SIZE];
gs_char chars[BUF_SIZE / sizeof(gs_char)];
gs_glyph glyphs[BUF_SIZE / sizeof(gs_glyph)];
} buf;
if (!penum->pte_default) {
/* Don't need to sync before exiting charproc. */
code = pdf_prepare_text_drawing(pdev, pte);
if (code == gs_error_rangecheck) {
/* Fallback to the default implermentation for handling
a transparency with CompatibilityLevel<=1.3 . */
goto default_impl;
}
if (code < 0)
return code;
}
if (!penum->pte_default) {
pdev->charproc_just_accumulated = false;
if (penum->cdevproc_callout) {
/* Restore after TEXT_PROCESS_CDEVPROC in scan_cmap_text. */
penum->current_font = penum->orig_font;
}
}
if ((penum->current_font->FontType == ft_user_defined ||
penum->current_font->FontType == ft_PCL_user_defined ||
penum->current_font->FontType == ft_GL2_stick_user_defined) &&
(penum->text.operation & TEXT_DO_ANY_CHARPATH)
&& !pdev->type3charpath) {
pdev->type3charpath = true;
if (!penum->charproc_accum)
goto default_impl;
}
code = -1; /* to force default implementation */
/*
* If we fell back to the default implementation, continue using it.
*/
top:
pte_default = penum->pte_default;
/* pte_default is a signal that we can't handle the glyph in the current
* font 'natively'. This means either a type 3 font (for PostScript we
* need to return to the PS interpreter to run the BuildChar), or a font
* type we can't or don't support in PDF. In the latter case we have the
* BuildChar render the glyph and store it in the cache, spot the usage
* in the pdfwrite image routine and we store the resluting bitmap in a
* Type 3 font. NB if the glyph is uncached then it just ends up in the
* output as a bitmap image.
*/
if (pte_default) {
gs_char *cdata;
cdata = (gs_char *)pte->text.data.chars;
if (penum->charproc_accum) {
/* We've been accumulating a Type 3 CharProc, so now we need to
* finish off and store it in the font.
*/
code = complete_charproc(pdev, pte, pte_default, penum, true);
if (code < 0)
return code;
if (!pdev->type3charpath)
goto top;
else
goto default_impl;
}
/* Sepcial checks for PCL bitmap fonts, or the HP/GL-2 stick font */
if (penum->current_font->FontType == ft_PCL_user_defined
&& operation & TEXT_FROM_CHARS && !pdev->type3charpath &&
cdata[pte->index] <= 255) {
/* We can only get to this point with the character already in use
* if we detected in process_text_return_width that the glyph had
* been flushed from teh cache. If this happens with PCL bitmap
* fonts then we assume that the 'slot' has been reused. In this
* case we cannot add the glyph to the current font. By not
* capturing at this level the bitmap will still be added to a
* type 3 font, but a new one. Best we can do as PS/PDF do not
* allow redefinition of fonts.
*/
pdf_font_resource_t *pdfont;
code = pdf_attached_font_resource(pdev, (gs_font *)penum->current_font, &pdfont, NULL, NULL, NULL, NULL);
if (code < 0)
return code;
if (pdfont->u.simple.s.type3.cached[cdata[pte->index] >> 3] & (0x80 >> (cdata[pte->index] & 7)))
early_accumulator = 0;
else
early_accumulator = 1;
}
if (penum->current_font->FontType == ft_GL2_stick_user_defined
&& operation & TEXT_FROM_CHARS && !pdev->type3charpath) {
/* Check for anamorphic sacling, we msut not cache stick font
* in this case, as the stroke width will vary with the scaling.
*/
/* To test the scaling we'll map two unit vectors, calculate the
* length of the transformed vectors and see if they are the same
* x' = ax + cy + Tx
* y' = bx + dy + Ty
* We set Tx and Ty to zero (we only care about scale not translation)
* We then test 0,0->0,1 and 0,0 -> 1,0. Because one term is always 0
* this means we can simplify the math.
*/
/* Vector 0,0 -> 0,1 x is always 0, Tx and Ty are 0 =>
* x' = cy = c
* y' = dy = d
*/
/* Vector 0,0 -> 1,0 y is always 0, Tx and Ty are 0 =>
* x' = ax = a
* y' = bx = b
*/
/* Length of hypotenuse squared = sum of squares We don't care
* about the length's actual magnitude, so we can compare the
* squared length
*/
float x0y1, x1y0;
x0y1 = (penum->pis->ctm.yx * penum->pis->ctm.yx) +
(penum->pis->ctm.yy * penum->pis->ctm.yy);
x1y0 = (penum->pis->ctm.xx * penum->pis->ctm.xx) +
(penum->pis->ctm.xy * penum->pis->ctm.xy);
if (x0y1 == x1y0)
early_accumulator = 1;
}
if (early_accumulator) {
if (cdata[pte->index] <= 255) {
/* The enumerator is created in pdf_default_text_begin and *is*
* a show enumerator, so this is safe. We need to update the
* graphics state pointer below which is why we need this.
*/
gs_show_enum psenum = *(gs_show_enum *)pte_default;
gs_state *pgs = (gs_state *)penum->pis;
gs_text_enum_procs_t const *save_procs = pte_default->procs;
gs_text_enum_procs_t special_procs = *pte_default->procs;
void (*save_proc)(gx_device *, gs_matrix *) = pdev->procs.get_initial_matrix;
extern_st(st_gs_show_enum);
gs_matrix m, savem;
special_procs.set_cache = pdf_text_set_cache;
pte_default->procs = &special_procs;
/* charproc completion will restore a gstate */
gs_gsave(pgs);
/* Assigning the imager state pointer to the graphics state pointer
* makes sure that when we make the CTM into the identity it
* affects both.
*/
psenum.pgs = (gs_state *)psenum.pis;
/* Save the current FontMatrix */
savem = pgs->font->FontMatrix;
/* Make the FontMatrix the identity otherwise we will apply
* it twice, once in the glyph description and again in the
* text matrix.
*/
gs_make_identity(&m);
pgs->font->FontMatrix = m;
pgs->char_tm_valid = 0;
pgs->char_tm.txy_fixed_valid = 0;
pgs->current_point.x = pgs->current_point.y = 0;
pgs->char_tm.txy_fixed_valid = 0;
pte_default->returned.current_char = penum->returned.current_char =
pte->text.data.chars[pte->index];
code = install_charproc_accumulator(pdev, pte, pte_default, penum);
if (code < 0)
return code;
/* We can't capture more than one glyph at a time, so amek this one
* otherwise the gs_text_process would try to render all the glyphs
* in the string.
*/
if (pte->text.size != 1)
pte_default->text.size = pte->index + 1;
/* We need a special 'initial matrix' method for stick fonts,
* See pdf_type3_get_initial_matrix above.
*/
pdev->procs.get_initial_matrix = pdf_type3_get_initial_matrix;
pdev->pte = pte_default; /* CAUTION: See comment in gdevpdfx.h . */
code = gs_text_process(pte_default);
if (code < 0)
return code;
pdev->pte = NULL; /* CAUTION: See comment in gdevpdfx.h . */
pdev->charproc_just_accumulated = false;
/* Restore the saved FontMatrix, so that it gets applied
* as part of the text matrix
*/
pgs->font->FontMatrix = savem;
/* Restore the default 'initial matrix' mathod. */
pdev->procs.get_initial_matrix = save_proc;
penum->returned.current_char = pte_default->returned.current_char;
penum->returned.current_glyph = pte_default->returned.current_glyph;
code = pdf_choose_output_char_code(pdev, penum, &penum->output_char_code);
if (code < 0)
return code;
code = complete_charproc(pdev, pte, pte_default, penum, false);
if (penum->current_font->FontType == ft_PCL_user_defined)
{
/* PCL bitmap fonts can have glyphs 'reused'. We can't handle
* handle this in a single PDF font, so we need to know when
* it has happened and fall back to the 'default' implementation.
* In order to do this, we create a cached character representation
* and add it to the cache. If the glyph is reused then the
* act of redefining it will remove this entry from the cache.
* We check if the glyph is in the cache in process_text_return_width
* and come back into this code. In the test above for PCL bitmap
* fonts we also check to see if the PDF font already has a
*'used' entry. If it does we know that its a redefinition, and
* we don't try to capture the glyph.
*/
cached_char *cc;
cached_fm_pair *pair;
gs_log2_scale_point log2_scale = {0,0};
gs_font *rfont = (pte->fstack.depth < 0 ? pte->current_font : pte->fstack.items[0].font);
int wmode = rfont->WMode;
/* This code copied from show_cache_setup */
gs_memory_t *mem = penum->memory;
gx_device_memory *dev =
gs_alloc_struct(mem, gx_device_memory, &st_device_memory,
"show_cache_setup(dev_cache)");
if (dev == 0) {
gs_free_object(mem, dev, "show_cache_setup(dev_cache)");
return_error(gs_error_VMerror);
}
gs_make_mem_mono_device(dev, mem, penum->dev);
dev->HWResolution[0] = pgs->device->HWResolution[0];
dev->HWResolution[1] = pgs->device->HWResolution[1];
/* Retain these devices. */
gx_device_retain((gx_device *)dev, true);
/* end of code copied from show_cache_setup */
/* This copied from set_cache */
code = gx_alloc_char_bits(pte->current_font->dir, dev, NULL,
0, 0, &log2_scale, 1, &cc);
if (code < 0)
return code;
/* The following code is copied from show_update, case sws_cache */
code = gx_lookup_fm_pair(pte->current_font, &ctm_only(pte->pis),
&log2_scale, false, &pair);
if (code < 0)
return code;
/* These members of the cached character are required
* in order to find the cache entry later
*/
cc->code = penum->returned.current_char;
cc->wmode = wmode;
cc->subpix_origin.x = cc->subpix_origin.y = 0;
log2_scale.x = log2_scale.y = 0;
code = gx_add_cached_char(pte->current_font->dir, dev,
cc, pair, &log2_scale);
if (code < 0)
return code;
/* End of code from show_update */
/* Finally, dispose of the device, which we don't actually need */
gx_device_retain((gx_device *)dev, false);
}
pte_default->procs = save_procs;
size = pte->text.size - pte->index;
if (code < 0)
return code;
if (!pdev->type3charpath)
goto top;
else
goto default_impl;
}
}
/* Now we run the default text procedure to see what happens.
* PCL bitmap fonts and the HP/GL-2 stick font are handled above.
* If its a PostScript type 3 font (and some other kinds)
* then it will return TEXT_PROCESS_RENDER and we need to exit
* to the interpreter to run the glyph description. Otherwise we just
* run the BuildChar, and later capture the cached bitmap for incorporation
* into a type 3 font. Note that sometimes we will handle PCL or HP/GL-2
* fonts by not capturing them above, and they will come through here.
* The stick font will not be captured as a font at all, just vectors
* stored into the content stream (for osme kinds of scale/shear),
* bitmap fonts will be captured in the pdfwrite image routine. These
* are added to a type 3 font in the same way as glyphs which need to
* be rendered.
*/
pdev->pte = pte_default; /* CAUTION: See comment in gdevpdfx.h . */
code = gs_text_process(pte_default);
pdev->pte = NULL; /* CAUTION: See comment in gdevpdfx.h . */
pdev->charproc_just_accumulated = false;
/* If the BuildChar returned TEXT_PROCESS_RENDER then we want to try and
* capture this as a type 3 font, so start the accumulator now. Note
* that the setcachedevice handling can still abort this later. In which
* case we get the rendered bitmap, just as for non type 3 fonts.
*/
if (code == TEXT_PROCESS_RENDER && !pdev->type3charpath) {
int code1;
code1 = install_PS_charproc_accumulator(pdev, pte, pte_default, penum);
if (code1 != 0)
return code1;
}
gs_text_enum_copy_dynamic(pte, pte_default, true);
if (code)
return code;
gs_text_release(pte_default, "pdf_text_process");
penum->pte_default = 0;
if (pdev->type3charpath)
pdev->type3charpath = false;
return 0;
}
{
gs_font *font = pte->orig_font; /* Not sure. Changed for CDevProc callout. Was pte->current_font */
switch (font->FontType) {
case ft_CID_encrypted:
case ft_CID_TrueType:
process = process_cid_text;
break;
case ft_encrypted:
case ft_encrypted2:
case ft_TrueType:
case ft_user_defined:
case ft_PCL_user_defined:
case ft_GL2_stick_user_defined:
/* The data may be either glyphs or characters. */
process = process_plain_text;
break;
case ft_composite:
process =
(((gs_font_type0 *)font)->data.FMapType == fmap_CMap ?
process_cmap_text :
process_composite_text);
break;
default:
goto skip;
}
}
/*
* We want to process the entire string in a single call, but we may
* need to modify it. Copy it to a buffer. Note that it may consist
* of bytes, gs_chars, or gs_glyphs.
*/
if (operation & (TEXT_FROM_STRING | TEXT_FROM_BYTES)) {
if (size < sizeof(gs_glyph))
size = sizeof(gs_glyph); /* for process_cid_text */
} else if (operation & TEXT_FROM_CHARS)
size *= sizeof(gs_char);
else if (operation & TEXT_FROM_SINGLE_CHAR)
size = sizeof(gs_char);
else if (operation & TEXT_FROM_GLYPHS)
size *= sizeof(gs_glyph);
else if (operation & TEXT_FROM_SINGLE_GLYPH)
size = sizeof(gs_glyph);
else
goto skip;
/* Now that we are using the working buffer for text in composite fonts, we must make sure
* it is large enough. Each input character code may be promoted to a gs_glyph, in scan_cmap_text
* when processing a Type 0 font with a type 1 descendant font. This routine uses
* pdf_make_text_glyphs_table_unencoded (called from pdf_obtain_font_resource_unencoded) which
* also may require an identically sized buffer, so we need:
* num__input_characters * sizeof(gs_glyph) * 2.
*/
if (pte->orig_font->FontType == ft_composite) {
if (size < (pte->text.size - pte->index) * sizeof(gs_glyph) * 2)
size = (pte->text.size - pte->index) * sizeof(gs_glyph) * 2;
}
if (size <= sizeof(buf)) {
code = process(pte, buf.bytes, size);
} else {
byte *buf = gs_alloc_string(pte->memory, size, "pdf_text_process");
if (buf == 0)
return_error(gs_error_VMerror);
code = process(pte, buf, size);
gs_free_string(pte->memory, buf, size, "pdf_text_process");
}
skip:
if (code < 0 ||
((pte->current_font->FontType == ft_user_defined ||
pte->current_font->FontType == ft_PCL_user_defined ||
pte->current_font->FontType == ft_GL2_stick_user_defined ||
pte->current_font->FontType == ft_TrueType) &&
code != TEXT_PROCESS_INTERVENE &&
penum->index < penum->text.size)) {
if (code == gs_error_unregistered) /* Debug purpose only. */
return code;
if (code == gs_error_VMerror)
return code;
if (code == gs_error_invalidfont) /* Bug 688370. */
return code;
default_impl:
/* Fall back to the default implementation. */
code = pdf_default_text_begin(pte, &pte->text, &pte_default);
if (code < 0)
return code;
penum->pte_default = pte_default;
gs_text_enum_copy_dynamic(pte_default, pte, false);
}
/* The 'process' procedure might also have set pte_default itself. */
if (penum->pte_default && !code)
goto top;
return code;
/*
* This function uses an unobvious algorithm while handling type 3 fonts.
* It runs 'process' to copy text until a glyph, which was not copied to
* output font. Then it installs pte_default and falls back to default
* implementation with PS interpreter callout. The callout executes
* BuildChar/BuildGlyph with setcachedevice. The latter calls
* pdf_set_charproc_attrs, which sets up an accumulator
* of graphic objects to a pdf_begin_resource stream.
* When the callout completes, pdf_text_process calls pdf_end_charproc_accum
* and later resumes the normal (non-default) text enumeration, repeating the
* the "callouted" glyph AT SECOND TIME. We can't do without the second pass
* becauase in the first pass the glyph widths is unknown.
*/
/*
* Another unobvious thing is a CDevProc callout.
* If 'process' returns with TEXT_PROCESS_CDEVPROC,
* an interpreter callout will happen, and the function will be called again
* with pte->cdevproc_result_valid = true. Then it restatrs with taking
* glyph metrics from pte->cdevproc_result instead obtaining them with
* font->procs.glyph_info .
*/
}
|