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 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295
|
/* Copyright (C) 2001-2006 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 that
license. 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.
*/
/* $Id: gdevp14.c 10644 2010-01-26 01:15:46Z mvrhel $ */
/* Compositing devices for implementing PDF 1.4 imaging model */
#include "math_.h"
#include "memory_.h"
#include "gx.h"
#include "gserrors.h"
#include "gscdefs.h"
#include "gxdevice.h"
#include "gsdevice.h"
#include "gsstruct.h"
#include "gxistate.h"
#include "gxdcolor.h"
#include "gxiparam.h"
#include "gstparam.h"
#include "gxblend.h"
#include "gxtext.h"
#include "gsdfilt.h"
#include "gsimage.h"
#include "gsrect.h"
#include "gscoord.h"
#include "gzstate.h"
#include "gdevdevn.h"
#include "gdevp14.h"
#include "gsovrc.h"
#include "gxcmap.h"
#include "gscolor1.h"
#include "gstrans.h"
#include "gsutil.h"
#include "gxcldev.h"
#include "gxclpath.h"
#include "gxdcconv.h"
#include "vdtrace.h"
#include "gscolorbuffer.h"
#include "gsptype2.h"
#include "gxpcolor.h"
#include "gsptype1.h"
#include "gzcpath.h"
#include "gxpaint.h"
/* Visual trace options : set one to 1. */
#define VD_PAINT_MASK 0
#define VD_PAINT_COLORS 0
#define VD_PAINT_ALPHA 1
#if RAW_DUMP
unsigned int global_index = 0;
unsigned int clist_band_count = 0;
#endif
/*
* We chose the blending color space based upon the process color model of the
* output device. For gray, RGB, CMYK, or CMYK+spot devices, the choice is
* usually simple. For other devices or if the user is doing custom color
* processing then the user may want to control this choice.
*/
#define AUTO_USE_CUSTOM_BLENDING 0
#define ALWAYS_USE_CUSTOM_BLENDING 1
#define DO_NOT_USE_CUSTOM_BLENDING 2
#define CUSTOM_BLENDING_MODE AUTO_USE_CUSTOM_BLENDING
# define INCR(v) DO_NOTHING
/* Forward prototypes */
void pdf14_cmyk_cs_to_cmyk_cm(gx_device *, frac, frac, frac, frac, frac *);
int gs_pdf14_device_push(gs_memory_t *, gs_imager_state *, gx_device **,
gx_device *, const gs_pdf14trans_t *);
static int pdf14_tile_pattern_fill(gx_device * pdev,
const gs_imager_state * pis, gx_path * ppath,
const gx_fill_params * params,
const gx_device_color * pdevc, const gx_clip_path * pcpath);
static pdf14_mask_t * pdf14_mask_element_new(gs_memory_t * memory);
/* Buffer stack data structure */
gs_private_st_ptrs4(st_pdf14_buf, pdf14_buf, "pdf14_buf",
pdf14_buf_enum_ptrs, pdf14_buf_reloc_ptrs,
saved, data, transfer_fn, maskbuf);
gs_private_st_ptrs2(st_pdf14_ctx, pdf14_ctx, "pdf14_ctx",
pdf14_ctx_enum_ptrs, pdf14_ctx_reloc_ptrs,
stack, maskbuf);
gs_private_st_ptrs1(st_pdf14_clr, pdf14_parent_color_t, "pdf14_clr",
pdf14_clr_enum_ptrs, pdf14_clr_reloc_ptrs,
previous);
gs_private_st_ptrs2(st_pdf14_mask, pdf14_mask_t, "pdf_mask",
pdf14_mask_enum_ptrs, pdf14_mask_reloc_ptrs,
rc_mask, previous);
gs_private_st_ptrs1(st_pdf14_rcmask, pdf14_rcmask_t, "pdf_rcmask",
pdf14_rcmask_enum_ptrs, pdf14_rcmask_reloc_ptrs,
mask_buf);
/* ------ The device descriptors ------ */
/*
* Default X and Y resolution.
*/
#define X_DPI 72
#define Y_DPI 72
static int pdf14_open(gx_device * pdev);
static dev_proc_close_device(pdf14_close);
static int pdf14_output_page(gx_device * pdev, int num_copies, int flush);
static dev_proc_put_params(pdf14_put_params);
static dev_proc_get_color_comp_index(pdf14_cmykspot_get_color_comp_index);
static dev_proc_get_color_mapping_procs(pdf14_cmykspot_get_color_mapping_procs);
dev_proc_encode_color(pdf14_encode_color);
dev_proc_encode_color(pdf14_compressed_encode_color);
dev_proc_decode_color(pdf14_decode_color);
dev_proc_decode_color(pdf14_compressed_decode_color);
static dev_proc_fill_rectangle(pdf14_fill_rectangle);
static dev_proc_fill_rectangle(pdf14_mark_fill_rectangle);
static dev_proc_fill_rectangle(pdf14_mark_fill_rectangle_ko_simple);
static dev_proc_fill_path(pdf14_fill_path);
static dev_proc_copy_mono(pdf14_copy_mono);
static dev_proc_stroke_path(pdf14_stroke_path);
static dev_proc_begin_typed_image(pdf14_begin_typed_image);
static dev_proc_text_begin(pdf14_text_begin);
static dev_proc_create_compositor(pdf14_create_compositor);
static dev_proc_create_compositor(pdf14_forward_create_compositor);
static dev_proc_begin_transparency_group(pdf14_begin_transparency_group);
static dev_proc_end_transparency_group(pdf14_end_transparency_group);
static dev_proc_begin_transparency_mask(pdf14_begin_transparency_mask);
static dev_proc_end_transparency_mask(pdf14_end_transparency_mask);
static dev_proc_pattern_manage(pdf14_pattern_manage);
static int pdf14_clist_get_param_compressed_color_list(pdf14_device * p14dev);
static dev_proc_push_transparency_state(pdf14_push_transparency_state);
static dev_proc_pop_transparency_state(pdf14_pop_transparency_state);
static const gx_color_map_procs *
pdf14_get_cmap_procs(const gs_imager_state *, const gx_device *);
static const gx_color_map_procs *
pdf14_get_cmap_procs_group(const gs_imager_state *, const gx_device *);
#define XSIZE (int)(8.5 * X_DPI) /* 8.5 x 11 inch page, by default */
#define YSIZE (int)(11 * Y_DPI)
/* 24-bit color. */
#define pdf14_dev_procs(get_color_mapping_procs, get_color_comp_index, encode_color, decode_color) \
{\
pdf14_open, /* open */\
NULL, /* get_initial_matrix */\
NULL, /* sync_output */\
pdf14_output_page, /* output_page */\
pdf14_close, /* close */\
encode_color, /* rgb_map_rgb_color */\
decode_color, /* gx_default_rgb_map_color_rgb */\
pdf14_fill_rectangle, /* fill_rectangle */\
NULL, /* tile_rectangle */\
pdf14_copy_mono, /* copy_mono */\
NULL, /* copy_color */\
NULL, /* draw_line */\
NULL, /* get_bits */\
NULL, /* get_params */\
pdf14_put_params, /* put_params */\
NULL, /* map_cmyk_color */\
NULL, /* get_xfont_procs */\
NULL, /* get_xfont_device */\
NULL, /* map_rgb_alpha_color */\
NULL, /* get_page_device */\
NULL, /* get_alpha_bits */\
NULL, /* copy_alpha */\
NULL, /* get_band */\
NULL, /* copy_rop */\
pdf14_fill_path, /* fill_path */\
pdf14_stroke_path, /* stroke_path */\
NULL, /* fill_mask */\
NULL, /* fill_trapezoid */\
NULL, /* fill_parallelogram */\
NULL, /* fill_triangle */\
NULL, /* draw_thin_line */\
NULL, /* begin_image */\
NULL, /* image_data */\
NULL, /* end_image */\
NULL, /* strip_tile_rectangle */\
NULL, /* strip_copy_rop, */\
NULL, /* get_clipping_box */\
pdf14_begin_typed_image, /* begin_typed_image */\
NULL, /* get_bits_rectangle */\
NULL, /* map_color_rgb_alpha */\
pdf14_create_compositor, /* create_compositor */\
NULL, /* get_hardware_params */\
pdf14_text_begin, /* text_begin */\
NULL, /* finish_copydevice */\
pdf14_begin_transparency_group,\
pdf14_end_transparency_group,\
pdf14_begin_transparency_mask,\
pdf14_end_transparency_mask,\
NULL, /* discard_transparency_layer */\
get_color_mapping_procs, /* get_color_mapping_procs */\
get_color_comp_index, /* get_color_comp_index */\
encode_color, /* encode_color */\
decode_color, /* decode_color */\
pdf14_pattern_manage, /* pattern_manage */\
NULL, /* fill_rectangle_hl_color */\
NULL, /* include_color_space */\
NULL, /* fill_linear_color_scanline */\
NULL, /* fill_linear_color_trapezoid */\
NULL, /* fill_linear_color_triangle */\
gx_forward_update_spot_equivalent_colors, /* update spot */\
NULL, /* DevN params */\
NULL, /* fill page */\
pdf14_push_transparency_state,\
pdf14_pop_transparency_state\
}
static const gx_device_procs pdf14_Gray_procs =
pdf14_dev_procs(gx_default_DevGray_get_color_mapping_procs,
gx_default_DevGray_get_color_comp_index,
pdf14_encode_color, pdf14_decode_color);
static const gx_device_procs pdf14_RGB_procs =
pdf14_dev_procs(gx_default_DevRGB_get_color_mapping_procs,
gx_default_DevRGB_get_color_comp_index,
pdf14_encode_color, pdf14_decode_color);
static const gx_device_procs pdf14_CMYK_procs =
pdf14_dev_procs(gx_default_DevCMYK_get_color_mapping_procs,
gx_default_DevCMYK_get_color_comp_index,
pdf14_encode_color, pdf14_decode_color);
#if USE_COMPRESSED_ENCODING
static const gx_device_procs pdf14_CMYKspot_procs =
pdf14_dev_procs(pdf14_cmykspot_get_color_mapping_procs,
pdf14_cmykspot_get_color_comp_index,
pdf14_compressed_encode_color, pdf14_compressed_decode_color);
#else
static const gx_device_procs pdf14_CMYKspot_procs =
pdf14_dev_procs(pdf14_cmykspot_get_color_mapping_procs,
pdf14_cmykspot_get_color_comp_index,
pdf14_encode_color, pdf14_decode_color);
#endif
static const gx_device_procs pdf14_custom_procs =
pdf14_dev_procs(gx_forward_get_color_mapping_procs,
gx_forward_get_color_comp_index,
gx_forward_encode_color,
gx_forward_decode_color);
gs_private_st_composite_use_final(st_pdf14_device, pdf14_device, "pdf14_device",
pdf14_device_enum_ptrs, pdf14_device_reloc_ptrs,
gx_device_finalize);
static int pdf14_put_image(gx_device * dev, gs_imager_state * pis,
gx_device * target);
static int pdf14_cmykspot_put_image(gx_device * dev, gs_imager_state * pis,
gx_device * target);
static int pdf14_custom_put_image(gx_device * dev, gs_imager_state * pis,
gx_device * target);
/* Used to alter device color mapping procs based upon group or softmask color space */
static int pdf14_update_device_color_procs(gx_device *dev,
gs_transparency_color_t group_color,
gs_imager_state *pis);
/* Used to alter device color mapping procs based upon group or softmask color space */
/* Uses color procs stack so that it can be used with clist writer */
static int
pdf14_update_device_color_procs_push_c(gx_device *dev,
gs_transparency_color_t group_color,
gs_imager_state *pis);
static int
pdf14_update_device_color_procs_pop_c(gx_device *dev,
gs_imager_state *pis);
static void pdf14_push_parent_color(gx_device *dev, const gs_imager_state *pis);
static void pdf14_pop_parent_color(gx_device *dev, const gs_imager_state *pis);
static const pdf14_procs_t gray_pdf14_procs = {
pdf14_unpack_additive,
pdf14_put_image
};
static const pdf14_procs_t rgb_pdf14_procs = {
pdf14_unpack_additive,
pdf14_put_image
};
static const pdf14_procs_t cmyk_pdf14_procs = {
pdf14_unpack_subtractive,
pdf14_put_image
};
static const pdf14_procs_t cmykspot_pdf14_procs = {
pdf14_unpack_compressed,
pdf14_cmykspot_put_image
};
static const pdf14_procs_t custom_pdf14_procs = {
pdf14_unpack_custom,
pdf14_custom_put_image
};
static const pdf14_nonseparable_blending_procs_t gray_blending_procs = {
art_blend_luminosity_custom_8,
art_blend_saturation_custom_8
};
static const pdf14_nonseparable_blending_procs_t rgb_blending_procs = {
art_blend_luminosity_rgb_8,
art_blend_saturation_rgb_8
};
static const pdf14_nonseparable_blending_procs_t cmyk_blending_procs = {
art_blend_luminosity_cmyk_8,
art_blend_saturation_cmyk_8
};
static const pdf14_nonseparable_blending_procs_t custom_blending_procs = {
art_blend_luminosity_custom_8,
art_blend_saturation_custom_8
};
const pdf14_device gs_pdf14_Gray_device = {
std_device_std_color_full_body_type(pdf14_device, &pdf14_Gray_procs, "pdf14gray",
&st_pdf14_device,
XSIZE, YSIZE, X_DPI, Y_DPI, 8,
0, 0, 0, 0, 0, 0),
{ 0 }, /* Procs */
NULL, /* target */
{ 0 }, /* devn_params - not used */
&gray_pdf14_procs,
&gray_blending_procs
};
const pdf14_device gs_pdf14_RGB_device = {
std_device_color_stype_body(pdf14_device, &pdf14_RGB_procs, "pdf14RGB",
&st_pdf14_device,
XSIZE, YSIZE, X_DPI, Y_DPI, 24, 255, 256),
{ 0 }, /* Procs */
NULL, /* target */
{ 0 }, /* devn_params - not used */
&rgb_pdf14_procs,
&rgb_blending_procs
};
const pdf14_device gs_pdf14_CMYK_device = {
std_device_std_color_full_body_type(pdf14_device, &pdf14_CMYK_procs,
"pdf14cmyk", &st_pdf14_device, XSIZE, YSIZE, X_DPI, Y_DPI, 32,
0, 0, 0, 0, 0, 0),
{ 0 }, /* Procs */
NULL, /* target */
{ 0 }, /* devn_params - not used */
&cmyk_pdf14_procs,
&cmyk_blending_procs
};
const pdf14_device gs_pdf14_CMYKspot_device = {
std_device_part1_(pdf14_device, &pdf14_CMYKspot_procs, "pdf14cmykspot", &st_pdf14_device, open_init_closed),
dci_values(GX_DEVICE_COLOR_MAX_COMPONENTS,64,255,255,256,256),
std_device_part2_(XSIZE, YSIZE, X_DPI, Y_DPI),
offset_margin_values(0, 0, 0, 0, 0, 0),
std_device_part3_(),
{ 0 }, /* Procs */
NULL, /* target */
/* DeviceN parameters */
{ 8, /* Not used - Bits per color */
DeviceCMYKComponents, /* Names of color model colorants */
4, /* Number colorants for CMYK */
0, /* MaxSeparations has not been specified */
-1, /* PageSpotColors has not been specified */
{0}, /* SeparationNames */
0, /* SeparationOrder names */
{0, 1, 2, 3, 4, 5, 6, 7 } /* Initial component SeparationOrder */
},
&cmykspot_pdf14_procs,
&cmyk_blending_procs
};
/*
* The 'custom' PDF 1.4 compositor device is for working with those devices
* which support spot colors but do not have a CMYK process color model.
*
* This causes some problems with the Hue, Saturation, Color, and Luminosity
* blending modes. These blending modes are 'non separable' and depend upon
* knowing the details of the blending color space. However we use the
* process color model of the output device for our blending color space.
* With an unknown process color model, we have to fall back to some 'guesses'
* about how to treat these blending modes.
*/
const pdf14_device gs_pdf14_custom_device = {
std_device_part1_(pdf14_device, &pdf14_custom_procs, "pdf14custom", &st_pdf14_device, open_init_closed),
dci_values(GX_DEVICE_COLOR_MAX_COMPONENTS,64,255,255,256,256),
std_device_part2_(XSIZE, YSIZE, X_DPI, Y_DPI),
offset_margin_values(0, 0, 0, 0, 0, 0),
std_device_part3_(),
{ 0 }, /* Procs */
NULL, /* target */
/* DeviceN parameters */
{ 8, /* Not used - Bits per color */
DeviceCMYKComponents, /* Names of color model colorants */
4, /* Number colorants for CMYK */
0, /* MaxSeparations has not been specified */
-1, /* PageSpotColors has not been specified */
{0}, /* SeparationNames */
0, /* SeparationOrder names */
{0, 1, 2, 3, 4, 5, 6, 7 } /* Initial component SeparationOrder */
},
&custom_pdf14_procs,
&custom_blending_procs
};
/* GC procedures */
static
ENUM_PTRS_WITH(pdf14_device_enum_ptrs, pdf14_device *pdev)
{
index -= 4;
if (index < pdev->devn_params.separations.num_separations)
ENUM_RETURN(pdev->devn_params.separations.names[index].data);
index -= pdev->devn_params.separations.num_separations;
if (index < pdev->devn_params.pdf14_separations.num_separations)
ENUM_RETURN(pdev->devn_params.pdf14_separations.names[index].data);
return 0;
}
case 0: return ENUM_OBJ(pdev->ctx);
case 1: return ENUM_OBJ(pdev->trans_group_parent_cmap_procs);
case 2: ENUM_RETURN(gx_device_enum_ptr(pdev->target));
case 3: ENUM_RETURN(pdev->devn_params.compressed_color_list);
ENUM_PTRS_END
static RELOC_PTRS_WITH(pdf14_device_reloc_ptrs, pdf14_device *pdev)
{
{
int i;
for (i = 0; i < pdev->devn_params.separations.num_separations; ++i) {
RELOC_PTR(pdf14_device, devn_params.separations.names[i].data);
}
}
RELOC_PTR(pdf14_device, devn_params.compressed_color_list);
RELOC_VAR(pdev->ctx);
RELOC_VAR(pdev->trans_group_parent_cmap_procs);
pdev->target = gx_device_reloc_ptr(pdev->target, gcst);
}
RELOC_PTRS_END
/* ------ Private definitions ------ */
/**
* pdf14_buf_new: Allocate a new PDF 1.4 buffer.
* @n_chan: Number of pixel channels including alpha.
*
* Return value: Newly allocated buffer, or NULL on failure.
**/
static pdf14_buf *
pdf14_buf_new(gs_int_rect *rect, bool has_alpha_g, bool has_shape, bool idle,
int n_chan,
gs_memory_t *memory)
{
/* Note that alpha_g is the alpha for the GROUP */
/* This is distinct from the alpha that may also exist */
/* for the objects within the group. Hence it can introduce */
/* yet another plane */
pdf14_buf *result;
int rowstride = (rect->q.x - rect->p.x + 3) & -4;
int height = (rect->q.y - rect->p.y);
int n_planes = n_chan + (has_shape ? 1 : 0) + (has_alpha_g ? 1 : 0);
int planestride;
double dsize = (((double) rowstride) * height) * n_planes;
if (dsize > (double)max_uint)
return NULL;
result = gs_alloc_struct(memory, pdf14_buf, &st_pdf14_buf,
"pdf14_buf_new");
if (result == NULL)
return result;
result->saved = NULL;
result->isolated = false;
result->knockout = false;
result->has_alpha_g = has_alpha_g;
result->has_shape = has_shape;
result->rect = *rect;
result->n_chan = n_chan;
result->n_planes = n_planes;
result->rowstride = rowstride;
result->transfer_fn = NULL;
result->maskbuf = NULL;
result->idle = idle;
result->mask_id = 0;
result->parent_color_info_procs.get_cmap_procs = NULL;
result->parent_color_info_procs.parent_color_mapping_procs = NULL;
result->parent_color_info_procs.parent_color_comp_index = NULL;
if (height <= 0 || idle) {
/* Empty clipping - will skip all drawings. */
result->planestride = 0;
result->data = 0;
} else {
planestride = rowstride * height;
result->planestride = planestride;
result->data = gs_alloc_bytes(memory, planestride * n_planes,
"pdf14_buf_new");
if (result->data == NULL) {
gs_free_object(memory, result, "pdf_buf_new");
return NULL;
}
if (has_alpha_g) {
int alpha_g_plane = n_chan + (has_shape ? 1 : 0);
memset (result->data + alpha_g_plane * planestride, 0, planestride);
}
}
/* Initialize bbox with the reversed rectangle for further accumulation : */
result->bbox.p.x = rect->q.x;
result->bbox.p.y = rect->q.y;
result->bbox.q.x = rect->p.x;
result->bbox.q.y = rect->p.y;
return result;
}
static void
pdf14_buf_free(pdf14_buf *buf, gs_memory_t *memory)
{
gs_free_object(memory, buf->maskbuf, "pdf14_buf_free");
gs_free_object(memory, buf->transfer_fn, "pdf14_buf_free");
gs_free_object(memory, buf->data, "pdf14_buf_free");
gs_free_object(memory, buf, "pdf14_buf_free");
}
static void
rc_pdf14_maskbuf_free(gs_memory_t * mem, void *ptr_in, client_name_t cname)
{
/* Ending the mask buffer. */
pdf14_rcmask_t *rcmask = (pdf14_rcmask_t * ) ptr_in;
/* free the pdf14 buffer. */
if ( rcmask->mask_buf != NULL ){
pdf14_buf_free(rcmask->mask_buf, mem);
}
gs_free_object(mem, rcmask, "rc_pdf14_maskbuf_free");
}
static pdf14_rcmask_t *
pdf14_rcmask_new(gs_memory_t *memory)
{
pdf14_rcmask_t *result;
result = gs_alloc_struct(memory, pdf14_rcmask_t, &st_pdf14_rcmask,
"pdf14_maskbuf_new");
if ( result == NULL )
return(NULL);
rc_init_free(result, memory, 1, rc_pdf14_maskbuf_free);
result->mask_buf = NULL;
result->memory = memory;
return(result);
}
static pdf14_ctx *
pdf14_ctx_new(gs_int_rect *rect, int n_chan, bool additive, gs_memory_t *memory)
{
pdf14_ctx *result;
pdf14_buf *buf;
result = gs_alloc_struct(memory, pdf14_ctx, &st_pdf14_ctx,
"pdf14_ctx_new");
if (result == NULL)
return result;
/* Note: buffer creation expects alpha to be in number of channels */
buf = pdf14_buf_new(rect, false, false, false, n_chan+1, memory);
if (buf == NULL) {
gs_free_object(memory, result, "pdf14_ctx_new");
return NULL;
}
if_debug3('v', "[v]base buf: %d x %d, %d channels\n",
buf->rect.q.x, buf->rect.q.y, buf->n_chan);
if (buf->data != NULL)
memset(buf->data, 0, buf->planestride * buf->n_planes);
buf->saved = NULL;
result->stack = buf;
result->maskbuf = pdf14_mask_element_new(memory);
result->n_chan = n_chan;
result->memory = memory;
result->rect = *rect;
result->additive = additive;
return result;
}
static void
pdf14_ctx_free(pdf14_ctx *ctx)
{
pdf14_buf *buf, *next;
if (ctx->maskbuf) {
/* A mask was created but was not used in this band. */
rc_decrement(ctx->maskbuf->rc_mask, "pdf14_ctx_free");
}
for (buf = ctx->stack; buf != NULL; buf = next) {
next = buf->saved;
pdf14_buf_free(buf, ctx->memory);
}
gs_free_object (ctx->memory, ctx, "pdf14_ctx_free");
}
/**
* pdf14_find_backdrop_buf: Find backdrop buffer.
*
* Return value: Backdrop buffer for current group operation, or NULL
* if backdrop is fully transparent.
**/
static pdf14_buf *
pdf14_find_backdrop_buf(pdf14_ctx *ctx)
{
pdf14_buf *buf = ctx->stack;
while (buf != NULL) {
if (buf->isolated) return NULL;
if (!buf->knockout) return buf->saved;
buf = buf->saved;
}
/* this really shouldn't happen, as bottom-most buf should be
non-knockout */
return NULL;
}
static int
pdf14_push_transparency_group(pdf14_ctx *ctx, gs_int_rect *rect,
bool isolated, bool knockout,
byte alpha, byte shape,
gs_blend_mode_t blend_mode, bool idle,
uint mask_id, int numcomps)
{
pdf14_buf *tos = ctx->stack;
pdf14_buf *buf, *backdrop;
bool has_shape;
if_debug1('v', "[v]pdf14_push_transparency_group, idle = %d\n", idle);
/* todo: fix this hack, which makes all knockout groups isolated.
For the vast majority of files, there won't be any visible
effects, but it still isn't correct. The pixel compositing code
for non-isolated knockout groups gets pretty hairy, which is
why this is here. */
if (knockout)
isolated = true;
has_shape = tos->has_shape || tos->knockout;
/* We need to create this based upon the size of
the color space + an alpha channel. NOT the device size
or the previous ctx size. */
/* The second parameter in pdf14_buf_new decides if we should
add a GROUP alpha channel to the buffer. If it is NOT isolated, then this
buffer will be added. If it is isolated, then the buffer will not be added.
I question the redundancy here of the alpha and the group alpha channel, but
that will need to be looked at later. */
buf = pdf14_buf_new(rect, !isolated, has_shape, idle, numcomps+1, ctx->memory);
if_debug3('v', "[v]push buf: %d x %d, %d channels\n", buf->rect.q.x - buf->rect.p.x, buf->rect.q.y - buf->rect.p.y, buf->n_chan);
if (buf == NULL)
return_error(gs_error_VMerror);
buf->isolated = isolated;
buf->knockout = knockout;
buf->alpha = alpha;
buf->shape = shape;
buf->blend_mode = blend_mode;
buf->mask_id = mask_id;
buf->maskbuf = ctx->maskbuf; /* Save becasuse the group rendering may set up
another (nested) mask. */
ctx->maskbuf = NULL; /* Clean the mask field for rendering this group.
See pdf14_pop_transparency_group how to handle it. */
buf->saved = tos;
ctx->stack = buf;
if (buf->data == NULL)
return 0;
if (idle)
return 0;
backdrop = pdf14_find_backdrop_buf(ctx);
if (backdrop == NULL)
memset(buf->data, 0, buf->planestride * (buf->n_chan +
(buf->has_shape ? 1 : 0)));
else
pdf14_preserve_backdrop(buf, tos, has_shape);
#if RAW_DUMP
/* Dump the current buffer to see what we have. */
dump_raw_buffer(ctx->stack->rect.q.y-ctx->stack->rect.p.y,
ctx->stack->rowstride, ctx->stack->n_planes,
ctx->stack->planestride, ctx->stack->rowstride,
"TransGroupPush",ctx->stack->data);
global_index++;
#endif
return 0;
}
static int
pdf14_pop_transparency_group(pdf14_ctx *ctx,
const pdf14_nonseparable_blending_procs_t * pblend_procs, int curr_num_color_comp)
{
pdf14_buf *tos = ctx->stack;
pdf14_buf *nos = tos->saved;
pdf14_mask_t *mask_stack = tos->maskbuf;
pdf14_buf *maskbuf;
int x0, x1, y0, y1;
byte *new_data_buf;
int num_noncolor_planes, new_num_planes;
if ( mask_stack == NULL) {
maskbuf = NULL;
} else {
maskbuf = mask_stack->rc_mask->mask_buf;
}
if (nos == NULL)
return_error(gs_error_rangecheck);
y0 = max(tos->rect.p.y, nos->rect.p.y);
y1 = min(tos->rect.q.y, nos->rect.q.y);
x0 = max(tos->rect.p.x, nos->rect.p.x);
x1 = min(tos->rect.q.x, nos->rect.q.x);
if (ctx->maskbuf) {
/* This can occur when we have a situation
where we are ending out of a group that
has internal to it a soft mask
and another group. The soft mask
left over from the previous trans group
pop is put into ctx->masbuf, since it
is still active if another trans group
push occurs to use it. If one does
not occur, but instead we find ourselves
popping from a parent group, then this
softmask is no longer needed. We will
rc_decrement and set it to NULL.
*/
rc_decrement(ctx->maskbuf->rc_mask, "pdf14_pop_transparency_group");
if (ctx->maskbuf->rc_mask == NULL ){
gs_free_object(ctx->memory, ctx->maskbuf, "pdf14_pop_transparency_group");
}
ctx->maskbuf = NULL;
}
ctx->maskbuf = mask_stack; /* Restore the mask saved by pdf14_push_transparency_group. */
tos->maskbuf = NULL; /* Clean the pointer sinse the mask ownership is now passed to ctx. */
if (tos->idle)
goto exit;
if (maskbuf != NULL && maskbuf->data == NULL && maskbuf->alpha == 255)
goto exit;
if (maskbuf != NULL) {
y0 = max(y0, maskbuf->rect.p.y);
y1 = min(y1, maskbuf->rect.q.y);
x0 = max(x0, maskbuf->rect.p.x);
x1 = min(x1, maskbuf->rect.q.x);
}
#if RAW_DUMP
/* Dump the current buffer to see what we have. */
dump_raw_buffer(ctx->stack->rect.q.y-ctx->stack->rect.p.y,
ctx->stack->rowstride, ctx->stack->n_planes,
ctx->stack->planestride, ctx->stack->rowstride,
"Trans_Group_Pop",ctx->stack->data);
#endif
/* If the color spaces are different and we actually did do a swap of the procs for color */
if(nos->parent_color_info_procs.num_components != curr_num_color_comp && nos->parent_color_info_procs.parent_color_mapping_procs != NULL){
if (x0 < x1 && y0 < y1) {
/* The NOS blending color space is different than that of the
TOS. It is necessary to transform the TOS buffer data to the
color space of the NOS prior to doing the pdf14_compose_group
operation. For now we are going to do very generic transformations.
This will be replaced when we bring in the updated color flow. */
/* Allocate the new buffer. If the number of channels in the the new
color space was less than or equal to the previous one, we could
reuse. Save that for a later optimization. */
num_noncolor_planes = tos->n_planes - curr_num_color_comp;
new_num_planes = num_noncolor_planes + nos->parent_color_info_procs.num_components;
new_data_buf = gs_alloc_bytes(ctx->memory, tos->planestride*new_num_planes,
"pdf14_buf_new");
if (new_data_buf == NULL)
return_error(gs_error_VMerror);
/* Initialize with 0. Need to double check about this...
may need to do some adjustments for the shape etc plane */
/* i.e. copy over those planes that exist beyond the count
of the number of color components */
memset(new_data_buf, 0, tos->planestride*new_num_planes);
/* Go ahead and do the conversion on the buffer */
/* later this will be replaced by gscms_transform_color_buffer */
/* This simple function is for planar data only. */
gs_transform_color_buffer_generic(tos->data,tos->rowstride,tos->planestride,
curr_num_color_comp,tos->rect,new_data_buf,nos->parent_color_info_procs.num_components,num_noncolor_planes);
/* Free the old object */
gs_free_object(ctx->memory, tos->data, "pdf14_buf_free");
tos->data = new_data_buf;
/* Adjust the plane and channel size now */
tos->n_chan = nos->n_chan;
tos->n_planes = nos->n_planes;
#if RAW_DUMP
/* Dump the current buffer to see what we have. */
dump_raw_buffer(ctx->stack->rect.q.y-ctx->stack->rect.p.y,
ctx->stack->rowstride, ctx->stack->n_planes,
ctx->stack->planestride, ctx->stack->rowstride,
"Trans_Group_ColorConv",ctx->stack->data);
#endif
/* compose */
pdf14_compose_group(tos, nos, maskbuf, x0, x1, y0, y1, nos->n_chan,
nos->parent_color_info_procs.isadditive,
nos->parent_color_info_procs.parent_blending_procs);
}
} else {
if (x0 < x1 && y0 < y1)
pdf14_compose_group(tos, nos, maskbuf, x0, x1, y0, y1,nos->n_chan, ctx->additive, pblend_procs);
}
exit:
ctx->stack = nos;
{ /* If this group is one for an image with soft mask,
the containing group's mask was saved in maskbuf->maskbuf.
Set up it now to the transparensy context as undiong
the save action done in pdf14_push_transparency_mask
when replacing==false;
*/
/* ctx->maskbuf = (maskbuf != NULL ? maskbuf->maskbuf : NULL); */
}
if_debug1('v', "[v]pop buf, idle=%d\n", tos->idle);
pdf14_buf_free(tos, ctx->memory);
return 0;
}
/*
* Create a transparency mask that will be used as the mask for
* the next transparency group that is created afterwards.
* The sequence of calls is:
* push_mask, draw the mask, pop_mask, push_group, draw the group, pop_group
*/
static int
pdf14_push_transparency_mask(pdf14_ctx *ctx, gs_int_rect *rect, byte bg_alpha,
byte *transfer_fn, bool idle, bool replacing,
uint mask_id, gs_transparency_mask_subtype_t subtype,
bool SMask_is_CIE, int numcomps,
int Background_components,
const float Background[],
const float GrayBackground)
{
pdf14_buf *buf;
unsigned char *curr_ptr;
int k;
unsigned char background_init;
if_debug2('v', "[v]pdf14_push_transparency_mask, idle=%d, replacing=%d\n", idle, replacing);
#if 0
if (replacing && ctx->maskbuf != NULL) {
if (ctx->maskbuf->maskbuf != NULL) {
/* Pass here when a mask of an image
is being replaced with the containing group's mask.
It looks as the image's mask covers some band,
but the image itself does not.
We believe it must not happen,
but provide a cleanup for safety.
*/
pdf14_buf_free(ctx->maskbuf->maskbuf, ctx->memory);
}
pdf14_buf_free(ctx->maskbuf, ctx->memory);
ctx->maskbuf = NULL;
}
#endif
/* An optimization to consider is that if the SubType is Alpha
then we really should only be allocating the alpha band and
only draw with that channel. Current architecture makes that
a bit tricky. We need to create this based upon the size of
the color space + an alpha channel. NOT the device size
or the previous ctx size */
buf = pdf14_buf_new(rect, false, false, idle, numcomps+1, ctx->memory);
if (buf == NULL)
return_error(gs_error_VMerror);
buf->alpha = bg_alpha;
/* fill in, but these values aren't really used */
buf->isolated = true;
buf->knockout = false;
buf->shape = 0xff;
buf->blend_mode = BLEND_MODE_Normal;
buf->transfer_fn = transfer_fn;
buf->mask_id = mask_id;
{ /* If replacing=false, we start the mask for an image with SMask.
In this case the image's SMask temporary replaces the
mask of the containing group. Save the containing droup's mask in buf->maskbuf */
buf->maskbuf = ctx->maskbuf;
if (buf->maskbuf){
rc_increment(buf->maskbuf->rc_mask);
}
}
#if RAW_DUMP
/* Dump the current buffer to see what we have. */
if (ctx->stack->planestride > 0 ){
dump_raw_buffer(ctx->stack->rect.q.y-ctx->stack->rect.p.y,
ctx->stack->rowstride, ctx->stack->n_planes,
ctx->stack->planestride, ctx->stack->rowstride,
"Raw_Buf_PreSmask",ctx->stack->data);
global_index++;
}
#endif
buf->saved = ctx->stack;
ctx->stack = buf;
/* Soft Mask related information so we know how to
compute luminosity when we pop the soft mask */
buf->SMask_is_CIE = SMask_is_CIE;
buf->SMask_SubType = subtype;
if (buf->data != NULL){
/* We need to initialize it to the BC if it existed */
/* According to the spec, the CS has to be the same */
/* If the back ground component is black, then don't bother
with this */
if ( Background_components && GrayBackground != 0.0 ) {
curr_ptr = buf->data;
for (k = 0; k < Background_components; k++) {
background_init = (unsigned char) (255.0 * Background[k]);
memset(curr_ptr, background_init, buf->planestride);
curr_ptr += buf->planestride;
}
/* If we have a background component that was not black, then we
need to set the alpha for this mask as if we had drawn in the
entire soft mask buffer */
memset(curr_ptr, 255, buf->planestride * (buf->n_chan - Background_components));
} else {
/* Compose mask with opaque background */
memset(buf->data, 0, buf->planestride * buf->n_chan);
}
}
return 0;
}
static int
pdf14_pop_transparency_mask(pdf14_ctx *ctx)
{
pdf14_buf *tos = ctx->stack;
byte *new_data_buf;
if_debug1('v', "[v]pdf14_pop_transparency_mask, idle=%d\n", tos->idle);
ctx->stack = tos->saved;
tos->saved = NULL; /* To avoid issues with GC */
if (tos->maskbuf) {
/* During the soft mask push, the maskbuf was copied (not moved) from the ctx to the tos maskbuf. We
are done with this now so it is safe to just set to NULL. However, before we do that we must perform
rc decrement to match the increment that occured was made. Also, if this is the last ref
count of the rc_mask, we should free the buffer now since no other groups need it. */
rc_decrement(tos->maskbuf->rc_mask, "pdf14_pop_transparency_mask(tos->maskbuf->rc_mask)");
if (tos->maskbuf->rc_mask) {
if (tos->maskbuf->rc_mask->rc.ref_count == 1){
rc_decrement(tos->maskbuf->rc_mask, "pdf14_pop_transparency_mask(tos->maskbuf->rc_mask)");
}
}
tos->maskbuf = NULL;
}
if (tos->data == NULL ) {
/* This can occur in clist rendering if the soft mask does
not intersect the current band. It would be nice to
catch this earlier and just avoid creating the structure
to begin with. For now we need to delete the structure
that was created. Only delete if the alpha value is not
255 */
if (tos->alpha == 255) {
pdf14_buf_free(tos, ctx->memory);
ctx->maskbuf = NULL;
} else {
/* Assign as mask buffer */
ctx->maskbuf = pdf14_mask_element_new(ctx->memory);
ctx->maskbuf->rc_mask->mask_buf = tos;
}
} else {
/* Lets get this to a monochrome buffer and map it to a luminance only value */
/* This will reduce our memory. We won't reuse the existing one, due */
/* Due to the fact that on certain systems we may have issues recovering */
/* the data after a resize */
new_data_buf = gs_alloc_bytes(ctx->memory, tos->planestride,
"pdf14_buf_new");
if (new_data_buf == NULL)
return_error(gs_error_VMerror);
/* Initialize with 0. Need to do this since in Smask_Luminosity_Mapping
we won't be filling everything during the remap if it had not been
written into by the PDF14 fill rect */
memset(new_data_buf, 0, tos->planestride);
Smask_Luminosity_Mapping(tos->rect.q.y - tos->rect.p.y ,tos->rect.q.x - tos->rect.p.x,tos->n_chan,
tos->rowstride, tos->planestride, new_data_buf, tos->data, ctx->additive,
tos->SMask_is_CIE, tos->SMask_SubType);
/* Free the old object, NULL test was above */
gs_free_object(ctx->memory, tos->data, "pdf14_buf_free");
tos->data = new_data_buf;
/* Data is single channel now */
tos->n_chan = 1;
tos->n_planes = 1;
/* Assign as reference counted mask buffer */
ctx->maskbuf = pdf14_mask_element_new(ctx->memory);
ctx->maskbuf->rc_mask->mask_buf = tos;
}
return 0;
}
static pdf14_mask_t *
pdf14_mask_element_new(gs_memory_t *memory)
{
pdf14_mask_t *result;
result = gs_alloc_struct(memory, pdf14_mask_t, &st_pdf14_mask,
"pdf14_mask_element_new");
/* Get the reference counted mask */
result->rc_mask = pdf14_rcmask_new(memory);
result->previous = NULL;
result->memory = memory;
return(result);
}
static int
pdf14_push_transparency_state(gx_device *dev, gs_imager_state *pis)
{
/* We need to push the current soft mask. We need to
be able to recover it if we draw a new one and
then obtain a Q operation ( a pop ) */
pdf14_device *pdev = (pdf14_device *)dev;
pdf14_ctx *ctx = pdev->ctx;
pdf14_mask_t *new_mask;
if_debug0('v', "pdf14_push_transparency_state\n");
/* We need to push the current mask buffer */
/* Allocate a new element for the stack.
Don't do anything if there is no mask present.*/
if ( ctx->maskbuf != NULL ) {
new_mask = pdf14_mask_element_new(ctx->memory);
/* Duplicate and make the link */
new_mask->rc_mask = ctx->maskbuf->rc_mask;
rc_increment(new_mask->rc_mask);
ctx->maskbuf->previous = new_mask;
}
return(0);
}
static int
pdf14_pop_transparency_state(gx_device *dev, gs_imager_state *pis)
{
/* Pop the soft mask. It is no longer needed. Likely due to
a Q that has occurred. */
pdf14_device *pdev = (pdf14_device *)dev;
pdf14_ctx *ctx = pdev->ctx;
pdf14_mask_t *old_mask;
if_debug0('v', "pdf14_pop_transparency_state\n");
/* rc decrement the current link after we break it from
the list, then free the stack element. Don't do
anything if there is no mask present. */
if ( ctx->maskbuf != NULL ) {
old_mask = ctx->maskbuf;
ctx->maskbuf = ctx->maskbuf->previous;
if (old_mask->rc_mask) {
rc_decrement(old_mask->rc_mask, "pdf14_pop_transparency_state");
}
gs_free_object(old_mask->memory, old_mask, "pdf14_pop_transparency_state");
}
return(0);
}
static int
pdf14_open(gx_device *dev)
{
pdf14_device *pdev = (pdf14_device *)dev;
gs_int_rect rect;
if_debug2('v', "[v]pdf14_open: width = %d, height = %d\n",
dev->width, dev->height);
rect.p.x = 0;
rect.p.y = 0;
rect.q.x = dev->width;
rect.q.y = dev->height;
pdev->ctx = pdf14_ctx_new(&rect, dev->color_info.num_components,
pdev->color_info.polarity != GX_CINFO_POLARITY_SUBTRACTIVE, dev->memory);
if (pdev->ctx == NULL)
return_error(gs_error_VMerror);
return 0;
}
static const gx_cm_color_map_procs pdf14_DeviceCMYKspot_procs = {
pdf14_gray_cs_to_cmyk_cm, pdf14_rgb_cs_to_cmyk_cm, pdf14_cmyk_cs_to_cmyk_cm
};
static const gx_cm_color_map_procs *
pdf14_cmykspot_get_color_mapping_procs(const gx_device * dev)
{
return &pdf14_DeviceCMYKspot_procs;
}
/* Used to passed along information about the buffer created by the
pdf14 device. This is used by the pattern accumulator when the
pattern contains transparency */
int
pdf14_get_buffer_information(const gx_device * dev, gx_pattern_trans_t *transbuff){
const pdf14_device * pdev = (pdf14_device *)dev;
pdf14_buf *buf;
gs_int_rect rect;
int x1,y1,width,height;
if ( pdev->ctx == NULL){
return 0; /* this can occur if the pattern is a clist */
}
buf = pdev->ctx->stack;
rect = buf->rect;
rect_intersect(rect, buf->bbox);
x1 = min(pdev->width, rect.q.x);
y1 = min(pdev->height, rect.q.y);
width = x1 - rect.p.x;
height = y1 - rect.p.y;
if (width <= 0 || height <= 0 || buf->data == NULL)
return 0;
transbuff->pdev14 = dev;
transbuff->n_chan = buf->n_chan;
transbuff->planestride = buf->planestride;
transbuff->rowstride = buf->rowstride;
transbuff->transbytes = buf->data;
transbuff->has_shape = buf->has_shape;
transbuff->width = width;
transbuff->height = height;
transbuff->rect = rect;
return(0);
}
/**
* pdf14_put_image: Put rendered image to target device.
* @pdev: The PDF 1.4 rendering device.
* @pgs: State for image draw operation.
* @target: The target device.
*
* Puts the rendered image in @pdev's buffer to @target. This is called
* as part of the sequence of popping the PDF 1.4 device filter.
*
* Return code: negative on error.
**/
static int
pdf14_put_image(gx_device * dev, gs_imager_state * pis, gx_device * target)
{
const pdf14_device * pdev = (pdf14_device *)dev;
int code;
gs_image1_t image;
gs_matrix pmat;
gx_image_enum_common_t *info;
pdf14_buf *buf = pdev->ctx->stack;
gs_int_rect rect = buf->rect;
int y;
int num_comp = buf->n_chan - 1;
byte *linebuf;
gs_color_space *pcs;
const byte bg = pdev->ctx->additive ? 255 : 0;
int x1, y1, width, height;
byte *buf_ptr;
if_debug0('v', "[v]pdf14_put_image\n");
rect_intersect(rect, buf->bbox);
x1 = min(pdev->width, rect.q.x);
y1 = min(pdev->height, rect.q.y);
width = x1 - rect.p.x;
height = y1 - rect.p.y;
#ifdef DUMP_TO_PNG
dump_planar_rgba(pdev->memory, buf);
#endif
if (width <= 0 || height <= 0 || buf->data == NULL)
return 0;
buf_ptr = buf->data + rect.p.y * buf->rowstride + rect.p.x;
#if 0
/* Set graphics state device to target, so that image can set up
the color mapping properly. */
rc_increment(pdev);
gs_setdevice_no_init(pgs, target);
#endif
/*
* Set color space to either Gray, RGB, or CMYK in preparation for sending
* an image.
*/
switch (num_comp) {
case 1: /* DeviceGray */
pcs = gs_cspace_new_DeviceGray(pis->memory);
break;
case 3: /* DeviceRGB */
pcs = gs_cspace_new_DeviceRGB(pis->memory);
break;
case 4: /* DeviceCMYK */
pcs = gs_cspace_new_DeviceCMYK(pis->memory);
break;
default: /* Should never occur */
return_error(gs_error_rangecheck);
break;
}
if (pcs == NULL)
return_error(gs_error_VMerror);
gs_image_t_init_adjust(&image, pcs, false);
image.ImageMatrix.xx = (float)width;
image.ImageMatrix.yy = (float)height;
image.Width = width;
image.Height = height;
image.BitsPerComponent = 8;
pmat.xx = (float)width;
pmat.xy = 0;
pmat.yx = 0;
pmat.yy = (float)height;
pmat.tx = (float)rect.p.x;
pmat.ty = (float)rect.p.y;
code = dev_proc(target, begin_typed_image) (target,
pis, &pmat,
(gs_image_common_t *)&image,
NULL, NULL, NULL,
pis->memory, &info);
if (code < 0) {
rc_decrement_only(pcs, "pdf14_put_image");
return code;
}
#if RAW_DUMP
/* Dump the current buffer to see what we have. */
dump_raw_buffer(pdev->ctx->stack->rect.q.y-pdev->ctx->stack->rect.p.y,
pdev->ctx->stack->rect.q.x-pdev->ctx->stack->rect.p.x,
pdev->ctx->stack->n_planes,
pdev->ctx->stack->planestride, pdev->ctx->stack->rowstride,
"pdF14_putimage",pdev->ctx->stack->data);
global_index++;
clist_band_count++;
#endif
linebuf = gs_alloc_bytes(pdev->memory, width * num_comp, "pdf14_put_image");
for (y = 0; y < height; y++) {
gx_image_plane_t planes;
int rows_used;
gx_build_blended_image_row(buf_ptr, y, buf->planestride, width, num_comp, bg, linebuf);
planes.data = linebuf;
planes.data_x = 0;
planes.raster = width * num_comp;
info->procs->plane_data(info, &planes, 1, &rows_used);
/* todo: check return value */
buf_ptr += buf->rowstride;
}
gs_free_object(pdev->memory, linebuf, "pdf14_put_image");
info->procs->end_image(info, true);
#if 0
/* Restore device in graphics state.*/
gs_setdevice_no_init(pgs, (gx_device*) pdev);
rc_decrement_only(pdev, "pdf_14_put_image");
#endif
rc_decrement_only(pcs, "pdf14_put_image");
return code;
}
/**
* pdf14_cmykspot_put_image: Put rendered image to target device.
* @pdev: The PDF 1.4 rendering device.
* @pis: State for image draw operation.
* @target: The target device.
*
* Puts the rendered image in @pdev's buffer to @target. This is called
* as part of the sequence of popping the PDF 1.4 device filter.
*
* Return code: negative on error.
**/
static int
pdf14_cmykspot_put_image(gx_device * dev, gs_imager_state * pis, gx_device * target)
{
pdf14_device * pdev = (pdf14_device *)dev;
pdf14_buf *buf = pdev->ctx->stack;
gs_int_rect rect = buf->rect;
int x1, y1, width, height;
gs_devn_params * pdevn_params = &pdev->devn_params;
gs_separations * pseparations = &pdevn_params->separations;
int planestride = buf->planestride;
int rowstride = buf->rowstride;
const byte bg = pdev->ctx->additive ? gx_max_color_value : 0;
int num_comp = buf->n_chan - 1;
byte *buf_ptr;
if_debug0('v', "[v]pdf14_cmykspot_put_image\n");
rect_intersect(rect, buf->bbox);
x1 = min(pdev->width, rect.q.x);
y1 = min(pdev->height, rect.q.y);
width = x1 - rect.p.x;
height = y1 - rect.p.y;
if (width <= 0 || height <= 0 || buf->data == NULL)
return 0;
buf_ptr = buf->data + rect.p.y * buf->rowstride + rect.p.x;
#if RAW_DUMP
/* Dump the current buffer to see what we have. */
dump_raw_buffer(pdev->ctx->stack->rect.q.y-pdev->ctx->stack->rect.p.y,
pdev->ctx->stack->rect.q.x-pdev->ctx->stack->rect.p.x,
pdev->ctx->stack->n_planes,
pdev->ctx->stack->planestride, pdev->ctx->stack->rowstride,
"CMYK_SPOT_PUTIMAGE",pdev->ctx->stack->data);
global_index++;
clist_band_count++;
#endif
return gx_put_blended_image_cmykspot(target, buf_ptr, planestride, rowstride,
rect.p.x, rect.p.y, width, height, num_comp, bg, pseparations);
}
/**
* pdf14_custom_put_image: Put rendered image to target device.
* @pdev: The PDF 1.4 rendering device.
* @pis: State for image draw operation.
* @target: The target device.
*
* Puts the rendered image in @pdev's buffer to @target. This is called
* as part of the sequence of popping the PDF 1.4 device filter.
*
* Return code: negative on error.
**/
static int
pdf14_custom_put_image(gx_device * dev, gs_imager_state * pis, gx_device * target)
{
pdf14_device * pdev = (pdf14_device *)dev;
pdf14_buf *buf = pdev->ctx->stack;
gs_int_rect rect = buf->rect;
int x0 = rect.p.x, y0 = rect.p.y;
int planestride = buf->planestride;
int rowstride = buf->rowstride;
int num_comp = buf->n_chan - 1;
const byte bg = pdev->ctx->additive ? gx_max_color_value : 0;
int x1, y1, width, height;
byte *buf_ptr;
if_debug0('v', "[v]pdf14_custom_put_image\n");
rect_intersect(rect, buf->bbox);
x1 = min(pdev->width, rect.q.x);
y1 = min(pdev->height, rect.q.y);
width = x1 - rect.p.x;
height = y1 - rect.p.y;
if (width <= 0 || height <= 0 || buf->data == NULL)
return 0;
buf_ptr = buf->data + rect.p.y * buf->rowstride + rect.p.x;
return gx_put_blended_image_custom(target, buf_ptr,
planestride, rowstride,
x0, y0, width, height, num_comp, bg);
}
static int
pdf14_close(gx_device *dev)
{
pdf14_device *pdev = (pdf14_device *)dev;
if (pdev->ctx) {
pdf14_ctx_free(pdev->ctx);
pdev->ctx = NULL;
}
return 0;
}
static int
pdf14_output_page(gx_device * dev, int num_copies, int flush)
{
pdf14_device * pdev = (pdf14_device *)dev;
if (pdev->target != NULL)
return (*dev_proc(pdev->target, output_page)) (pdev->target, num_copies, flush);
return 0;
}
#define COPY_PARAM(p) dev->p = target->p
#define COPY_ARRAY_PARAM(p) memcpy(dev->p, target->p, sizeof(dev->p))
/*
* Copy device parameters back from a target. This copies all standard
* parameters related to page size and resolution, but not any of the
* color-related parameters, as the pdf14 device retains its own color
* handling. This routine is parallel to gx_device_copy_params().
*/
static void
gs_pdf14_device_copy_params(gx_device *dev, const gx_device *target)
{
COPY_PARAM(width);
COPY_PARAM(height);
COPY_ARRAY_PARAM(MediaSize);
COPY_ARRAY_PARAM(ImagingBBox);
COPY_PARAM(ImagingBBox_set);
COPY_ARRAY_PARAM(HWResolution);
COPY_ARRAY_PARAM(MarginsHWResolution);
COPY_ARRAY_PARAM(Margins);
COPY_ARRAY_PARAM(HWMargins);
COPY_PARAM(PageCount);
#undef COPY_ARRAY_PARAM
#undef COPY_PARAM
}
/*
* This is a forwarding version of the put_params device proc. It is only
* used when the PDF 1.4 compositor devices are closed. The routine will
* check if the target device has closed and, if so, close itself. The routine
* also sync the device parameters.
*/
static int
pdf14_forward_put_params(gx_device * dev, gs_param_list * plist)
{
pdf14_device * pdev = (pdf14_device *)dev;
gx_device * tdev = pdev->target;
bool was_open = tdev->is_open;
int code = 0;
if (tdev != 0 && (code = dev_proc(tdev, put_params)(tdev, plist)) >= 0) {
gx_device_decache_colors(dev);
if (!tdev->is_open) {
code = gs_closedevice(dev);
if (code == 0)
code = was_open ? 1 : 0; /* target device closed */
}
gx_device_copy_params(dev, tdev);
}
return code;
}
/* Function prototypes */
int put_param_compressed_color_list_elem(gx_device * pdev,
gs_param_list * plist, compressed_color_list_t ** pret_comp_list,
char * keyname, int num_comps);
int put_param_pdf14_spot_names(gx_device * pdev,
gs_separations * pseparations, gs_param_list * plist);
#define PDF14CompressedColorListParamName "PDF14CompressedColorList"
#define PDF14NumSpotColorsParamName "PDF14NumSpotColors"
/*
* The put_params method for the PDF 1.4 device will check if the
* target device has closed and, if so, close itself. Note: This routine is
* currently being used by both the pdf14_clist_device and the pdf_device.
* Please make sure that any changes are either applicable to both devices
* or clone the routine for each device.
*/
static int
pdf14_put_params(gx_device * dev, gs_param_list * plist)
{
pdf14_device * pdev = (pdf14_device *)dev;
gx_device * tdev = pdev->target;
bool was_open = tdev->is_open;
int code = 0;
if (tdev != 0 && (code = dev_proc(tdev, put_params)(tdev, plist)) >= 0) {
gx_device_decache_colors(dev);
if (!tdev->is_open) {
code = gs_closedevice(dev);
if (code == 0)
code = was_open ? 1 : 0; /* target device closed */
}
gs_pdf14_device_copy_params(dev, tdev);
}
#if 0
put_param_compressed_color_list_elem(pdev, plist, &pret_comp_list,
PDF14CompressedColorListParamName, TOP_ENCODED_LEVEL);
put_param_pdf14_spot_names(dev, &pdev->devn_params, plist);
#endif
return code;
}
/*
* Copy marking related parameters into the PDF 1.4 device structure for use
* by pdf14_fill_rrectangle.
*/
static void
pdf14_set_marking_params(gx_device *dev, const gs_imager_state *pis)
{
pdf14_device * pdev = (pdf14_device *)dev;
pdev->opacity = pis->opacity.alpha;
pdev->shape = pis->shape.alpha;
pdev->alpha = pis->opacity.alpha * pis->shape.alpha;
pdev->blend_mode = pis->blend_mode;
pdev->overprint = pis->overprint;
pdev->overprint_mode = pis->overprint_mode;
if_debug3('v', "[v]set_marking_params, opacity = %g, shape = %g, bm = %d\n",
pdev->opacity, pdev->shape, pis->blend_mode);
}
static int
pdf14_fill_path(gx_device *dev, const gs_imager_state *pis,
gx_path *ppath, const gx_fill_params *params,
const gx_drawing_color *pdcolor,
const gx_clip_path *pcpath)
{
gs_imager_state new_is = *pis;
int code;
gs_pattern2_instance_t *pinst = NULL;
if (pdcolor != NULL && gx_dc_is_pattern1_color(pdcolor)){
if( gx_pattern1_get_transptr(pdcolor) != NULL){
/* In this case, we need to push a transparency group
and tile the pattern color, which is stored in
a pdf14 device buffer in the ctile object memember
variable ttrans */
#if RAW_DUMP
/* Since we do not get a put_image to view what
we have do it now */
pdf14_device * ppatdev14 = pdcolor->colors.pattern.p_tile->ttrans->pdev14;
if (ppatdev14 != NULL) { /* can occur during clist reading */
dump_raw_buffer(ppatdev14->ctx->stack->rect.q.y-ppatdev14->ctx->stack->rect.p.y,
ppatdev14->ctx->stack->rect.q.x-ppatdev14->ctx->stack->rect.p.x,
ppatdev14->ctx->stack->n_planes,
ppatdev14->ctx->stack->planestride, ppatdev14->ctx->stack->rowstride,
"Pattern_Fill",ppatdev14->ctx->stack->data);
global_index++;
} else {
gx_pattern_trans_t *patt_trans = pdcolor->colors.pattern.p_tile->ttrans;
dump_raw_buffer(patt_trans->rect.q.y-patt_trans->rect.p.y,
patt_trans->rect.q.x-patt_trans->rect.p.x,
patt_trans->n_chan,
patt_trans->planestride, patt_trans->rowstride,
"Pattern_Fill_clist",patt_trans->transbytes);
global_index++;
}
#endif
code = pdf14_tile_pattern_fill(dev, &new_is, ppath,
params, pdcolor, pcpath);
new_is.trans_device = NULL;
new_is.has_transparency = false;
return code;
}
}
if (pdcolor != NULL && gx_dc_is_pattern2_color(pdcolor)) {
pinst =
(gs_pattern2_instance_t *)pdcolor->ccolor.pattern;
pinst->saved->has_transparency = true;
/* The transparency color space operations are driven
by the pdf14 clist writer device. */
pinst->saved->trans_device = dev;
}
/*
* The blend operations are not idempotent. Force non-idempotent
* filling and stroking operations.
*/
new_is.log_op |= lop_pdf14;
pdf14_set_marking_params(dev, pis);
new_is.trans_device = dev;
new_is.has_transparency = true;
code = gx_default_fill_path(dev, &new_is, ppath, params, pdcolor, pcpath);
new_is.trans_device = NULL;
new_is.has_transparency = false;
if (pinst != NULL){
pinst->saved->trans_device = NULL;
}
return code;
}
static int
pdf14_stroke_path(gx_device *dev, const gs_imager_state *pis,
gx_path *ppath, const gx_stroke_params *params,
const gx_drawing_color *pdcolor,
const gx_clip_path *pcpath)
{
gs_imager_state new_is = *pis;
/*
* The blend operations are not idempotent. Force non-idempotent
* filling and stroking operations.
*/
new_is.log_op |= lop_pdf14;
pdf14_set_marking_params(dev, pis);
return gx_default_stroke_path(dev, &new_is, ppath, params, pdcolor,
pcpath);
}
/* Used for filling rects when we are doing a fill with a pattern that
has transparency */
static int
pdf14_tile_pattern_fill(gx_device * pdev, const gs_imager_state * pis,
gx_path * ppath, const gx_fill_params * params,
const gx_device_color * pdevc, const gx_clip_path * pcpath)
{
int code = 0;
gs_imager_state *pis_noconst = (gs_imager_state *)pis; /* Break const. */
gs_fixed_rect clip_box;
gs_fixed_rect outer_box;
pdf14_device * p14dev = (pdf14_device *)pdev;
gs_int_rect rect;
gx_clip_rect *curr_clip_rect;
gx_color_tile *ptile;
int k;
gx_pattern_trans_t *fill_trans_buffer;
int ok;
gs_int_point phase; /* Needed during clist rendering for band offset */
gx_clip_path cpath_intersection;
if (pcpath != NULL) {
code = gx_cpath_init_local_shared(&cpath_intersection, pcpath, pdev->memory);
if (code < 0)
return code;
} else {
(*dev_proc(pdev, get_clipping_box)) (pdev, &clip_box);
gx_cpath_init_local(&cpath_intersection, ppath->memory);
code = gx_cpath_from_rectangle(&cpath_intersection, &clip_box);
}
if (ppath != NULL)
code = gx_cpath_intersect_with_params(&cpath_intersection, ppath, params->rule,
pis_noconst, params);
/* Now let us push a transparency group into which we are
going to tile the pattern. */
if (ppath != NULL && code >= 0) {
gx_cpath_outer_box(&cpath_intersection, &outer_box);
rect.p.x = fixed2int(outer_box.p.x);
rect.p.y = fixed2int(outer_box.p.y);
rect.q.x = fixed2int_ceiling(outer_box.q.x);
rect.q.y = fixed2int_ceiling(outer_box.q.y);
/* The color space of this group must be the same as that of the
tile. Then when we pop the group, if there is a mismatch between
the tile color space and the current context we will do the proper
conversion. In this way, we ensure that if the tile has any overlapping
occuring it will be blended in the proper manner i.e in the tile
underlying color space. */
ptile = pdevc->colors.pattern.p_tile;
code = pdf14_push_transparency_group(p14dev->ctx, &rect,
1, 0, 255,255,
pis->blend_mode, 0,
0, ptile->ttrans->n_chan-1);
/* Set the blending procs and the is_additive setting based upon the number of channels */
if (ptile->ttrans->n_chan-1 < 4){
ptile->ttrans->blending_procs = &rgb_blending_procs;
ptile->ttrans->is_additive = true;
} else {
ptile->ttrans->blending_procs = &cmyk_blending_procs;
ptile->ttrans->is_additive = false;
}
/* Fix the reversed bbox. Not clear on why the push group does that */
p14dev->ctx->stack->bbox.p.x = p14dev->ctx->rect.p.x;
p14dev->ctx->stack->bbox.p.y = p14dev->ctx->rect.p.y;
p14dev->ctx->stack->bbox.q.x = p14dev->ctx->rect.q.x;
p14dev->ctx->stack->bbox.q.y = p14dev->ctx->rect.q.y;
/* Now lets go through the rect list and fill with the pattern */
/* First get the buffer that we will be filling */
fill_trans_buffer = new_pattern_trans_buff(pis->memory);
pdf14_get_buffer_information(pdev, fill_trans_buffer);
/* Set the blending mode in the ptile based upon the current setting in the imager state */
ptile->ttrans->blending_mode = pis->blend_mode;
/* fill the rectangles */
phase.x = pdevc->phase.x;
phase.y = pdevc->phase.y;
/* Based upon if the tiles overlap pick the type of rect fill that we will
want to use */
if (ptile->has_overlap) {
/* This one does blending since there is tile overlap */
ptile->ttrans->pat_trans_fill = &tile_rect_trans_blend;
} else {
/* This one does no blending since there is no tile overlap */
ptile->ttrans->pat_trans_fill = &tile_rect_trans_simple;
}
if (cpath_intersection.rect_list->list.head != NULL){
curr_clip_rect = cpath_intersection.rect_list->list.head->next;
for( k = 0; k< cpath_intersection.rect_list->list.count; k++){
if_debug5('v', "[v]pdf14_tile_pattern_fill, (%d, %d), %d x %d pat_id %d \n",
curr_clip_rect->xmin, curr_clip_rect->ymin,
curr_clip_rect->xmax-curr_clip_rect->xmin,
curr_clip_rect->ymax-curr_clip_rect->ymin, ptile->id);
ok = gx_trans_pattern_fill_rect(curr_clip_rect->xmin, curr_clip_rect->ymin,
curr_clip_rect->xmax, curr_clip_rect->ymax, ptile, fill_trans_buffer, phase);
curr_clip_rect = curr_clip_rect->next;
}
} else if (cpath_intersection.rect_list->list.count == 1) {
/* The case when there is just a single rect */
if_debug5('v', "[v]pdf14_tile_pattern_fill, (%d, %d), %d x %d pat_id %d \n",
cpath_intersection.rect_list->list.single.xmin, cpath_intersection.rect_list->list.single.ymin,
cpath_intersection.rect_list->list.single.xmax-cpath_intersection.rect_list->list.single.xmin,
cpath_intersection.rect_list->list.single.ymax-cpath_intersection.rect_list->list.single.ymin,
ptile->id);
ok = gx_trans_pattern_fill_rect(cpath_intersection.rect_list->list.single.xmin,
cpath_intersection.rect_list->list.single.ymin,
cpath_intersection.rect_list->list.single.xmax,
cpath_intersection.rect_list->list.single.ymax,
ptile, fill_trans_buffer, phase);
}
/* free our buffer object */
gs_free_object(pis->memory, fill_trans_buffer, "pdf14_tile_pattern_fill");
/* pop our transparency group which will force the blending */
code = pdf14_pop_transparency_group(p14dev->ctx, p14dev->blend_procs, p14dev->color_info.num_components);
}
return(code);
}
static int
pdf14_begin_typed_image(gx_device * dev, const gs_imager_state * pis,
const gs_matrix *pmat, const gs_image_common_t *pic,
const gs_int_rect * prect,
const gx_drawing_color * pdcolor,
const gx_clip_path * pcpath, gs_memory_t * mem,
gx_image_enum_common_t ** pinfo)
{
pdf14_set_marking_params(dev, pis);
return gx_default_begin_typed_image(dev, pis, pmat, pic, prect, pdcolor,
pcpath, mem, pinfo);
}
static void
pdf14_set_params(gs_imager_state * pis, gx_device * dev,
const gs_pdf14trans_params_t * pparams)
{
if_debug0('v', "[v]pdf14_set_params\n");
if (pparams->changed & PDF14_SET_BLEND_MODE)
pis->blend_mode = pparams->blend_mode;
if (pparams->changed & PDF14_SET_TEXT_KNOCKOUT)
pis->text_knockout = pparams->text_knockout;
if (pparams->changed & PDF14_SET_SHAPE_ALPHA)
pis->shape.alpha = pparams->shape.alpha;
if (pparams->changed & PDF14_SET_OPACITY_ALPHA)
pis->opacity.alpha = pparams->opacity.alpha;
if (pparams->changed & PDF14_SET_OVERPRINT)
pis->overprint = pparams->overprint;
if (pparams->changed & PDF14_SET_OVERPRINT_MODE)
pis->overprint_mode = pparams->overprint_mode;
pdf14_set_marking_params(dev, pis);
}
/*
* This open_device method for the PDF 1.4 compositor devices is only used
* when these devices are disabled. This routine is about as close to
* a pure "forwarding" open_device operation as is possible. Its only
* significant function is to ensure that the is_open field of the
* PDF 1.4 compositor devices matches that of the target device.
*
* We assume this procedure is called only if the device is not already
* open, and that gs_opendevice will take care of the is_open flag.
*/
static int
pdf14_forward_open_device(gx_device * dev)
{
gx_device_forward * pdev = (gx_device_forward *)dev;
gx_device * tdev = pdev->target;
int code = 0;
/* The PDF 1.4 compositing devices must have a target */
if (tdev == 0)
return_error(gs_error_unknownerror);
if ((code = gs_opendevice(tdev)) >= 0)
gx_device_copy_params(dev, tdev);
return code;
}
/*
* Convert all device procs to be 'forwarding'. The caller is responsible
* for setting any device procs that should not be forwarded.
*/
static void
pdf14_forward_device_procs(gx_device * dev)
{
gx_device_forward * pdev = (gx_device_forward *)dev;
/*
* We are using gx_device_forward_fill_in_procs to set the various procs.
* This will ensure that any new device procs are also set. However that
* routine only changes procs which are NULL. Thus we start by setting all
* procs to NULL.
*/
memset(&(pdev->procs), 0, size_of(pdev->procs));
gx_device_forward_fill_in_procs(pdev);
/*
* gx_device_forward_fill_in_procs does not forward all procs.
* Set the remainding procs to also forward.
*/
set_dev_proc(dev, close_device, gx_forward_close_device);
set_dev_proc(dev, fill_rectangle, gx_forward_fill_rectangle);
set_dev_proc(dev, tile_rectangle, gx_forward_tile_rectangle);
set_dev_proc(dev, copy_mono, gx_forward_copy_mono);
set_dev_proc(dev, copy_color, gx_forward_copy_color);
set_dev_proc(dev, get_page_device, gx_forward_get_page_device);
set_dev_proc(dev, strip_tile_rectangle, gx_forward_strip_tile_rectangle);
set_dev_proc(dev, copy_alpha, gx_forward_copy_alpha);
/* These are forwarding devices with minor tweaks. */
set_dev_proc(dev, open_device, pdf14_forward_open_device);
set_dev_proc(dev, put_params, pdf14_forward_put_params);
}
/*
* Disable the PDF 1.4 compositor device. Once created, the PDF 1.4
* compositor device is never removed. (We do not have a remove compositor
* method.) However it is no-op'ed when the PDF 1.4 device is popped. This
* routine implements that action.
*/
int
pdf14_disable_device(gx_device * dev)
{
gx_device_forward * pdev = (gx_device_forward *)dev;
if_debug0('v', "[v]pdf14_disable_device\n");
dev->color_info = pdev->target->color_info;
pdf14_forward_device_procs(dev);
set_dev_proc(dev, create_compositor, pdf14_forward_create_compositor);
return 0;
}
/*
* The default color space for PDF 1.4 blend modes is based upon the process
* color model of the output device.
*/
static pdf14_default_colorspace_t
pdf14_determine_default_blend_cs(gx_device * pdev)
{
if (pdev->color_info.polarity == GX_CINFO_POLARITY_ADDITIVE)
/*
* Note: We do not allow the SeparationOrder device parameter for
* additive devices. Thus we always have 1 colorant for DeviceGray
* and 3 colorants for DeviceRGB.
*/
if (pdev->color_info.num_components == 1)
return PDF14_DeviceGray;
else
return PDF14_DeviceRGB;
else {
/*
* Check if the device is CMYK only or CMYK plus spot colors.
*/
int i, output_comp_num, num_cmyk_used = 0, num_cmyk = 0;
#if CUSTOM_BLENDING_MODE == ALWAYS_USE_CUSTOM_BLENDING
return PDF14_DeviceCustom;
#endif
/*
* Count the number of CMYK process components supported by the output
* device.
*/
for (i = 0; i < 4; i++) {
const char * pcomp_name = (const char *)DeviceCMYKComponents[i];
output_comp_num = dev_proc(pdev, get_color_comp_index)
(pdev, pcomp_name, strlen(pcomp_name), NO_COMP_NAME_TYPE);
if (output_comp_num >= 0) {
num_cmyk++;
if (output_comp_num != GX_DEVICE_COLOR_MAX_COMPONENTS)
num_cmyk_used++;
}
}
/*
* Check if the device supports only CMYK. Otherewise we assume that
* the output device supports spot colors. Note: This algorithm can
* be fooled if the SeparationOrder device parameter is being used by
* the output device device to only select CMYK.
*/
if (num_cmyk_used == 4 && pdev->color_info.num_components == 4
&& pdev->color_info.max_components == 4)
return PDF14_DeviceCMYK;
/*
* Check if we should use the 'custom' PDF 1.4 compositor device.
* This device is only needed for those devices which do not support
* a basic CMYK process color model.
*/
#if CUSTOM_BLENDING_MODE == AUTO_USE_CUSTOM_BLENDING
if (num_cmyk != 4)
return PDF14_DeviceCustom;
#endif
/*
* Otherewise we use a CMYK plus spot colors for blending.
*/
return PDF14_DeviceCMYKspot;
}
}
/*
* the PDF 1.4 transparency spec says that color space for blending
* operations can be based upon either a color space specified in the
* group or a default value based upon the output device. We are
* currently only using a color space based upon the device.
*/
static int
get_pdf14_device_proto(gx_device * dev, pdf14_device ** pdevproto,
pdf14_device * ptempdevproto, gs_imager_state * pis,
const gs_pdf14trans_t * pdf14pct)
{
pdf14_default_colorspace_t dev_cs =
pdf14_determine_default_blend_cs(dev);
switch (dev_cs) {
case PDF14_DeviceGray:
*pdevproto = (pdf14_device *)&gs_pdf14_Gray_device;
/* We want gray to be single channel. Low level
initialization of gray device prototype is
peculiar in that in dci_std_color_num_components
the comment is
"A device is monochrome only if it is bi-level"
Here we want monochrome anytime we have a gray device.
To avoid breaking things elsewhere, we will overide
the prototype intialization here */
*ptempdevproto = **pdevproto;
ptempdevproto->color_info.max_components = 1;
ptempdevproto->color_info.num_components = ptempdevproto->color_info.max_components;
*pdevproto = ptempdevproto;
break;
case PDF14_DeviceRGB:
*pdevproto = (pdf14_device *)&gs_pdf14_RGB_device;
break;
case PDF14_DeviceCMYK:
*pdevproto = (pdf14_device *)&gs_pdf14_CMYK_device;
break;
case PDF14_DeviceCMYKspot:
*pdevproto = (pdf14_device *)&gs_pdf14_CMYKspot_device;
/*
* The number of components for the PDF14 device is the sum
* of the process components and the number of spot colors
* for the page.
*/
if (pdf14pct->params.num_spot_colors >= 0) {
*ptempdevproto = **pdevproto;
ptempdevproto->devn_params.page_spot_colors =
pdf14pct->params.num_spot_colors;
ptempdevproto->color_info.num_components =
ptempdevproto->devn_params.num_std_colorant_names +
pdf14pct->params.num_spot_colors;
if (ptempdevproto->color_info.num_components >
ptempdevproto->color_info.max_components)
ptempdevproto->color_info.num_components =
ptempdevproto->color_info.max_components;
*pdevproto = ptempdevproto;
}
break;
case PDF14_DeviceCustom:
/*
* We are using the output device's process color model. The
* color_info for the PDF 1.4 compositing device needs to match
* the output device.
*/
*ptempdevproto = gs_pdf14_custom_device;
ptempdevproto->color_info = dev->color_info;
/* The pdf14 device has to be 8 bit continuous tone. Force it */
ptempdevproto->color_info.depth =
ptempdevproto->color_info.num_components * 8;
ptempdevproto->color_info.max_gray = 255;
ptempdevproto->color_info.max_color = 255;
ptempdevproto->color_info.dither_grays = 256;
ptempdevproto->color_info.dither_colors = 256;
*pdevproto = ptempdevproto;
break;
default: /* Should not occur */
return_error(gs_error_rangecheck);
}
return 0;
}
/*
* Recreate the PDF 1.4 compositor device. Once created, the PDF 1.4
* compositor device is never removed. (We do not have a remove compositor
* method.) However it is no-op'ed when the PDF 1.4 device is popped. This
* routine will re-enable the compositor if the PDF 1.4 device is pushed
* again.
*/
static int
pdf14_recreate_device(gs_memory_t *mem, gs_imager_state * pis,
gx_device * dev, const gs_pdf14trans_t * pdf14pct)
{
pdf14_device * pdev = (pdf14_device *)dev;
gx_device * target = pdev->target;
pdf14_device * dev_proto;
pdf14_device temp_dev_proto;
int code;
if_debug0('v', "[v]pdf14_recreate_device\n");
/*
* We will not use the entire prototype device but we will set the
* color related info and the device procs to match the prototype.
*/
code = get_pdf14_device_proto(target, &dev_proto,
&temp_dev_proto, pis, pdf14pct);
if (code < 0)
return code;
pdev->color_info = dev_proto->color_info;
pdev->procs = dev_proto->procs;
dev->static_procs = dev_proto->static_procs;
gx_device_set_procs(dev);
gx_device_fill_in_procs(dev);
check_device_separable(dev);
return dev_proc(pdev, open_device)(dev);
}
/*
* Implement the various operations that can be specified via the PDF 1.4
* create compositor request.
*/
static int
gx_update_pdf14_compositor(gx_device * pdev, gs_imager_state * pis,
const gs_pdf14trans_t * pdf14pct, gs_memory_t * mem )
{
pdf14_device *p14dev = (pdf14_device *)pdev;
gs_pdf14trans_params_t params = pdf14pct->params;
int code = 0;
params.idle = pdf14pct->idle;
switch (params.pdf14_op) {
default: /* Should not occur. */
break;
case PDF14_PUSH_DEVICE:
p14dev->blend_mode = 0;
p14dev->opacity = p14dev->shape = 0.0;
pdf14_recreate_device(mem, pis, pdev, pdf14pct);
break;
case PDF14_POP_DEVICE:
if_debug0('v', "[v]gx_update_pdf14_compositor(PDF14_POP_DEVICE)\n");
pis->get_cmap_procs = p14dev->save_get_cmap_procs;
gx_set_cmap_procs(pis, p14dev->target);
/* Send image out raster data to output device */
{
/* Make a copy so we can change the ROP */
gs_imager_state new_is = *pis;
/* We don't use the imager state log_op since this is for the */
/* clist playback. Putting the image (band in the case of the */
/* clist) only needs to use the default ROP to copy the data */
new_is.log_op = rop3_default;
p14dev->pdf14_procs->put_image(pdev, &new_is, p14dev->target);
}
pdf14_disable_device(pdev);
pdf14_close(pdev);
break;
case PDF14_BEGIN_TRANS_GROUP:
code = gx_begin_transparency_group(pis, pdev, ¶ms);
break;
case PDF14_END_TRANS_GROUP:
code = gx_end_transparency_group(pis, pdev);
break;
case PDF14_BEGIN_TRANS_MASK:
code = gx_begin_transparency_mask(pis, pdev, ¶ms);
break;
case PDF14_END_TRANS_MASK:
code = gx_end_transparency_mask(pis, pdev, ¶ms);
break;
case PDF14_SET_BLEND_PARAMS:
pdf14_set_params(pis, pdev, &pdf14pct->params);
break;
case PDF14_PUSH_TRANS_STATE:
code = gx_push_transparency_state(pis, pdev);
break;
case PDF14_POP_TRANS_STATE:
code = gx_pop_transparency_state(pis, pdev);
break;
}
return code;
}
/*
* The PDF 1.4 compositor is never removed. (We do not have a 'remove
* compositor' method. However the compositor is disabled when we are not
* doing a page which uses PDF 1.4 transparency. This routine is only active
* when the PDF 1.4 compositor is 'disabled'. It checks for reenabling the
* PDF 1.4 compositor. Otherwise it simply passes create compositor requests
* to the targer.
*/
static int
pdf14_forward_create_compositor(gx_device * dev, gx_device * * pcdev,
const gs_composite_t * pct, gs_imager_state * pis,
gs_memory_t * mem)
{
pdf14_device *pdev = (pdf14_device *)dev;
gx_device * tdev = pdev->target;
gx_device * ndev;
int code = 0;
*pcdev = dev;
if (gs_is_pdf14trans_compositor(pct)) {
const gs_pdf14trans_t * pdf14pct = (const gs_pdf14trans_t *) pct;
if (pdf14pct->params.pdf14_op == PDF14_PUSH_DEVICE)
return gx_update_pdf14_compositor(dev, pis, pdf14pct, mem);
return 0;
}
code = dev_proc(tdev, create_compositor)(tdev, &ndev, pct, pis, mem);
if (code < 0)
return code;
pdev->target = ndev;
return 0;
}
/*
* The PDF 1.4 compositor can be handled directly, so just set *pcdev = dev
* and return. Since the gs_pdf14_device only supports the high-level routines
* of the interface, don't bother trying to handle any other compositor.
*/
static int
pdf14_create_compositor(gx_device * dev, gx_device * * pcdev,
const gs_composite_t * pct, gs_imager_state * pis,
gs_memory_t * mem)
{
pdf14_device *p14dev = (pdf14_device *)dev;
if (gs_is_pdf14trans_compositor(pct)) {
const gs_pdf14trans_t * pdf14pct = (const gs_pdf14trans_t *) pct;
*pcdev = dev;
return gx_update_pdf14_compositor(dev, pis, pdf14pct, mem);
} else if (gs_is_overprint_compositor(pct)) {
/* If we had an overprint compositer action, then the
color components that were drawn should be updated.
The overprint compositor logic and its interactions
with the clist is a little odd as it passes uninitialized
values around a fair amount. Hence the forced assignement here.
See gx_spot_colors_set_overprint in gscspace for issues... */
const gs_overprint_t * op_pct = (const gs_overprint_t *) pct;
if (op_pct->params.retain_any_comps && !op_pct->params.retain_spot_comps)
{
p14dev->drawn_comps = op_pct->params.drawn_comps;
} else {
/* Draw everything. If this parameter was not set, clist does not fill it in. */
p14dev->drawn_comps = ( (gx_color_index) 1 << (p14dev->color_info.num_components)) - (gx_color_index) 1;
}
*pcdev = dev;
return 0;
} else
return gx_no_create_compositor(dev, pcdev, pct, pis, mem);
}
static int
pdf14_text_begin(gx_device * dev, gs_imager_state * pis,
const gs_text_params_t * text, gs_font * font,
gx_path * path, const gx_device_color * pdcolor,
const gx_clip_path * pcpath, gs_memory_t * memory,
gs_text_enum_t ** ppenum)
{
int code;
gs_text_enum_t *penum;
if_debug0('v', "[v]pdf14_text_begin\n");
pdf14_set_marking_params(dev, pis);
code = gx_default_text_begin(dev, pis, text, font, path, pdcolor, pcpath,
memory, &penum);
if (code < 0)
return code;
*ppenum = (gs_text_enum_t *)penum;
return code;
}
/*
* Implement copy_mono by filling lots of small rectangles.
*/
static int
pdf14_copy_mono(gx_device * dev,
const byte * base, int sourcex, int sraster, gx_bitmap_id id,
int x, int y, int w, int h, gx_color_index zero, gx_color_index one)
{
const byte *sptr;
const byte *line;
int sbit, first_bit;
int code, sbyte, bit, count;
int run_length, startx, current_bit, bit_value;
gx_color_index current_color;
fit_copy(dev, base, sourcex, sraster, id, x, y, w, h);
line = base + (sourcex >> 3);
sbit = sourcex & 7;
first_bit = 7 - sbit;
/* Loop through the height of the specfied area. */
while (h-- > 0) {
/* Set up for the start of each line of the area. */
sptr = line;
sbyte = *sptr++;
bit = first_bit;
count = w;
run_length = 0;
startx = x;
current_bit = 0;
current_color = zero;
/* Loop across each pixel of a line. */
do {
bit_value = (sbyte >> bit) & 1;
if (bit_value == current_bit) {
/* The value did not change, simply increment our run length */
run_length++;
} else {
/* The value changed, fill the current rectangle. */
if (run_length != 0) {
if (current_color != gx_no_color_index) {
code = (*dev_proc(dev, fill_rectangle))
(dev, startx, y, run_length, 1, current_color);
if (code < 0)
return code;
}
startx += run_length;
}
run_length = 1;
current_color = bit_value ? one : zero;
current_bit = bit_value;
}
/* Move to the next input bit. */
if (bit == 0) {
bit = 7;
sbyte = *sptr++;
}
else
bit--;
} while (--count > 0);
/* Fill the last rectangle in the line. */
if (run_length != 0 && current_color != gx_no_color_index) {
code = (*dev_proc(dev, fill_rectangle))
(dev, startx, y, run_length, 1, current_color);
if (code < 0)
return code;
}
/* Move to the next line */
line += sraster;
y++;
}
return 0;
}
static int
pdf14_fill_rectangle(gx_device * dev,
int x, int y, int w, int h, gx_color_index color)
{
pdf14_device *pdev = (pdf14_device *)dev;
pdf14_buf *buf = pdev->ctx->stack;
fit_fill_xywh(dev, x, y, w, h);
if (w <= 0 || h <= 0)
return 0;
if (buf->knockout)
return pdf14_mark_fill_rectangle_ko_simple(dev, x, y, w, h, color);
else
return pdf14_mark_fill_rectangle(dev, x, y, w, h, color);
}
static int
pdf14_compute_group_device_int_rect(const gs_matrix *ctm,
const gs_rect *pbbox, gs_int_rect *rect)
{
gs_rect dev_bbox;
int code;
code = gs_bbox_transform(pbbox, ctm, &dev_bbox);
if (code < 0)
return code;
rect->p.x = (int)floor(dev_bbox.p.x);
rect->p.y = (int)floor(dev_bbox.p.y);
rect->q.x = (int)ceil(dev_bbox.q.x);
rect->q.y = (int)ceil(dev_bbox.q.y);
return 0;
}
static int
compute_group_device_int_rect(pdf14_device *pdev, gs_int_rect *rect, const gs_rect *pbbox, gs_imager_state *pis)
{
int code = pdf14_compute_group_device_int_rect(&ctm_only(pis), pbbox, rect);
if (code < 0)
return code;
rect_intersect(*rect, pdev->ctx->rect);
/* Make sure the rectangle is not anomalous (q < p) -- see gsrect.h */
if (rect->q.x < rect->p.x)
rect->q.x = rect->p.x;
if (rect->q.y < rect->p.y)
rect->q.y = rect->p.y;
return 0;
}
static int
pdf14_begin_transparency_group(gx_device *dev,
const gs_transparency_group_params_t *ptgp,
const gs_rect *pbbox,
gs_imager_state *pis,
gs_transparency_state_t **ppts,
gs_memory_t *mem)
{
pdf14_device *pdev = (pdf14_device *)dev;
double alpha = pis->opacity.alpha * pis->shape.alpha;
gs_int_rect rect;
int code;
bool isolated;
bool sep_target = (strcmp(pdev->dname, "pdf14cmykspot") == 0);
int group_color_numcomps;
gs_transparency_color_t group_color;
/* If the target device supports separations, then
we should should NOT create the group. The exception to this
rule would be if we just popped a transparency mask */
code = compute_group_device_int_rect(pdev, &rect, pbbox, pis);
if (code < 0)
return code;
if_debug4('v', "[v]pdf14_begin_transparency_group, I = %d, K = %d, alpha = %g, bm = %d\n",
ptgp->Isolated, ptgp->Knockout, alpha, pis->blend_mode);
/* If the group color is unknown, then we must use the previous group color
space or the device process color space */
if (ptgp->group_color == UNKNOWN){
if (pdev->ctx->stack){
/* Use previous group color space */
group_color_numcomps = pdev->ctx->stack->n_chan-1; /* Remove alpha */
} else {
/* Use process color space */
group_color_numcomps = pdev->color_info.num_components;
}
switch (group_color_numcomps) {
case 1:
group_color = GRAY_SCALE;
break;
case 3:
group_color = DEVICE_RGB;
break;
case 4:
group_color = DEVICE_CMYK;
break;
default:
/* We can end up here if we are in
a deviceN color space and
we have a sep output device */
group_color = DEVICEN;
break;
}
} else {
group_color_numcomps = ptgp->group_color_numcomps;
group_color = ptgp->group_color;
}
/* If needed, update the color mapping procs. But only if we dont have a sep device.
The exception would be if we are in doing the group for a soft mask */
if (!sep_target) {
code = pdf14_update_device_color_procs(dev,group_color,pis);
} else {
code = 0;
group_color_numcomps = pdev->color_info.num_components;
}
/* Note that our initial device buffer may have had a different color space
than the first transparency group. In such a case, we really should force
this first group to be isolated, anytime that the parent color space is
different than its child group, it should be isolated, per the PDF spec */
if (code == 1){
isolated = true;
if_debug0('v', "[v]Transparency group color space change\n");
} else {
isolated = ptgp->Isolated;
}
if (code < 0)
return code;
code = pdf14_push_transparency_group(pdev->ctx, &rect,
isolated, ptgp->Knockout,
(byte)floor (255 * alpha + 0.5),
(byte)floor (255 * pis->shape.alpha + 0.5),
pis->blend_mode, ptgp->idle,
ptgp->mask_id,group_color_numcomps);
return code;
}
static int
pdf14_end_transparency_group(gx_device *dev,
gs_imager_state *pis,
gs_transparency_state_t **ppts)
{
pdf14_device *pdev = (pdf14_device *)dev;
int code;
pdf14_parent_color_t *parent_color;
if_debug0('v', "[v]pdf14_end_transparency_group\n");
vd_get_dc('c');
vd_set_shift(0, 0);
vd_set_scale(0.01);
vd_set_origin(0, 0);
vd_erase(RGB(192, 192, 192));
code = pdf14_pop_transparency_group(pdev->ctx, pdev->blend_procs,pdev->color_info.num_components);
/* May need to reset some color stuff related
* to a mismatch between the parents color space
* and the group blending space */
parent_color = &(pdev->ctx->stack->parent_color_info_procs);
if (!(parent_color->parent_color_mapping_procs == NULL &&
parent_color->parent_color_comp_index == NULL)) {
pis->get_cmap_procs = parent_color->get_cmap_procs;
gx_set_cmap_procs(pis, dev);
pdev->procs.get_color_mapping_procs = parent_color->parent_color_mapping_procs;
pdev->procs.get_color_comp_index = parent_color->parent_color_comp_index;
pdev->color_info.polarity = parent_color->polarity;
pdev->color_info.num_components = parent_color->num_components;
pdev->blend_procs = parent_color->parent_blending_procs;
pdev->ctx->additive = parent_color->isadditive;
pdev->pdf14_procs = parent_color->unpack_procs;
pdev->color_info.depth = parent_color->depth;
memcpy(&(pdev->color_info.comp_bits),&(parent_color->comp_bits),GX_DEVICE_COLOR_MAX_COMPONENTS);
memcpy(&(pdev->color_info.comp_shift),&(parent_color->comp_shift),GX_DEVICE_COLOR_MAX_COMPONENTS);
parent_color->get_cmap_procs = NULL;
parent_color->parent_color_comp_index = NULL;
parent_color->parent_color_mapping_procs = NULL;
}
vd_release_dc;
return code;
}
static int
pdf14_update_device_color_procs(gx_device *dev,
gs_transparency_color_t group_color,
gs_imager_state *pis)
{
pdf14_device *pdevproto;
pdf14_device *pdev = (pdf14_device *)dev;
const pdf14_procs_t *new_14procs;
pdf14_parent_color_t *parent_color_info;
gx_color_polarity_t new_polarity;
int new_num_comps;
bool new_additive;
byte new_depth;
byte comp_bits[] = {0,0,0,0};
byte comp_shift[] = {0,0,0,0};
int k;
if (pdev->ctx->stack != NULL){
parent_color_info = &(pdev->ctx->stack->parent_color_info_procs);
} else {
/* This should not occur */
return_error(gs_error_undefined);
}
if_debug0('v', "[v]pdf14_update_device_color_procs\n");
/* Update the device procs at this
stage. Many of the procs are based upon the color
space of the device. We want to remain in
the color space defined by the color space of
the soft mask or transparency group as opposed to the
device color space.
Later, when we pop the softmask we will collapse it
to a single band and then compose with it
to the device color space (or the parent layer
space). In the case where we pop an isolated transparency
group, we will do the blending in the proper color
space and then transform the data when we pop the group.
Remember that only isolated groups can have color spaces
that are different than their parent. */
parent_color_info->get_cmap_procs = NULL;
parent_color_info->parent_color_mapping_procs = NULL;
parent_color_info->parent_color_comp_index = NULL;
switch (group_color) {
case GRAY_SCALE:
new_polarity = GX_CINFO_POLARITY_ADDITIVE;
new_num_comps = 1;
pdevproto = (pdf14_device *)&gs_pdf14_Gray_device;
new_additive = true;
new_14procs = &gray_pdf14_procs;
new_depth = 8;
comp_bits[0] = 8;
comp_shift[0] = 0;
break;
case DEVICE_RGB:
case CIE_XYZ:
new_polarity = GX_CINFO_POLARITY_ADDITIVE;
new_num_comps = 3;
pdevproto = (pdf14_device *)&gs_pdf14_RGB_device;
new_additive = true;
new_14procs = &rgb_pdf14_procs;
new_depth = 24;
for (k = 0; k < 3; k++) {
comp_bits[k] = 8;
comp_shift[k] = (2-k)*8;
}
break;
case DEVICE_CMYK:
new_polarity = GX_CINFO_POLARITY_SUBTRACTIVE;
new_num_comps = 4;
pdevproto = (pdf14_device *)&gs_pdf14_CMYK_device;
new_additive = false;
/* This is needed due to the mismatched compressed encode decode
between the device procs and the pdf14 procs */
if (dev->color_info.num_components > 4){
new_14procs = &cmykspot_pdf14_procs;
} else {
new_14procs = &cmyk_pdf14_procs;
}
new_depth = 32;
for (k = 0; k < 4; k++) {
comp_bits[k] = 8;
comp_shift[k] = (3-k)*8;
}
break;
default:
return_error(gs_error_rangecheck);
break;
}
if_debug2('v', "[v]pdf14_update_device_color_procs,num_components_old = %d num_components_new = %d\n",
pdev->color_info.num_components,new_num_comps);
/* Save the old information */
parent_color_info->get_cmap_procs = pis->get_cmap_procs;
parent_color_info->parent_color_mapping_procs =
pdev->procs.get_color_mapping_procs;
parent_color_info->parent_color_comp_index =
pdev->procs.get_color_comp_index;
parent_color_info->parent_blending_procs = pdev->blend_procs;
parent_color_info->polarity = pdev->color_info.polarity;
parent_color_info->num_components = pdev->color_info.num_components;
parent_color_info->isadditive = pdev->ctx->additive;
parent_color_info->unpack_procs = pdev->pdf14_procs;
parent_color_info->depth = pdev->color_info.depth;
memcpy(&(parent_color_info->comp_bits),&(pdev->color_info.comp_bits),GX_DEVICE_COLOR_MAX_COMPONENTS);
memcpy(&(parent_color_info->comp_shift),&(pdev->color_info.comp_shift),GX_DEVICE_COLOR_MAX_COMPONENTS);
/* Set new information */
pis->get_cmap_procs = pdf14_get_cmap_procs_group;
gx_set_cmap_procs(pis, dev);
pdev->procs.get_color_mapping_procs =
pdevproto->static_procs->get_color_mapping_procs;
pdev->procs.get_color_comp_index =
pdevproto->static_procs->get_color_comp_index;
pdev->blend_procs = pdevproto->blend_procs;
pdev->color_info.polarity = new_polarity;
pdev->color_info.num_components = new_num_comps;
pdev->ctx->additive = new_additive;
pdev->pdf14_procs = new_14procs;
pdev->color_info.depth = new_depth;
memset(&(pdev->color_info.comp_bits),0,GX_DEVICE_COLOR_MAX_COMPONENTS);
memset(&(pdev->color_info.comp_shift),0,GX_DEVICE_COLOR_MAX_COMPONENTS);
memcpy(&(pdev->color_info.comp_bits),comp_bits,4);
memcpy(&(pdev->color_info.comp_shift),comp_shift,4);
return(1); /* Lets us detect that we did do an update */
}
/* A new version that works with the color_procs stack
for transparency groups */
static int
pdf14_update_device_color_procs_push_c(gx_device *dev,
gs_transparency_color_t group_color,
gs_imager_state *pis)
{
pdf14_device *pdevproto;
pdf14_device *pdev = (pdf14_device *)dev;
gx_device_clist_writer * cldev = (gx_device_clist_writer *)pdev->pclist_device;
const pdf14_procs_t *new_14procs;
bool update_color_info;
gx_color_polarity_t new_polarity;
int new_num_comps;
bool new_additive;
byte new_depth;
byte comp_bits[] = {0,0,0,0};
byte comp_shift[] = {0,0,0,0};
int k;
if_debug0('v', "[v]pdf14_update_device_color_procs_push_c\n");
/* Check if we need to alter the device procs at this
stage. Many of the procs are based upon the color
space of the device. We want to remain in
the color space defined by the color space of
the soft mask or transparency group as opposed to the
device color space.
Later, when we pop the softmask we will collapse it
to a single band and then compose with it
to the device color space (or the parent layer
space). In the case where we pop an isolated transparency
group, we will do the blending in the proper color
space and then transform the data when we pop the group.
Remember that only isolated groups can have color spaces
that are different than their parent. */
update_color_info = false;
switch (group_color) {
case GRAY_SCALE:
if (pdev->color_info.num_components != 1){
update_color_info = true;
new_polarity = GX_CINFO_POLARITY_ADDITIVE;
new_num_comps = 1;
pdevproto = (pdf14_device *)&gs_pdf14_Gray_device;
new_additive = true;
new_14procs = &gray_pdf14_procs;
new_depth = 8;
comp_bits[0] = 8;
comp_shift[0] = 0;
}
break;
case DEVICE_RGB:
case CIE_XYZ:
if (pdev->color_info.num_components != 3){
update_color_info = true;
new_polarity = GX_CINFO_POLARITY_ADDITIVE;
new_num_comps = 3;
pdevproto = (pdf14_device *)&gs_pdf14_RGB_device;
new_additive = true;
new_14procs = &rgb_pdf14_procs;
new_depth = 24;
for (k = 0; k < 3; k++) {
comp_bits[k] = 8;
comp_shift[k] = (2-k)*8;
}
}
break;
case DEVICE_CMYK:
if (pdev->color_info.num_components != 4){
update_color_info = true;
new_polarity = GX_CINFO_POLARITY_SUBTRACTIVE;
new_num_comps = 4;
pdevproto = (pdf14_device *)&gs_pdf14_CMYK_device;
new_additive = false;
/* This is needed due to the mismatched compressed encode decode
between the device procs and the pdf14 procs */
if (dev->color_info.num_components > 4){
new_14procs = &cmykspot_pdf14_procs;
} else {
new_14procs = &cmyk_pdf14_procs;
}
new_depth = 32;
for (k = 0; k < 4; k++) {
comp_bits[k] = 8;
comp_shift[k] = (3-k)*8;
}
}
break;
default:
return_error(gs_error_rangecheck);
break;
}
if (update_color_info){
if_debug2('v', "[v]pdf14_update_device_color_procs_push_c,num_components_old = %d num_components_new = %d\n",
pdev->color_info.num_components,new_num_comps);
/* Set new information in the device */
pis->get_cmap_procs = pdf14_get_cmap_procs_group;
gx_set_cmap_procs(pis, dev);
pdev->procs.get_color_mapping_procs =
pdevproto->static_procs->get_color_mapping_procs;
pdev->procs.get_color_comp_index =
pdevproto->static_procs->get_color_comp_index;
pdev->blend_procs = pdevproto->blend_procs;
pdev->color_info.polarity = new_polarity;
pdev->color_info.num_components = new_num_comps;
pdev->pdf14_procs = new_14procs;
pdev->color_info.depth = new_depth;
memset(&(pdev->color_info.comp_bits),0,GX_DEVICE_COLOR_MAX_COMPONENTS);
memset(&(pdev->color_info.comp_shift),0,GX_DEVICE_COLOR_MAX_COMPONENTS);
memcpy(&(pdev->color_info.comp_bits),comp_bits,4);
memcpy(&(pdev->color_info.comp_shift),comp_shift,4);
cldev->clist_color_info.depth = pdev->color_info.depth;
cldev->clist_color_info.polarity = pdev->color_info.polarity;
cldev->clist_color_info.num_components = pdev->color_info.num_components;
if (pdev->ctx)
{
pdev->ctx->additive = new_additive;
}
return(1); /* Lets us detect that we did do an update */
}
if_debug0('v', "[v]procs not updated\n");
return 0;
}
static int
pdf14_update_device_color_procs_pop_c(gx_device *dev,gs_imager_state *pis)
{
pdf14_device *pdev = (pdf14_device *)dev;
pdf14_parent_color_t *parent_color = pdev->trans_group_parent_cmap_procs;
gx_device_clist_writer * cldev = (gx_device_clist_writer *)pdev->pclist_device;
if_debug0('v', "[v]pdf14_update_device_color_procs_pop_c\n");
/* The color procs are always pushed. Simply restore them. */
if (!(parent_color->parent_color_mapping_procs == NULL &&
parent_color->parent_color_comp_index == NULL)) {
if_debug2('v', "[v]pdf14_update_device_color_procs_pop_c,num_components_old = %d num_components_new = %d\n",
pdev->color_info.num_components,parent_color->num_components);
pis->get_cmap_procs = parent_color->get_cmap_procs;
gx_set_cmap_procs(pis, dev);
pdev->procs.get_color_mapping_procs = parent_color->parent_color_mapping_procs;
pdev->procs.get_color_comp_index = parent_color->parent_color_comp_index;
pdev->color_info.polarity = parent_color->polarity;
pdev->color_info.depth = parent_color->depth;
pdev->color_info.num_components = parent_color->num_components;
pdev->blend_procs = parent_color->parent_blending_procs;
pdev->pdf14_procs = parent_color->unpack_procs;
memcpy(&(pdev->color_info.comp_bits),&(parent_color->comp_bits),GX_DEVICE_COLOR_MAX_COMPONENTS);
memcpy(&(pdev->color_info.comp_shift),&(parent_color->comp_shift),GX_DEVICE_COLOR_MAX_COMPONENTS);
/* clist writer fill rect has no access to imager state */
/* and it forwards the target device. this information */
/* is passed along to use in this case */
cldev->clist_color_info.depth = pdev->color_info.depth;
cldev->clist_color_info.polarity = pdev->color_info.polarity;
cldev->clist_color_info.num_components = pdev->color_info.num_components;
memcpy(&(cldev->clist_color_info.comp_bits),&(parent_color->comp_bits),GX_DEVICE_COLOR_MAX_COMPONENTS);
memcpy(&(cldev->clist_color_info.comp_shift),&(parent_color->comp_shift),GX_DEVICE_COLOR_MAX_COMPONENTS);
if (pdev->ctx){
pdev->ctx->additive = parent_color->isadditive;
}
if_debug0('v', "[v]procs updated\n");
} else {
if_debug0('v', "[v]pdf14_update_device_color_procs_pop_c ERROR \n");
}
return 0;
}
/* When a transparency group is pushed, the parent colorprocs
are initialized. Since the color mapping procs are
all based upon the device, we must have a nested list
based upon the transparency group color space. This
nesting must be outside the nested ctx structures
to allow the nesting for the clist writer */
static void
pdf14_push_parent_color(gx_device *dev, const gs_imager_state *pis)
{
pdf14_device *pdev = (pdf14_device *)dev;
pdf14_parent_color_t *new_parent_color;
if_debug0('v', "[v]pdf14_push_parent_color\n");
/* Allocate a new one */
new_parent_color = gs_alloc_struct(dev->memory, pdf14_parent_color_t,&st_pdf14_clr,
"pdf14_clr_new");
/* Link to old one */
new_parent_color->previous = pdev->trans_group_parent_cmap_procs;
/* Reassign new one to dev */
pdev->trans_group_parent_cmap_procs = new_parent_color;
/* Initialize with values */
new_parent_color->get_cmap_procs = pis->get_cmap_procs;
new_parent_color->parent_color_mapping_procs =
pdev->procs.get_color_mapping_procs;
new_parent_color->parent_color_comp_index =
pdev->procs.get_color_comp_index;
new_parent_color->parent_blending_procs = pdev->blend_procs;
new_parent_color->polarity = pdev->color_info.polarity;
new_parent_color->num_components = pdev->color_info.num_components;
new_parent_color->unpack_procs = pdev->pdf14_procs;
new_parent_color->depth = pdev->color_info.depth;
memcpy(&(new_parent_color->comp_bits),&(pdev->color_info.comp_bits),GX_DEVICE_COLOR_MAX_COMPONENTS);
memcpy(&(new_parent_color->comp_shift),&(pdev->color_info.comp_shift),GX_DEVICE_COLOR_MAX_COMPONENTS);
/* isadditive is only used in ctx */
if (pdev->ctx)
{
new_parent_color->isadditive = pdev->ctx->additive;
}
}
/* When a transparency group is popped, the parent colorprocs
must be restored. Since the color mapping procs are
all based upon the device, we must have a nested list
based upon the transparency group color space. This
nesting must be outside the nested ctx structures
to allow the nesting for the clist writer */
static void
pdf14_pop_parent_color(gx_device *dev, const gs_imager_state *pis)
{
pdf14_device *pdev = (pdf14_device *)dev;
pdf14_parent_color_t *old_parent_color_info = pdev->trans_group_parent_cmap_procs;
if_debug0('v', "[v]pdf14_pop_parent_color\n");
/* Update the link */
pdev->trans_group_parent_cmap_procs = old_parent_color_info->previous;
/* Free the old one */
gs_free_object(dev->memory, old_parent_color_info, "pdf14_clr_free");
}
static int
pdf14_begin_transparency_mask(gx_device *dev,
const gx_transparency_mask_params_t *ptmp,
const gs_rect *pbbox,
gs_imager_state *pis,
gs_transparency_state_t **ppts,
gs_memory_t *mem)
{
pdf14_device *pdev = (pdf14_device *)dev;
byte bg_alpha = 255;
byte *transfer_fn = (byte *)gs_alloc_bytes(pdev->ctx->memory, 256,
"pdf14_begin_transparency_mask");
gs_int_rect rect;
int code;
int group_color_numcomps;
gs_transparency_color_t group_color;
if (transfer_fn == NULL)
return_error(gs_error_VMerror);
code = compute_group_device_int_rect(pdev, &rect, pbbox, pis);
if (code < 0)
return code;
if (ptmp->Background_components)
bg_alpha = (int)(255 * ptmp->GrayBackground + 0.5);
if_debug1('v', "pdf14_begin_transparency_mask, bg_alpha = %d\n", bg_alpha);
memcpy(transfer_fn, ptmp->transfer_fn, size_of(ptmp->transfer_fn));
/* If the group color is unknown, then we must use the previous group color
space or the device process color space */
if (ptmp->group_color == UNKNOWN){
if (pdev->ctx->stack){
/* Use previous group color space */
group_color_numcomps = pdev->ctx->stack->n_chan-1; /* Remove alpha */
} else {
/* Use process color space */
group_color_numcomps = pdev->color_info.num_components;
}
switch (group_color_numcomps) {
case 1:
group_color = GRAY_SCALE;
break;
case 3:
group_color = DEVICE_RGB;
break;
case 4:
group_color = DEVICE_CMYK;
break;
default:
/* We can end up here if we are in
a deviceN color space and
we have a sep output device */
group_color = DEVICEN;
break;
}
} else {
group_color = ptmp->group_color;
group_color_numcomps = ptmp->group_color_numcomps;
}
/* Always update the color mapping procs. Otherwise we end up
fowarding to the target device. */
code = pdf14_update_device_color_procs(dev,group_color,pis);
if (code < 0)
return code;
/* Note that the soft mask always follows the group color requirements even
when we have a separable device */
return pdf14_push_transparency_mask(pdev->ctx, &rect, bg_alpha,
transfer_fn, ptmp->idle, ptmp->replacing,
ptmp->mask_id, ptmp->subtype,
ptmp->SMask_is_CIE, group_color_numcomps,
ptmp->Background_components, ptmp->Background,
ptmp->GrayBackground);
}
static int
pdf14_end_transparency_mask(gx_device *dev, gs_imager_state *pis,
gs_transparency_mask_t **pptm)
{
pdf14_device *pdev = (pdf14_device *)dev;
pdf14_parent_color_t *parent_color;
int ok;
if_debug0('v', "pdf14_end_transparency_mask\n");
ok = pdf14_pop_transparency_mask(pdev->ctx);
/* May need to reset some color stuff related
* to a mismatch between the Smask color space
* and the Smask blending space */
if (pdev->ctx->stack != NULL ) {
parent_color = &(pdev->ctx->stack->parent_color_info_procs);
if (!(parent_color->parent_color_mapping_procs == NULL &&
parent_color->parent_color_comp_index == NULL)) {
pis->get_cmap_procs = parent_color->get_cmap_procs;;
gx_set_cmap_procs(pis, dev);
pdev->procs.get_color_mapping_procs = parent_color->parent_color_mapping_procs;
pdev->procs.get_color_comp_index = parent_color->parent_color_comp_index;
pdev->color_info.polarity = parent_color->polarity;
pdev->color_info.num_components = parent_color->num_components;
pdev->color_info.depth = parent_color->depth;
pdev->blend_procs = parent_color->parent_blending_procs;
pdev->ctx->additive = parent_color->isadditive;
pdev->pdf14_procs = parent_color->unpack_procs;
parent_color->get_cmap_procs = NULL;
parent_color->parent_color_comp_index = NULL;
parent_color->parent_color_mapping_procs = NULL;
memcpy(&(pdev->color_info.comp_bits),&(parent_color->comp_bits),GX_DEVICE_COLOR_MAX_COMPONENTS);
memcpy(&(pdev->color_info.comp_shift),&(parent_color->comp_shift),GX_DEVICE_COLOR_MAX_COMPONENTS);
}
}
return ok;
}
static int
pdf14_mark_fill_rectangle(gx_device * dev,
int x, int y, int w, int h, gx_color_index color)
{
pdf14_device *pdev = (pdf14_device *)dev;
pdf14_buf *buf = pdev->ctx->stack;
int i, j, k;
byte *line, *dst_ptr;
byte src[PDF14_MAX_PLANES];
byte dst[PDF14_MAX_PLANES];
gs_blend_mode_t blend_mode = pdev->blend_mode;
bool additive = pdev->ctx->additive;
int rowstride = buf->rowstride;
int planestride = buf->planestride;
bool has_alpha_g = buf->has_alpha_g;
bool has_shape = buf->has_shape;
int num_chan = buf->n_chan;
int num_comp = num_chan - 1;
int shape_off = num_chan * planestride;
int alpha_g_off = shape_off + (has_shape ? planestride : 0);
bool overprint = pdev->overprint;
gx_color_index drawn_comps = pdev->drawn_comps;
gx_color_index comps;
byte shape = 0; /* Quiet compiler. */
byte src_alpha;
if (buf->data == NULL)
return 0;
/* NB: gx_color_index is 4 or 8 bytes */
if (sizeof(color) <= sizeof(ulong))
if_debug8('v', "[v]pdf14_mark_fill_rectangle, (%d, %d), %d x %d color = %lx bm %d, nc %d, overprint %d\n",
x, y, w, h, (ulong)color, blend_mode, num_chan, overprint);
else
if_debug9('v', "[v]pdf14_mark_fill_rectangle, (%d, %d), %d x %d color = %08lx%08lx bm %d, nc %d, overprint %d\n",
x, y, w, h,
(ulong)(color >> 8*(sizeof(color) - sizeof(ulong))), (ulong)color,
blend_mode, num_chan, overprint);
/*
* Unpack the gx_color_index values. Complement the components for subtractive
* color spaces.
*/
pdev->pdf14_procs->unpack_color(num_comp, color, pdev, src);
src_alpha = src[num_comp] = (byte)floor (255 * pdev->alpha + 0.5);
if (has_shape)
shape = (byte)floor (255 * pdev->shape + 0.5);
if (x < buf->rect.p.x) {
w += x - buf->rect.p.x;
x = buf->rect.p.x;
}
if (y < buf->rect.p.y) {
h += y - buf->rect.p.y;
y = buf->rect.p.y;
}
if (x + w > buf->rect.q.x) w = buf->rect.q.x - x;
if (y + h > buf->rect.q.y) h = buf->rect.q.y - y;
if (x < buf->bbox.p.x) buf->bbox.p.x = x;
if (y < buf->bbox.p.y) buf->bbox.p.y = y;
if (x + w > buf->bbox.q.x) buf->bbox.q.x = x + w;
if (y + h > buf->bbox.q.y) buf->bbox.q.y = y + h;
line = buf->data + (x - buf->rect.p.x) + (y - buf->rect.p.y) * rowstride;
for (j = 0; j < h; ++j) {
dst_ptr = line;
for (i = 0; i < w; ++i) {
/* Complement the components for subtractive color spaces */
if (additive) {
for (k = 0; k < num_chan; ++k)
dst[k] = dst_ptr[k * planestride];
}
else { /* Complement the components for subtractive color spaces */
for (k = 0; k < num_comp; ++k)
dst[k] = 255 - dst_ptr[k * planestride];
dst[num_comp] = dst_ptr[num_comp * planestride];
}
art_pdf_composite_pixel_alpha_8(dst, src, num_comp,
blend_mode, pdev->blend_procs);
/* Complement the results for subtractive color spaces */
if (additive) {
for (k = 0; k < num_chan; ++k)
dst_ptr[k * planestride] = dst[k];
} else {
if (overprint) {
for (k = 0, comps = drawn_comps; comps != 0; ++k, comps >>= 1) {
if ((comps & 0x1) != 0) {
dst_ptr[k * planestride] = 255 - dst[k];
}
}
/* The alpha channel */
dst_ptr[num_comp * planestride] = dst[num_comp];
} else {
for (k = 0; k < num_comp; ++k)
dst_ptr[k * planestride] = 255 - dst[k];
dst_ptr[num_comp * planestride] = dst[num_comp];
}
}
if (has_alpha_g) {
int tmp = (255 - dst_ptr[alpha_g_off]) * (255 - src_alpha) + 0x80;
dst_ptr[alpha_g_off] = 255 - ((tmp + (tmp >> 8)) >> 8);
}
if (has_shape) {
int tmp = (255 - dst_ptr[shape_off]) * (255 - shape) + 0x80;
dst_ptr[shape_off] = 255 - ((tmp + (tmp >> 8)) >> 8);
}
++dst_ptr;
}
line += rowstride;
}
#if 0
/* #if RAW_DUMP */
/* Dump the current buffer to see what we have. */
if(global_index/10.0 == (int) (global_index/10.0) )
dump_raw_buffer(pdev->ctx->stack->rect.q.y-pdev->ctx->stack->rect.p.y,
pdev->ctx->stack->rect.q.x-pdev->ctx->stack->rect.p.x,
pdev->ctx->stack->n_planes,
pdev->ctx->stack->planestride, pdev->ctx->stack->rowstride,
"Draw_Rect",pdev->ctx->stack->data);
global_index++;
#endif
return 0;
}
static int
pdf14_mark_fill_rectangle_ko_simple(gx_device * dev,
int x, int y, int w, int h, gx_color_index color)
{
pdf14_device *pdev = (pdf14_device *)dev;
pdf14_buf *buf = pdev->ctx->stack;
int i, j, k;
byte *line, *dst_ptr;
byte src[PDF14_MAX_PLANES];
byte dst[PDF14_MAX_PLANES];
int rowstride = buf->rowstride;
int planestride = buf->planestride;
int num_chan = buf->n_chan;
int num_comp = num_chan - 1;
int shape_off = num_chan * planestride;
bool has_shape = buf->has_shape;
bool additive = pdev->ctx->additive;
if (buf->data == NULL)
return 0;
if (sizeof(color) <= sizeof(ulong))
if_debug6('v', "[v]pdf14_mark_fill_rectangle_ko_simple, (%d, %d), %d x %d color = %lx, nc %d,\n",
x, y, w, h, (ulong)color, num_chan);
else
if_debug7('v', "[v]pdf14_mark_fill_rectangle_ko_simple, (%d, %d), %d x %d color = %8lx%08lx, nc %d,\n",
x, y, w, h,
(ulong)(color >> 8*(sizeof(color) - sizeof(ulong))), (ulong)color,
num_chan);
/*
* Unpack the gx_color_index values. Complement the components for subtractive
* color spaces.
*/
pdev->pdf14_procs->unpack_color(num_comp, color, pdev, src);
src[num_comp] = (byte)floor (255 * pdev->alpha + 0.5);
if (x < buf->rect.p.x) {
w += x - buf->rect.p.x;
x = buf->rect.p.x;
}
if (y < buf->rect.p.y) {
h += y - buf->rect.p.y;
y = buf->rect.p.y;
}
if (x + w > buf->rect.q.x) w = buf->rect.q.x - x;
if (y + h > buf->rect.q.y) h = buf->rect.q.y - y;
if (x < buf->bbox.p.x) buf->bbox.p.x = x;
if (y < buf->bbox.p.y) buf->bbox.p.y = y;
if (x + w > buf->bbox.q.x) buf->bbox.q.x = x + w;
if (y + h > buf->bbox.q.y) buf->bbox.q.y = y + h;
line = buf->data + (x - buf->rect.p.x) + (y - buf->rect.p.y) * rowstride;
for (j = 0; j < h; ++j) {
dst_ptr = line;
for (i = 0; i < w; ++i) {
/* Complement the components for subtractive color spaces */
if (additive) {
for (k = 0; k < num_chan; ++k)
dst[k] = dst_ptr[k * planestride];
}
else {
for (k = 0; k < num_comp; ++k)
dst[k] = 255 - dst_ptr[k * planestride];
dst[num_comp] = dst_ptr[num_comp * planestride];
}
art_pdf_composite_knockout_simple_8(dst,
has_shape ? dst_ptr + shape_off : NULL, src, num_comp, 255);
/* ToDo: Review use of shape and opacity above. */
/* Complement the results for subtractive color spaces */
if (additive) {
for (k = 0; k < num_chan; ++k)
dst_ptr[k * planestride] = dst[k];
}
else {
for (k = 0; k < num_comp; ++k)
dst_ptr[k * planestride] = 255 - dst[k];
dst_ptr[num_comp * planestride] = dst[num_comp];
}
++dst_ptr;
}
line += rowstride;
}
return 0;
}
/**
* Here we have logic to override the cmap_procs with versions that
* do not apply the transfer function. These copies should track the
* versions in gxcmap.c.
**/
static cmap_proc_gray(pdf14_cmap_gray_direct);
static cmap_proc_rgb(pdf14_cmap_rgb_direct);
static cmap_proc_cmyk(pdf14_cmap_cmyk_direct);
static cmap_proc_gray(pdf14_cmap_gray_direct_group);
static cmap_proc_rgb(pdf14_cmap_rgb_direct_group);
static cmap_proc_cmyk(pdf14_cmap_cmyk_direct_group);
static cmap_proc_rgb_alpha(pdf14_cmap_rgb_alpha_direct);
static cmap_proc_separation(pdf14_cmap_separation_direct);
static cmap_proc_devicen(pdf14_cmap_devicen_direct);
static cmap_proc_is_halftoned(pdf14_cmap_is_halftoned);
static const gx_color_map_procs pdf14_cmap_many = {
pdf14_cmap_gray_direct,
pdf14_cmap_rgb_direct,
pdf14_cmap_cmyk_direct,
pdf14_cmap_rgb_alpha_direct,
pdf14_cmap_separation_direct,
pdf14_cmap_devicen_direct,
pdf14_cmap_is_halftoned
};
static const gx_color_map_procs pdf14_cmap_many_group = {
pdf14_cmap_gray_direct_group,
pdf14_cmap_rgb_direct_group,
pdf14_cmap_cmyk_direct_group,
pdf14_cmap_rgb_alpha_direct,
pdf14_cmap_separation_direct,
pdf14_cmap_devicen_direct,
pdf14_cmap_is_halftoned
};
/**
* Note: copied from gxcmap.c because it's inlined.
**/
static inline void
map_components_to_colorants(const frac * pcc,
const gs_devicen_color_map * pcolor_component_map, frac * plist)
{
int i = pcolor_component_map->num_colorants - 1;
int pos;
/* Clear all output colorants first */
for (; i >= 0; i--) {
plist[i] = frac_0;
}
/* Map color components into output list */
for (i = pcolor_component_map->num_components - 1; i >= 0; i--) {
pos = pcolor_component_map->color_map[i];
if (pos >= 0)
plist[pos] = pcc[i];
}
}
static void
pdf14_cmap_gray_direct(frac gray, gx_device_color * pdc, const gs_imager_state * pis,
gx_device * dev, gs_color_select_t select)
{
int i, ncomps = dev->color_info.num_components;
frac cm_comps[GX_DEVICE_COLOR_MAX_COMPONENTS];
gx_color_value cv[GX_DEVICE_COLOR_MAX_COMPONENTS];
gx_color_index color;
/* map to the color model */
dev_proc(dev, get_color_mapping_procs)(dev)->map_gray(dev, gray, cm_comps);
for (i = 0; i < ncomps; i++)
cv[i] = frac2cv(cm_comps[i]);
/* encode as a color index */
color = dev_proc(dev, encode_color)(dev, cv);
/* check if the encoding was successful; we presume failure is rare */
if (color != gx_no_color_index)
color_set_pure(pdc, color);
}
static void
pdf14_cmap_rgb_direct(frac r, frac g, frac b, gx_device_color * pdc,
const gs_imager_state * pis, gx_device * dev, gs_color_select_t select)
{
int i, ncomps = dev->color_info.num_components;
frac cm_comps[GX_DEVICE_COLOR_MAX_COMPONENTS];
gx_color_value cv[GX_DEVICE_COLOR_MAX_COMPONENTS];
gx_color_index color;
/* map to the color model */
dev_proc(dev, get_color_mapping_procs)(dev)->map_rgb(dev, pis, r, g, b, cm_comps);
for (i = 0; i < ncomps; i++)
cv[i] = frac2cv(cm_comps[i]);
/* encode as a color index */
color = dev_proc(dev, encode_color)(dev, cv);
/* check if the encoding was successful; we presume failure is rare */
if (color != gx_no_color_index)
color_set_pure(pdc, color);
}
static void
pdf14_cmap_cmyk_direct(frac c, frac m, frac y, frac k, gx_device_color * pdc,
const gs_imager_state * pis, gx_device * dev, gs_color_select_t select)
{
int i, ncomps = dev->color_info.num_components;
frac cm_comps[GX_DEVICE_COLOR_MAX_COMPONENTS];
gx_color_value cv[GX_DEVICE_COLOR_MAX_COMPONENTS];
gx_color_index color;
/* map to the color model */
dev_proc(dev, get_color_mapping_procs)(dev)->map_cmyk(dev, c, m, y, k, cm_comps);
for (i = 0; i < ncomps; i++)
cv[i] = frac2cv(cm_comps[i]);
color = dev_proc(dev, encode_color)(dev, cv);
if (color != gx_no_color_index)
color_set_pure(pdc, color);
}
/* color mapping for when we have an smask or a isolated transparency group with another color space */
static void
pdf14_cmap_gray_direct_group(frac gray, gx_device_color * pdc, const gs_imager_state * pis,
gx_device * dev, gs_color_select_t select)
{
int i, ncomps = dev->color_info.num_components;
frac cm_comps[GX_DEVICE_COLOR_MAX_COMPONENTS];
gx_color_value cv[GX_DEVICE_COLOR_MAX_COMPONENTS];
gx_color_index color;
gx_device *trans_device;
/* We may be coming from the clist writer
which often forwards us the target device.
If this occurs we actually need to get to
the color space defined by the transparency group
and we use the operators defined by the transparency device
to do the job.
*/
if (pis->trans_device != NULL){
trans_device = pis->trans_device;
} else {
trans_device = dev;
}
ncomps = trans_device->color_info.num_components;
/* If we are doing concretization of colors in an SMask or isolated group
then just return the color as is */
if (ncomps == 1 ){
cv[0] = frac2cv(gray);
/* encode as a color index */
color = pdf14_encode_smask_color(trans_device,cv,1);
/* check if the encoding was successful; we presume failure is rare */
if (color != gx_no_color_index)
color_set_pure(pdc, color);
} else {
/* map to the color model */
dev_proc(trans_device, get_color_mapping_procs)(trans_device)->map_gray(trans_device, gray, cm_comps);
for (i = 0; i < ncomps; i++)
cv[i] = frac2cv(cm_comps[i]);
/* encode as a color index */
color = dev_proc(trans_device, encode_color)(trans_device, cv);
/* check if the encoding was successful; we presume failure is rare */
if (color != gx_no_color_index)
color_set_pure(pdc, color);
}
}
/* color mapping for when we have an smask or a isolated transparency group with another color space */
static void
pdf14_cmap_rgb_direct_group(frac r, frac g, frac b, gx_device_color * pdc,
const gs_imager_state * pis, gx_device * dev, gs_color_select_t select)
{
int i, ncomps = dev->color_info.num_components;
frac cm_comps[GX_DEVICE_COLOR_MAX_COMPONENTS];
gx_color_value cv[GX_DEVICE_COLOR_MAX_COMPONENTS];
gx_color_index color;
gx_device *trans_device;
/* We may be coming from the clist writer
which often forwards us the target device.
If this occurs we actually need to get to
the color space defined by the transparency group
and we use the operators defined by the transparency device
to do the job.
*/
if (pis->trans_device != NULL){
trans_device = pis->trans_device;
} else {
trans_device = dev;
}
ncomps = trans_device->color_info.num_components;
if ( ncomps == 3 ){
cv[0] = frac2cv(r);
cv[1] = frac2cv(g);
cv[2] = frac2cv(b);
/* encode as a color index */
color = pdf14_encode_smask_color(trans_device,cv,3);
/* check if the encoding was successful; we presume failure is rare */
if (color != gx_no_color_index)
color_set_pure(pdc, color);
} else {
/* map to the device color model */
/* We can end up here, if for example we had a DeviceN
color space with a CIE based alternate space and
a output device that was RGB but a blending
space that was CMYK. The proper way to solve this
is to introduce another color space for the graphic
state that has its own Joint CIE Cache between the
source and a CMYK CRD (the transparency color space).
The problem is that we can
only have one CRD, which is defined by the output
device. We will fix these issues with the
new ICC base color architecture. */
dev_proc(trans_device, get_color_mapping_procs)(trans_device)->map_rgb(trans_device, pis, r, g, b, cm_comps);
for (i = 0; i < ncomps; i++)
cv[i] = frac2cv(cm_comps[i]);
/* encode as a color index */
color = dev_proc(trans_device, encode_color)(trans_device, cv);
/* check if the encoding was successful; we presume failure is rare */
if (color != gx_no_color_index)
color_set_pure(pdc, color);
}
}
/* color mapping for when we have an smask or a isolated transparency group with another color space */
static void
pdf14_cmap_cmyk_direct_group(frac c, frac m, frac y, frac k, gx_device_color * pdc,
const gs_imager_state * pis, gx_device * dev, gs_color_select_t select)
{
int i, ncomps = dev->color_info.num_components;
frac cm_comps[GX_DEVICE_COLOR_MAX_COMPONENTS];
gx_color_value cv[GX_DEVICE_COLOR_MAX_COMPONENTS];
gx_color_index color;
gx_device *trans_device;
/* We may be coming from the clist writer
which often forwards us the target device.
If this occurs we actually need to get to
the color space defined by the transparency group
and we use the operators defined by the transparency device
to do the job.
*/
if (pis->trans_device != NULL){
trans_device = pis->trans_device;
} else {
trans_device = dev;
}
ncomps = trans_device->color_info.num_components;
if (ncomps == 4 ){
cv[0] = frac2cv(c);
cv[1] = frac2cv(m);
cv[2] = frac2cv(y);
cv[3] = frac2cv(k);
/* encode as a color index */
color = pdf14_encode_smask_color(trans_device,cv,4);
/* check if the encoding was successful; we presume failure is rare */
if (color != gx_no_color_index)
color_set_pure(pdc, color);
} else {
/* map to the color model */
dev_proc(trans_device, get_color_mapping_procs)(trans_device)->map_cmyk(trans_device, c, m, y, k, cm_comps);
for (i = 0; i < ncomps; i++)
cv[i] = frac2cv(cm_comps[i]);
color = dev_proc(trans_device, encode_color)(trans_device, cv);
if (color != gx_no_color_index)
color_set_pure(pdc, color);
}
}
static void
pdf14_cmap_rgb_alpha_direct(frac r, frac g, frac b, frac alpha, gx_device_color * pdc,
const gs_imager_state * pis, gx_device * dev, gs_color_select_t select)
{
int i, ncomps;
frac cm_comps[GX_DEVICE_COLOR_MAX_COMPONENTS];
gx_color_value cv[GX_DEVICE_COLOR_MAX_COMPONENTS];
gx_color_index color;
gx_device *trans_device;
/* We may be coming from the clist writer
which often forwards us the target device.
If this occurs we actually need to get to
the color space defined by the transparency group
and we use the operators defined by the transparency device
to do the job.
*/
if (pis->trans_device != NULL){
trans_device = pis->trans_device;
} else {
trans_device = dev;
}
ncomps = trans_device->color_info.num_components;
/* map to the color model */
dev_proc(trans_device, get_color_mapping_procs)(trans_device)->map_rgb(trans_device, pis, r, g, b, cm_comps);
/* pre-multiply to account for the alpha weighting */
if (alpha != frac_1) {
#ifdef PREMULTIPLY_TOWARDS_WHITE
frac alpha_bias = frac_1 - alpha;
#else
frac alpha_bias = 0;
#endif
for (i = 0; i < ncomps; i++)
cm_comps[i] = (frac)((long)cm_comps[i] * alpha) / frac_1 + alpha_bias;
}
for (i = 0; i < ncomps; i++)
cv[i] = frac2cv(cm_comps[i]);
/* encode as a color index */
/* if (dev_proc(dev, map_rgb_alpha_color) != gx_default_map_rgb_alpha_color &&
(cv_alpha = frac2cv(alpha)) != gx_max_color_value)
else
color = dev_proc(dev, encode_color)(dev, cv); */
color = dev_proc(trans_device, encode_color)(trans_device, cv);
/* check if the encoding was successful; we presume failure is rare */
if (color != gx_no_color_index)
color_set_pure(pdc, color);
}
static void
pdf14_cmap_separation_direct(frac all, gx_device_color * pdc, const gs_imager_state * pis,
gx_device * dev, gs_color_select_t select)
{
int i, ncomps = dev->color_info.num_components;
bool additive = dev->color_info.polarity == GX_CINFO_POLARITY_ADDITIVE;
frac comp_value = all;
frac cm_comps[GX_DEVICE_COLOR_MAX_COMPONENTS];
gx_color_value cv[GX_DEVICE_COLOR_MAX_COMPONENTS];
gx_color_index color;
if (pis->color_component_map.sep_type == SEP_ALL) {
/*
* Invert the photometric interpretation for additive
* color spaces because separations are always subtractive.
*/
if (additive)
comp_value = frac_1 - comp_value;
/* Use the "all" value for all components */
i = pis->color_component_map.num_colorants - 1;
for (; i >= 0; i--)
cm_comps[i] = comp_value;
}
else {
/* map to the color model */
map_components_to_colorants(&comp_value, &(pis->color_component_map), cm_comps);
}
/* apply the transfer function(s); convert to color values */
if (additive)
for (i = 0; i < ncomps; i++)
cv[i] = frac2cv(gx_map_color_frac(pis,
cm_comps[i], effective_transfer[i]));
else
for (i = 0; i < ncomps; i++)
cv[i] = frac2cv(frac_1 - gx_map_color_frac(pis,
(frac)(frac_1 - cm_comps[i]), effective_transfer[i]));
/* encode as a color index */
color = dev_proc(dev, encode_color)(dev, cv);
/* check if the encoding was successful; we presume failure is rare */
if (color != gx_no_color_index)
color_set_pure(pdc, color);
}
static void
pdf14_cmap_devicen_direct(const frac * pcc,
gx_device_color * pdc, const gs_imager_state * pis, gx_device * dev,
gs_color_select_t select)
{
int i, ncomps = dev->color_info.num_components;
frac cm_comps[GX_DEVICE_COLOR_MAX_COMPONENTS];
gx_color_value cv[GX_DEVICE_COLOR_MAX_COMPONENTS];
gx_color_index color;
gx_device *trans_device;
/* We may be coming from the clist writer
which often forwards us the target device.
If this occurs we actually need to get to
the color space defined by the transparency group
and we use the operators defined by the transparency device
to do the job.
*/
if (pis->trans_device != NULL){
trans_device = pis->trans_device;
} else {
trans_device = dev;
}
ncomps = trans_device->color_info.num_components;
/* map to the color model */
map_components_to_colorants(pcc, &(pis->color_component_map), cm_comps);;
/* apply the transfer function(s); convert to color values */
if (trans_device->color_info.polarity == GX_CINFO_POLARITY_ADDITIVE)
for (i = 0; i < ncomps; i++)
cv[i] = frac2cv(gx_map_color_frac(pis,
cm_comps[i], effective_transfer[i]));
else
for (i = 0; i < ncomps; i++)
cv[i] = frac2cv(frac_1 - gx_map_color_frac(pis,
(frac)(frac_1 - cm_comps[i]), effective_transfer[i]));
/* encode as a color index */
color = dev_proc(trans_device, encode_color)(trans_device, cv);
/* check if the encoding was successful; we presume failure is rare */
if (color != gx_no_color_index)
color_set_pure(pdc, color);
}
static bool
pdf14_cmap_is_halftoned(const gs_imager_state * pis, gx_device * dev)
{
return false;
}
static const gx_color_map_procs *
pdf14_get_cmap_procs(const gs_imager_state *pis, const gx_device * dev)
{
/* The pdf14 marking device itself is always continuous tone. */
return &pdf14_cmap_many;
}
static const gx_color_map_procs *
pdf14_get_cmap_procs_group(const gs_imager_state *pis, const gx_device * dev)
{
/* The pdf14 marking device itself is always continuous tone. */
return &pdf14_cmap_many_group;
}
static int
pdf14_pattern_manage(gx_device *pdev, gx_bitmap_id id,
gs_pattern1_instance_t *pinst, pattern_manage_t function)
{
if (function == pattern_manage__shfill_doesnt_need_path)
return 1;
return gx_default_pattern_manage(pdev, id, pinst, function);
}
int
gs_pdf14_device_push(gs_memory_t *mem, gs_imager_state * pis,
gx_device ** pdev, gx_device * target, const gs_pdf14trans_t * pdf14pct)
{
pdf14_device * dev_proto;
pdf14_device * p14dev, temp_dev_proto;
int code;
if_debug0('v', "[v]gs_pdf14_device_push\n");
code = get_pdf14_device_proto(target, &dev_proto,
&temp_dev_proto, pis, pdf14pct);
if (code < 0)
return code;
code = gs_copydevice((gx_device **) &p14dev,
(const gx_device *) dev_proto, mem);
if (code < 0)
return code;
gs_pdf14_device_copy_params((gx_device *)p14dev, target);
rc_assign(p14dev->target, target, "gs_pdf14_device_push");
check_device_separable((gx_device *)p14dev);
gx_device_fill_in_procs((gx_device *)p14dev);
p14dev->save_get_cmap_procs = pis->get_cmap_procs;
pis->get_cmap_procs = pdf14_get_cmap_procs;
gx_set_cmap_procs(pis, (gx_device *)p14dev);
code = dev_proc((gx_device *) p14dev, open_device) ((gx_device *) p14dev);
*pdev = (gx_device *) p14dev;
pdf14_set_marking_params((gx_device *)p14dev, pis);
p14dev->trans_group_parent_cmap_procs = NULL;
#if RAW_DUMP
/* Dump the current buffer to see what we have. */
dump_raw_buffer(p14dev->ctx->stack->rect.q.y-p14dev->ctx->stack->rect.p.y,
p14dev->ctx->stack->rect.q.x-p14dev->ctx->stack->rect.p.x,
p14dev->ctx->stack->n_planes,
p14dev->ctx->stack->planestride, p14dev->ctx->stack->rowstride,
"Device_Push",p14dev->ctx->stack->data);
global_index++;
#endif
return code;
}
/*
* In a modest violation of good coding practice, the gs_composite_common
* fields are "known" to be simple (contain no pointers to garbage
* collected memory), and we also know the gs_pdf14trans_params_t structure
* to be simple, so we just create a trivial structure descriptor for the
* entire gs_pdf14trans_s structure.
*/
#define private_st_gs_pdf14trans_t()\
gs_private_st_ptrs1(st_pdf14trans, gs_pdf14trans_t, "gs_pdf14trans_t",\
st_pdf14trans_enum_ptrs, st_pdf14trans_reloc_ptrs, params.transfer_function)
/* GC descriptor for gs_pdf14trans_t */
private_st_gs_pdf14trans_t();
/*
* Check for equality of two PDF 1.4 transparency compositor objects.
*
* We are currently always indicating that PDF 1.4 transparency compositors are
* equal. Two transparency compositors may have teh same data but still
* represent separate actions. (E.g. two PDF14_BEGIN_TRANS_GROUP compositor
* operations in a row mean that we are creating a group inside of a group.
*/
static bool
c_pdf14trans_equal(const gs_composite_t * pct0, const gs_composite_t * pct1)
{
return false;
}
#ifdef DEBUG
static const char * pdf14_opcode_names[] = PDF14_OPCODE_NAMES;
#endif
#define put_value(dp, value)\
BEGIN\
memcpy(dp, &value, sizeof(value));\
dp += sizeof(value);\
END
static inline int
c_pdf14trans_write_ctm(byte **ppbuf, const gs_pdf14trans_params_t *pparams)
{
/* Note: We can't skip writing CTM if it is equal to pis->ctm,
because clist writer may skip this command for some bands.
For a better result we need individual CTM for each band.
*/
byte *pbuf = *ppbuf;
int len, code;
len = cmd_write_ctm_return_length_nodevice(&pparams->ctm);
pbuf--; /* For cmd_write_ctm. */
code = cmd_write_ctm(&pparams->ctm, pbuf, len);
if (code < 0)
return code;
pbuf += len + 1;
*ppbuf = pbuf;
return 0;
}
/*
* Convert a PDF 1.4 transparency compositor to string form for use by the command
* list device.
*/
static int
c_pdf14trans_write(const gs_composite_t * pct, byte * data, uint * psize, gx_device_clist_writer *cdev)
{
const gs_pdf14trans_params_t * pparams = &((const gs_pdf14trans_t *)pct)->params;
int need, avail = *psize;
byte buf[MAX_CLIST_TRANSPARENCY_BUFFER_SIZE]; /* Must be large enough
to fit the data written below. We don't implement a dynamic check for the buffer owerflow,
assuming that the consistency is verified in the coding phase.
See the definition of MAX_CLIST_TRANSPARENCY_BUFFER_SIZE. */
byte * pbuf = buf;
int opcode = pparams->pdf14_op;
int mask_size = 0;
uint mask_id = 0;
int code;
*pbuf++ = opcode; /* 1 byte */
switch (opcode) {
default: /* Should not occur. */
break;
case PDF14_PUSH_DEVICE:
put_value(pbuf, pparams->num_spot_colors);
break;
case PDF14_POP_DEVICE:
code = 0;
break;
case PDF14_END_TRANS_GROUP:
break; /* No data */
case PDF14_BEGIN_TRANS_GROUP:
code = c_pdf14trans_write_ctm(&pbuf, pparams);
if (code < 0)
return code;
*pbuf++ = (pparams->Isolated & 1) + ((pparams->Knockout & 1) << 1);
*pbuf++ = pparams->blend_mode;
*pbuf++ = pparams->group_color;
put_value(pbuf, pparams->group_color_numcomps);
put_value(pbuf, pparams->opacity.alpha);
put_value(pbuf, pparams->shape.alpha);
put_value(pbuf, pparams->bbox);
mask_id = pparams->mask_id;
put_value(pbuf, pparams->mask_id);
break;
case PDF14_BEGIN_TRANS_MASK:
code = c_pdf14trans_write_ctm(&pbuf, pparams);
if (code < 0)
return code;
put_value(pbuf, pparams->subtype);
*pbuf++ = pparams->group_color;
put_value(pbuf, pparams->group_color_numcomps);
*pbuf++ = pparams->replacing;
*pbuf++ = pparams->function_is_identity;
*pbuf++ = pparams->Background_components;
put_value(pbuf, pparams->bbox);
mask_id = pparams->mask_id;
put_value(pbuf, pparams->mask_id);
if (pparams->Background_components) {
const int l = sizeof(pparams->Background[0]) * pparams->Background_components;
memcpy(pbuf, pparams->Background, l);
pbuf += l;
memcpy(pbuf, &pparams->GrayBackground, sizeof(pparams->GrayBackground));
pbuf += sizeof(pparams->GrayBackground);
}
if (!pparams->function_is_identity)
mask_size = sizeof(pparams->transfer_fn);
break;
case PDF14_END_TRANS_MASK:
break;
case PDF14_SET_BLEND_PARAMS:
*pbuf++ = pparams->changed;
if (pparams->changed & PDF14_SET_BLEND_MODE)
*pbuf++ = pparams->blend_mode;
if (pparams->changed & PDF14_SET_TEXT_KNOCKOUT)
*pbuf++ = pparams->text_knockout;
if (pparams->changed & PDF14_SET_OPACITY_ALPHA)
put_value(pbuf, pparams->opacity.alpha);
if (pparams->changed & PDF14_SET_SHAPE_ALPHA)
put_value(pbuf, pparams->shape.alpha);
if (pparams->changed & PDF14_SET_OVERPRINT)
put_value(pbuf, pparams->overprint);
if (pparams->changed & PDF14_SET_OVERPRINT_MODE)
put_value(pbuf, pparams->overprint_mode);
break;
case PDF14_PUSH_TRANS_STATE:
break;
case PDF14_POP_TRANS_STATE:
break;
}
/* check for fit */
need = (pbuf - buf) + mask_size;
*psize = need;
if (need > avail) {
if (avail)
return_error(gs_error_rangecheck);
else
return gs_error_rangecheck;
}
/* If we are writing more than the maximum ever expected,
* return a rangecheck error.
*/
if ( need + 3 > MAX_CLIST_COMPOSITOR_SIZE )
return_error(gs_error_rangecheck);
/* Copy our serialzed data into the output buffer */
memcpy(data, buf, need - mask_size);
if (mask_size) /* Include the transfer mask data if present */
memcpy(data + need - mask_size, pparams->transfer_fn, mask_size);
if_debug3('v', "[v] c_pdf14trans_write: opcode = %s mask_id=%d need = %d\n",
pdf14_opcode_names[opcode], mask_id, need);
return 0;
}
#undef put_value
/* Function prototypes */
static int gs_create_pdf14trans( gs_composite_t ** ppct,
const gs_pdf14trans_params_t * pparams,
gs_memory_t * mem );
#define read_value(dp, value)\
BEGIN\
memcpy(&value, dp, sizeof(value));\
dp += sizeof(value);\
END
/*
* Convert the string representation of the PDF 1.4 transparency parameter
* into the full compositor.
*/
static int
c_pdf14trans_read(gs_composite_t * * ppct, const byte * data,
uint size, gs_memory_t * mem )
{
gs_pdf14trans_params_t params = {0};
const byte * start = data;
int used, code = 0;
if (size < 1)
return_error(gs_error_rangecheck);
/* Read PDF 1.4 compositor data from the clist */
params.pdf14_op = *data++;
if_debug2('v', "[v] c_pdf14trans_read: opcode = %s avail = %d",
pdf14_opcode_names[params.pdf14_op], size);
memset(¶ms.ctm, 0, sizeof(params.ctm));
switch (params.pdf14_op) {
default: /* Should not occur. */
break;
case PDF14_PUSH_DEVICE:
read_value(data, params.num_spot_colors);
break;
case PDF14_POP_DEVICE:
code += 0; /* A good place for a breakpoint. */
break;
case PDF14_END_TRANS_GROUP:
code += 0; /* A good place for a breakpoint. */
break; /* No data */
case PDF14_PUSH_TRANS_STATE:
break;
case PDF14_POP_TRANS_STATE:
break;
case PDF14_BEGIN_TRANS_GROUP:
/*
* We are currently not using the bbox or the colorspace so they were
* not placed in the clist
*/
data = cmd_read_matrix(¶ms.ctm, data);
params.Isolated = (*data) & 1;
params.Knockout = (*data++ >> 1) & 1;
params.blend_mode = *data++;
params.group_color = *data++; /* Trans group color */
read_value(data,params.group_color_numcomps); /* color group size */
read_value(data, params.opacity.alpha);
read_value(data, params.shape.alpha);
read_value(data, params.bbox);
read_value(data, params.mask_id);
break;
case PDF14_BEGIN_TRANS_MASK:
/* This is the largest transparency parameter at this time (potentially
* 1275 bytes in size if Background_components =
* GS_CLIENT_COLOR_MAX_COMPONENTS and we have a transfer function
* as well).
*
* NOTE:
* The clist reader must be able to handle this sized device.
* If any changes are made here the #define MAX_CLIST_COMPOSITOR_SIZE
* may also need to be changed correspondingly (defined in gstparam.h)
* Also... if another compositor param should exceed this size, this
* same condition applies.
*/
data = cmd_read_matrix(¶ms.ctm, data);
read_value(data, params.subtype);
params.group_color = *data++;
read_value(data, params.group_color_numcomps);
params.replacing = *data++;
params.function_is_identity = *data++;
params.Background_components = *data++;
read_value(data, params.bbox);
read_value(data, params.mask_id);
if (params.Background_components) {
const int l = sizeof(params.Background[0]) * params.Background_components;
memcpy(params.Background, data, l);
data += l;
memcpy(¶ms.GrayBackground, data, sizeof(params.GrayBackground));
data += sizeof(params.GrayBackground);
}
if (params.function_is_identity) {
int i;
for (i = 0; i < MASK_TRANSFER_FUNCTION_SIZE; i++) {
params.transfer_fn[i] = (byte)floor(i *
(255.0 / (MASK_TRANSFER_FUNCTION_SIZE - 1)) + 0.5);
}
} else {
read_value(data, params.transfer_fn);
}
break;
case PDF14_END_TRANS_MASK:
break;
case PDF14_SET_BLEND_PARAMS:
params.changed = *data++;
if (params.changed & PDF14_SET_BLEND_MODE)
params.blend_mode = *data++;
if (params.changed & PDF14_SET_TEXT_KNOCKOUT)
params.text_knockout = *data++;
if (params.changed & PDF14_SET_OPACITY_ALPHA)
read_value(data, params.opacity.alpha);
if (params.changed & PDF14_SET_SHAPE_ALPHA)
read_value(data, params.shape.alpha);
if (params.changed & PDF14_SET_OVERPRINT)
read_value(data, params.overprint);
if (params.changed & PDF14_SET_OVERPRINT_MODE)
read_value(data, params.overprint_mode);
break;
}
code = gs_create_pdf14trans(ppct, ¶ms, mem);
if (code < 0)
return code;
used = data - start;
if_debug2('v', " mask_id=%d used = %d\n", params.mask_id, used);
/* If we read more than the maximum expected, return a rangecheck error */
if ( used + 3 > MAX_CLIST_COMPOSITOR_SIZE )
return_error(gs_error_rangecheck);
else
return used;
}
/*
* Adjust the compositor's CTM.
*/
static int
c_pdf14trans_adjust_ctm(gs_composite_t * pct0, int x0, int y0, gs_imager_state *pis)
{
gs_pdf14trans_t *pct = (gs_pdf14trans_t *)pct0;
gs_matrix mat = pct->params.ctm;
if_debug6('L', " [%g %g %g %g %g %g]\n",
mat.xx, mat.xy, mat.yx, mat.yy,
mat.tx, mat.ty);
mat.tx -= x0;
mat.ty -= y0;
gs_imager_setmatrix(pis, &mat);
return 0;
}
/*
* Create a PDF 1.4 transparency compositor.
*
* Note that this routine will be called only if the device is not already
* a PDF 1.4 transparency compositor.
*/
static int
c_pdf14trans_create_default_compositor(const gs_composite_t * pct,
gx_device ** pp14dev, gx_device * tdev, gs_imager_state * pis,
gs_memory_t * mem)
{
const gs_pdf14trans_t * pdf14pct = (const gs_pdf14trans_t *) pct;
gx_device * p14dev = NULL;
int code = 0;
/*
* We only handle the push operation. All other operations are ignored.
* The other operations will be handled by the create_compositor routine
* for the PDF 1.4 compositing device.
*/
switch (pdf14pct->params.pdf14_op) {
case PDF14_PUSH_DEVICE:
code = gs_pdf14_device_push(mem, pis, &p14dev, tdev, pdf14pct);
*pp14dev = p14dev;
break;
default:
*pp14dev = tdev;
break;
}
return code;
}
/*
* Find an opening compositor op.
*/
static int
find_opening_op(int opening_op, gs_composite_t **ppcte, int return_code)
{
/* Assuming a right *BEGIN* - *END* operation balance. */
gs_composite_t *pcte = *ppcte;
for (;;) {
if (pcte->type->comp_id == GX_COMPOSITOR_PDF14_TRANS) {
gs_pdf14trans_t *pct = (gs_pdf14trans_t *)pcte;
int op = pct->params.pdf14_op;
*ppcte = pcte;
if (op == opening_op)
return return_code;
if (op != PDF14_SET_BLEND_PARAMS) {
if (opening_op == PDF14_BEGIN_TRANS_MASK)
return 0;
if (opening_op == PDF14_BEGIN_TRANS_GROUP) {
if (op != PDF14_BEGIN_TRANS_MASK && op != PDF14_END_TRANS_MASK)
return 0;
}
if (opening_op == PDF14_PUSH_DEVICE) {
if (op != PDF14_BEGIN_TRANS_MASK && op != PDF14_END_TRANS_MASK &&
op != PDF14_BEGIN_TRANS_GROUP && op != PDF14_END_TRANS_GROUP)
return 0;
}
}
} else
return 0;
pcte = pcte->prev;
if (pcte == NULL)
return 2; /* Not in queue. */
}
}
/*
* Find an opening compositor op.
*/
static int
find_same_op(const gs_composite_t *this, int my_op, gs_composite_t **ppcte)
{
const gs_pdf14trans_t *pct0 = (gs_pdf14trans_t *)this;
gs_composite_t *pct = *ppcte;
for (;;) {
if (pct->type->comp_id == GX_COMPOSITOR_PDF14_TRANS) {
gs_pdf14trans_t *pct_pdf14 = (gs_pdf14trans_t *)pct;
*ppcte = pct;
if (pct_pdf14->params.pdf14_op != my_op)
return 0;
if (pct_pdf14->params.csel == pct0->params.csel)
return 4;
} else
return 0;
pct = pct->prev;
if (pct == NULL)
return 0; /* Not in queue. */
}
}
/*
* Check for closing compositor.
*/
static int
c_pdf14trans_is_closing(const gs_composite_t * this, gs_composite_t ** ppcte, gx_device *dev)
{
gs_pdf14trans_t *pct0 = (gs_pdf14trans_t *)this;
int op0 = pct0->params.pdf14_op;
switch (op0) {
default: return_error(gs_error_unregistered); /* Must not happen. */
case PDF14_PUSH_DEVICE:
return 0;
case PDF14_POP_DEVICE:
if (*ppcte == NULL)
return 0;
else {
int code = find_opening_op(PDF14_PUSH_DEVICE, ppcte, 1);
if (code == 1)
return 5;
return code;
}
case PDF14_BEGIN_TRANS_GROUP:
return 0;
case PDF14_END_TRANS_GROUP:
if (*ppcte == NULL)
return 2;
return find_opening_op(PDF14_BEGIN_TRANS_GROUP, ppcte, 6);
case PDF14_BEGIN_TRANS_MASK:
return 0;
case PDF14_PUSH_TRANS_STATE:
return 0;
case PDF14_POP_TRANS_STATE:
return 0;
case PDF14_END_TRANS_MASK:
if (*ppcte == NULL)
return 2;
return find_opening_op(PDF14_BEGIN_TRANS_MASK, ppcte, 6);
case PDF14_SET_BLEND_PARAMS:
if (*ppcte == NULL)
return 0;
/* hack : ignore csel - here it is always zero : */
return find_same_op(this, PDF14_SET_BLEND_PARAMS, ppcte);
}
}
/*
* Check whether a next operation is friendly to the compositor.
*/
static bool
c_pdf14trans_is_friendly(const gs_composite_t * this, byte cmd0, byte cmd1)
{
gs_pdf14trans_t *pct0 = (gs_pdf14trans_t *)this;
int op0 = pct0->params.pdf14_op;
if (op0 == PDF14_PUSH_DEVICE || op0 == PDF14_END_TRANS_GROUP) {
/* Halftone commands are always passed to the target printer device,
because transparency buffers are always contone.
So we're safe to execute them before queued transparency compositors. */
if (cmd0 == cmd_opv_extend && (cmd1 == cmd_opv_ext_put_halftone ||
cmd1 == cmd_opv_ext_put_ht_seg))
return true;
if (cmd0 == cmd_opv_set_misc && (cmd1 >> 6) == (cmd_set_misc_map >> 6))
return true;
}
return false;
}
static composite_create_default_compositor_proc(c_pdf14trans_create_default_compositor);
static composite_equal_proc(c_pdf14trans_equal);
static composite_write_proc(c_pdf14trans_write);
static composite_read_proc(c_pdf14trans_read);
static composite_adjust_ctm_proc(c_pdf14trans_adjust_ctm);
static composite_is_closing_proc(c_pdf14trans_is_closing);
static composite_is_friendly_proc(c_pdf14trans_is_friendly);
static composite_clist_write_update(c_pdf14trans_clist_write_update);
static composite_clist_read_update(c_pdf14trans_clist_read_update);
static composite_get_cropping_proc(c_pdf14trans_get_cropping);
/*
* Methods for the PDF 1.4 transparency compositor
*
* Note: We have two set of methods. They are the same except for the
* composite_clist_write_update method. Once the clist write device is created,
* we use the second set of procedures. This prevents the creation of multiple
* PDF 1.4 clist write compositor devices being chained together.
*/
const gs_composite_type_t gs_composite_pdf14trans_type = {
GX_COMPOSITOR_PDF14_TRANS,
{
c_pdf14trans_create_default_compositor, /* procs.create_default_compositor */
c_pdf14trans_equal, /* procs.equal */
c_pdf14trans_write, /* procs.write */
c_pdf14trans_read, /* procs.read */
c_pdf14trans_adjust_ctm, /* procs.adjust_ctm */
c_pdf14trans_is_closing, /* procs.is_closing */
c_pdf14trans_is_friendly, /* procs.is_friendly */
/* Create a PDF 1.4 clist write device */
c_pdf14trans_clist_write_update, /* procs.composite_clist_write_update */
c_pdf14trans_clist_read_update, /* procs.composite_clist_reade_update */
c_pdf14trans_get_cropping /* procs.composite_get_cropping */
} /* procs */
};
const gs_composite_type_t gs_composite_pdf14trans_no_clist_writer_type = {
GX_COMPOSITOR_PDF14_TRANS,
{
c_pdf14trans_create_default_compositor, /* procs.create_default_compositor */
c_pdf14trans_equal, /* procs.equal */
c_pdf14trans_write, /* procs.write */
c_pdf14trans_read, /* procs.read */
c_pdf14trans_adjust_ctm, /* procs.adjust_ctm */
c_pdf14trans_is_closing, /* procs.is_closing */
c_pdf14trans_is_friendly, /* procs.is_friendly */
/* The PDF 1.4 clist writer already exists, Do not create it. */
gx_default_composite_clist_write_update, /* procs.composite_clist_write_update */
c_pdf14trans_clist_read_update, /* procs.composite_clist_reade_update */
c_pdf14trans_get_cropping /* procs.composite_get_cropping */
} /* procs */
};
/*
* Verify that a compositor data structure is for the PDF 1.4 compositor.
*/
int
gs_is_pdf14trans_compositor(const gs_composite_t * pct)
{
return (pct->type == &gs_composite_pdf14trans_type
|| pct->type == &gs_composite_pdf14trans_no_clist_writer_type);
}
/*
* Create a PDF 1.4 transparency compositor data structure.
*/
static int
gs_create_pdf14trans(
gs_composite_t ** ppct,
const gs_pdf14trans_params_t * pparams,
gs_memory_t * mem )
{
gs_pdf14trans_t * pct;
pct = gs_alloc_struct(mem, gs_pdf14trans_t, &st_pdf14trans,
"gs_create_pdf14trans");
if (pct == NULL)
return_error(gs_error_VMerror);
pct->type = &gs_composite_pdf14trans_type;
pct->id = gs_next_ids(mem, 1);
pct->params = *pparams;
pct->idle = false;
*ppct = (gs_composite_t *)pct;
return 0;
}
/*
* Send a PDF 1.4 transparency compositor action to the specified device.
*/
int
send_pdf14trans(gs_imager_state * pis, gx_device * dev,
gx_device * * pcdev, gs_pdf14trans_params_t * pparams, gs_memory_t * mem)
{
gs_composite_t * pct = NULL;
int code;
pparams->ctm = ctm_only(pis);
code = gs_create_pdf14trans(&pct, pparams, mem);
if (code < 0)
return code;
code = dev_proc(dev, create_compositor) (dev, pcdev, pct, pis, mem);
gs_free_object(pis->memory, pct, "send_pdf14trans");
return code;
}
/* ------------- PDF 1.4 transparency device for clist writing ------------- */
/*
* The PDF 1.4 transparency compositor device may have a different process
* color model than the output device. If we are banding then we need to
* create two compositor devices. The output side (clist reader) needs a
* compositor to actually composite the output. We also need a compositor
* device before the clist writer. This is needed to provide a process color
* model which matches the PDF 1.4 blending space.
*
* This section provides support for this device.
*/
/*
* Define the default pre-clist (clist writer) PDF 1.4 compositing device.
* We actually use the same structure for both the clist writer and reader
* devices. However we use separate names to identify the routines for each
* device.
*/
#define pdf14_clist_procs(get_color_mapping_procs, get_color_comp_index,\
encode_color, decode_color) \
{\
NULL, /* open */\
gx_forward_get_initial_matrix, /* get_initial_matrix */\
gx_forward_sync_output, /* sync_output */\
gx_forward_output_page, /* output_page */\
gx_forward_close_device, /* close_device */\
encode_color, /* rgb_map_rgb_color */\
decode_color, /* map_color_rgb */\
gx_forward_fill_rectangle, /* fill_rectangle */\
gx_forward_tile_rectangle, /* tile_rectangle */\
gx_forward_copy_mono, /* copy_mono */\
gx_forward_copy_color, /* copy_color */\
NULL , /* draw_line - obsolete */\
gx_forward_get_bits, /* get_bits */\
gx_forward_get_params, /* get_params */\
pdf14_put_params, /* put_params */\
encode_color, /* map_cmyk_color */\
gx_forward_get_xfont_procs, /* get_xfont_procs */\
gx_forward_get_xfont_device, /* get_xfont_device */\
NULL, /* map_rgb_alpha_color */\
gx_forward_get_page_device, /* get_page_device */\
gx_forward_get_alpha_bits, /* get_alpha_bits */\
NULL, /* copy_alpha */\
gx_forward_get_band, /* get_band */\
gx_forward_copy_rop, /* copy_rop */\
pdf14_clist_fill_path, /* fill_path */\
pdf14_clist_stroke_path, /* stroke_path */\
gx_forward_fill_mask, /* fill_mask */\
gx_forward_fill_trapezoid, /* fill_trapezoid */\
gx_forward_fill_parallelogram, /* fill_parallelogram */\
gx_forward_fill_triangle, /* fill_triangle */\
gx_forward_draw_thin_line, /* draw_thin_line */\
pdf14_clist_begin_image, /* begin_image */\
gx_forward_image_data, /* image_data */\
gx_forward_end_image, /* end_image */\
gx_forward_strip_tile_rectangle, /* strip_tile_rectangle */\
gx_forward_strip_copy_rop, /* strip_copy_rop, */\
gx_forward_get_clipping_box, /* get_clipping_box */\
pdf14_clist_begin_typed_image, /* begin_typed_image */\
gx_forward_get_bits_rectangle, /* get_bits_rectangle */\
NULL, /* map_color_rgb_alpha */\
pdf14_clist_create_compositor, /* create_compositor */\
gx_forward_get_hardware_params, /* get_hardware_params */\
pdf14_clist_text_begin, /* text_begin */\
NULL, /* finish_copydevice */\
pdf14_begin_transparency_group,\
pdf14_end_transparency_group,\
pdf14_begin_transparency_mask,\
pdf14_end_transparency_mask,\
NULL, /* discard_transparency_layer */\
get_color_mapping_procs, /* get_color_mapping_procs */\
get_color_comp_index, /* get_color_comp_index */\
encode_color, /* encode_color */\
decode_color, /* decode_color */\
clist_pattern_manage, /* pattern_manage */\
NULL, /* fill_rectangle_hl_color */\
NULL, /* include_color_space */\
NULL, /* fill_linear_color_scanline */\
NULL, /* fill_linear_color_trapezoid */\
NULL, /* fill_linear_color_triangle */\
gx_forward_update_spot_equivalent_colors, /* update spot */\
gx_forward_ret_devn_params, /* gx_forward_ret_devn_params */\
gx_forward_fillpage,\
pdf14_push_transparency_state,\
pdf14_pop_transparency_state\
}
static dev_proc_create_compositor(pdf14_clist_create_compositor);
static dev_proc_create_compositor(pdf14_clist_forward_create_compositor);
static dev_proc_fill_path(pdf14_clist_fill_path);
static dev_proc_stroke_path(pdf14_clist_stroke_path);
static dev_proc_text_begin(pdf14_clist_text_begin);
static dev_proc_begin_image(pdf14_clist_begin_image);
static dev_proc_begin_typed_image(pdf14_clist_begin_typed_image);
static const gx_device_procs pdf14_clist_Gray_procs =
pdf14_clist_procs(gx_default_DevGray_get_color_mapping_procs,
gx_default_DevGray_get_color_comp_index,
pdf14_encode_color,
pdf14_decode_color);
static const gx_device_procs pdf14_clist_RGB_procs =
pdf14_clist_procs(gx_default_DevRGB_get_color_mapping_procs,
gx_default_DevRGB_get_color_comp_index,
pdf14_encode_color,
pdf14_decode_color);
static const gx_device_procs pdf14_clist_CMYK_procs =
pdf14_clist_procs(gx_default_DevCMYK_get_color_mapping_procs,
gx_default_DevCMYK_get_color_comp_index,
pdf14_encode_color, pdf14_decode_color);
static const gx_device_procs pdf14_clist_CMYKspot_procs =
pdf14_clist_procs(pdf14_cmykspot_get_color_mapping_procs,
pdf14_cmykspot_get_color_comp_index,
pdf14_compressed_encode_color,
pdf14_compressed_decode_color);
static const gx_device_procs pdf14_clist_custom_procs =
pdf14_clist_procs(gx_forward_get_color_mapping_procs,
gx_forward_get_color_comp_index,
gx_forward_encode_color,
gx_forward_decode_color);
const pdf14_clist_device pdf14_clist_Gray_device = {
std_device_color_stype_body(pdf14_clist_device, &pdf14_clist_Gray_procs,
"pdf14clistgray", &st_pdf14_device,
XSIZE, YSIZE, X_DPI, Y_DPI, 8, 255, 256),
{ 0 }, /* Procs */
NULL, /* target */
{ 0 }, /* devn_params - not used */
&gray_pdf14_procs,
&gray_blending_procs
};
const pdf14_clist_device pdf14_clist_RGB_device = {
std_device_color_stype_body(pdf14_clist_device, &pdf14_clist_RGB_procs,
"pdf14clistRGB", &st_pdf14_device,
XSIZE, YSIZE, X_DPI, Y_DPI, 24, 255, 256),
{ 0 }, /* Procs */
NULL, /* target */
{ 0 }, /* devn_params - not used */
&rgb_pdf14_procs,
&rgb_blending_procs
};
const pdf14_clist_device pdf14_clist_CMYK_device = {
std_device_std_color_full_body_type(pdf14_clist_device,
&pdf14_clist_CMYK_procs, "pdf14clistcmyk",
&st_pdf14_device, XSIZE, YSIZE, X_DPI, Y_DPI, 32,
0, 0, 0, 0, 0, 0),
{ 0 }, /* Procs */
NULL, /* target */
{ 0 }, /* devn_params - not used */
&cmyk_pdf14_procs,
&cmyk_blending_procs
};
const pdf14_clist_device pdf14_clist_CMYKspot_device = {
std_device_part1_(pdf14_device, &pdf14_clist_CMYKspot_procs, "pdf14clistcmykspot", &st_pdf14_device, open_init_closed),
dci_values(GX_DEVICE_COLOR_MAX_COMPONENTS,64,255,255,256,256),
std_device_part2_(XSIZE, YSIZE, X_DPI, Y_DPI),
offset_margin_values(0, 0, 0, 0, 0, 0),
std_device_part3_(),
{ 0 }, /* Procs */
NULL, /* target */
/* DeviceN parameters */
{ 8, /* Not used - Bits per color */
DeviceCMYKComponents, /* Names of color model colorants */
4, /* Number colorants for CMYK */
0, /* MaxSeparations has not been specified */
-1, /* PageSpotColors has not been specified */
{0}, /* SeparationNames */
0, /* SeparationOrder names */
{0, 1, 2, 3, 4, 5, 6, 7 } /* Initial component SeparationOrder */
},
&cmykspot_pdf14_procs,
&cmyk_blending_procs
};
const pdf14_clist_device pdf14_clist_custom_device = {
std_device_part1_(pdf14_device, &pdf14_clist_CMYKspot_procs, "pdf14clistcustom", &st_pdf14_device, open_init_closed),
dci_values(GX_DEVICE_COLOR_MAX_COMPONENTS,64,255,255,256,256),
std_device_part2_(XSIZE, YSIZE, X_DPI, Y_DPI),
offset_margin_values(0, 0, 0, 0, 0, 0),
std_device_part3_(),
{ 0 }, /* Procs */
NULL, /* target */
/* DeviceN parameters */
{ 8, /* Not used - Bits per color */
DeviceCMYKComponents, /* Names of color model colorants */
4, /* Number colorants for CMYK */
0, /* MaxSeparations has not been specified */
-1, /* PageSpotColors has not been specified */
{0}, /* SeparationNames */
0, /* SeparationOrder names */
{0, 1, 2, 3, 4, 5, 6, 7 } /* Initial component SeparationOrder */
},
&custom_pdf14_procs,
&custom_blending_procs
};
/*
* the PDF 1.4 transparency spec says that color space for blending
* operations can be based upon either a color space specified in the
* group or a default value based upon the output device. We are
* currently only using a color space based upon the device.
*/
static int
get_pdf14_clist_device_proto(gx_device * dev, pdf14_clist_device ** pdevproto,
pdf14_clist_device * ptempdevproto, gs_imager_state * pis,
const gs_pdf14trans_t * pdf14pct)
{
pdf14_default_colorspace_t dev_cs =
pdf14_determine_default_blend_cs(dev);
switch (dev_cs) {
case PDF14_DeviceGray:
*pdevproto = (pdf14_clist_device *)&pdf14_clist_Gray_device;
/* We want gray to be single channel. Low level
initialization of gray device prototype is
peculiar in that in dci_std_color_num_components
the comment is
"A device is monochrome only if it is bi-level"
Here we want monochrome anytime we have a gray device.
To avoid breaking things elsewhere, we will overide
the prototype intialization here */
*ptempdevproto = **pdevproto;
ptempdevproto->color_info.max_components = 1;
ptempdevproto->color_info.num_components = ptempdevproto->color_info.max_components;
*pdevproto = ptempdevproto;
break;
case PDF14_DeviceRGB:
*pdevproto = (pdf14_clist_device *)&pdf14_clist_RGB_device;
break;
case PDF14_DeviceCMYK:
*pdevproto = (pdf14_clist_device *)&pdf14_clist_CMYK_device;
break;
case PDF14_DeviceCMYKspot:
*pdevproto = (pdf14_clist_device *)&pdf14_clist_CMYKspot_device;
/*
* The number of components for the PDF14 device is the sum
* of the process components and the number of spot colors
* for the page.
*/
if (pdf14pct->params.num_spot_colors >= 0) {
*ptempdevproto = **pdevproto;
ptempdevproto->devn_params.page_spot_colors =
pdf14pct->params.num_spot_colors;
ptempdevproto->color_info.num_components =
ptempdevproto->devn_params.num_std_colorant_names +
pdf14pct->params.num_spot_colors;
if (ptempdevproto->color_info.num_components >
ptempdevproto->color_info.max_components)
ptempdevproto->color_info.num_components =
ptempdevproto->color_info.max_components;
*pdevproto = ptempdevproto;
}
break;
case PDF14_DeviceCustom:
/*
* We are using the output device's process color model. The
* color_info for the PDF 1.4 compositing device needs to match
* the output device.
*/
*ptempdevproto = pdf14_clist_custom_device;
ptempdevproto->color_info = dev->color_info;
/* The pdf14 device has to be 8 bit continuous tone. Force it */
ptempdevproto->color_info.depth =
ptempdevproto->color_info.num_components * 8;
ptempdevproto->color_info.max_gray = 255;
ptempdevproto->color_info.max_color = 255;
ptempdevproto->color_info.dither_grays = 256;
ptempdevproto->color_info.dither_colors = 256;
*pdevproto = ptempdevproto;
break;
default: /* Should not occur */
return_error(gs_error_rangecheck);
}
return 0;
}
static int
pdf14_create_clist_device(gs_memory_t *mem, gs_imager_state * pis,
gx_device ** ppdev, gx_device * target,
const gs_pdf14trans_t * pdf14pct)
{
pdf14_clist_device * dev_proto;
pdf14_clist_device * pdev, temp_dev_proto;
int code;
if_debug0('v', "[v]pdf14_create_clist_device\n");
code = get_pdf14_clist_device_proto(target, &dev_proto,
&temp_dev_proto, pis, pdf14pct);
if (code < 0)
return code;
code = gs_copydevice((gx_device **) &pdev,
(const gx_device *) dev_proto, mem);
if (code < 0)
return code;
check_device_separable((gx_device *)pdev);
gx_device_fill_in_procs((gx_device *)pdev);
gs_pdf14_device_copy_params((gx_device *)pdev, target);
rc_assign(pdev->target, target, "pdf14_create_clist_device");
code = dev_proc((gx_device *) pdev, open_device) ((gx_device *) pdev);
pdev->pclist_device = target;
pdev->my_encode_color = pdev->procs.encode_color;
pdev->my_decode_color = pdev->procs.decode_color;
pdev->my_get_color_mapping_procs = pdev->procs.get_color_mapping_procs;
pdev->my_get_color_comp_index = pdev->procs.get_color_comp_index;
*ppdev = (gx_device *) pdev;
return code;
}
/*
* Disable the PDF 1.4 clist compositor device. Once created, the PDF 1.4
* compositor device is never removed. (We do not have a remove compositor
* method.) However it is no-op'ed when the PDF 1.4 device is popped. This
* routine implements that action.
*/
static int
pdf14_disable_clist_device(gs_memory_t *mem, gs_imager_state * pis,
gx_device * dev)
{
gx_device_forward * pdev = (gx_device_forward *)dev;
gx_device * target = pdev->target;
if_debug0('v', "[v]pdf14_disable_clist_device\n");
/*
* To disable the action of this device, we forward all device
* procedures to the target except the create_compositor and copy
* the target's color_info.
*/
dev->color_info = target->color_info;
pdf14_forward_device_procs(dev);
set_dev_proc(dev, create_compositor, pdf14_clist_forward_create_compositor);
return 0;
}
/*
* Recreate the PDF 1.4 clist compositor device. Once created, the PDF 1.4
* compositor device is never removed. (We do not have a remove compositor
* method.) However it is no-op'ed when the PDF 1.4 device is popped. This
* routine will re-enable the compositor if the PDF 1.4 device is pushed
* again.
*/
static int
pdf14_recreate_clist_device(gs_memory_t *mem, gs_imager_state * pis,
gx_device * dev, const gs_pdf14trans_t * pdf14pct)
{
pdf14_clist_device * pdev = (pdf14_clist_device *)dev;
gx_device * target = pdev->target;
pdf14_clist_device * dev_proto;
pdf14_clist_device temp_dev_proto;
int code;
if_debug0('v', "[v]pdf14_recreate_clist_device\n");
/*
* We will not use the entire prototype device but we will set the
* color related info to match the prototype.
*/
code = get_pdf14_clist_device_proto(target, &dev_proto,
&temp_dev_proto, pis, pdf14pct);
if (code < 0)
return code;
pdev->color_info = dev_proto->color_info;
pdev->procs = dev_proto->procs;
gx_device_fill_in_procs(dev);
check_device_separable((gx_device *)pdev);
return code;
}
/*
* Key names are normally C const strings. However we need to create temp
* parameter key names. They only need to have a short life. We need to
* create a parameter list with the key names. Then we will put the parameters
* into the clist. That process will create a permanent copy of the key
* name. At that point we can release our temp key names.
*/
typedef struct keyname_link_list_s {
struct keyname_link_list_s * next;
char * key_name;
} keyname_link_list_t;
/*
* The GC description for the keyname link list is being included for
* completeness. Since this structure is only temporary, this structure
* should never be exposed to the GC.
*/
gs_private_st_ptrs2(st_keyname_link_list, keyname_link_list_t,
"keyname_link_list", keyname_link_list_enum_ptrs,
keyname_link_list_reloc_ptrs, next, key_name);
/* See comments before the definition of keyname_link_list_t */
static int
free_temp_keyname_list(gs_memory_t * mem, keyname_link_list_t * plist)
{
keyname_link_list_t * pthis_elem;
while (plist != NULL) {
pthis_elem = plist;
plist = plist->next;
gs_free_object(mem, (byte *)pthis_elem, "free_temp_keyname_list");
}
return 0;
}
/* Put a data value into our 'string' */
#define put_data(pdata, value, count)\
for(j = 0; j < count; j++)\
*pdata++ = (byte)((value) >> (j * 8))
/*
* Convert a compressed color list element into a set of device parameters.
* Note: This routine recursively calls itself. As a result it can create
* mulitple device parameters. The parameters are 'strings'. Actually the
* data is stored in the strings as binary data.
*
* See comments before the definition of keyname_link_list_t
*/
static int
get_param_compressed_color_list_elem(pdf14_clist_device * pdev,
gs_param_list * plist, compressed_color_list_t * pcomp_list,
char * keyname, keyname_link_list_t ** pkeyname_list)
{
int max_list_elem_size =
6 + NUM_ENCODE_LIST_ITEMS * sizeof(comp_bit_map_list_t);
int code, i, j;
byte * pdata;
gs_param_string str;
if (pcomp_list == NULL) /* Exit if we don not have a list. */
return 0;
/* Allocate a string for temp data */
pdata = gs_alloc_bytes(pdev->memory, max_list_elem_size,
"convert_compressed_color_list_elem");
str.data = (const byte *)pdata;
str.persistent = false;
put_data(pdata, pcomp_list->num_sub_level_ptrs, 2);
put_data(pdata, pcomp_list->first_bit_map, 2);
/* . */
for (i = pcomp_list->first_bit_map; i < NUM_ENCODE_LIST_ITEMS; i++) {
put_data(pdata, pcomp_list->u.comp_data[i].num_comp, 2);
put_data(pdata, pcomp_list->u.comp_data[i].num_non_solid_comp, 2);
put_data(pdata, pcomp_list->u.comp_data[i].solid_not_100, 1);
put_data(pdata, pcomp_list->u.comp_data[i].colorants,
sizeof(pcomp_list->u.comp_data[i].colorants));
if (pcomp_list->u.comp_data[i].num_comp !=
pcomp_list->u.comp_data[i].num_non_solid_comp) {
put_data(pdata, pcomp_list->u.comp_data[i].solid_colorants,
sizeof(pcomp_list->u.comp_data[i].solid_colorants));
}
}
str.size = pdata - str.data;
code = param_write_string(plist, keyname, &str);
gs_free_object(pdev->memory, (byte *)str.data,
"convert_compressed_color_list_elem");
/* Convert the sub levels. */
for (i = 0; i < pcomp_list->num_sub_level_ptrs; i++) {
/*
* We generate a keyname for the sub level elements based upon
* the keyname for the current level. See comments before the
* definition of keyname_link_list_t for comments about the lifetime
* of the keynames.
*/
/* Allocate a string for the keyname */
char * keyname_buf = (char *)gs_alloc_bytes(pdev->memory,
strlen(keyname) + 10, "convert_compressed_color_list_elem");
/*
* Allocate a link list element so we can keep track of the memory
* allocated to hold the keynames.
*/
keyname_link_list_t * pkeyname_list_elem =
gs_alloc_struct(pdev->memory, keyname_link_list_t,
&st_keyname_link_list, "convert_compressed_color_list_elem");
pkeyname_list_elem->next = *pkeyname_list;
pkeyname_list_elem->key_name = keyname_buf;
*pkeyname_list = pkeyname_list_elem;
sprintf(keyname_buf, "%s_%d", keyname, i);
get_param_compressed_color_list_elem(pdev, plist,
pcomp_list->u.sub_level_ptrs[i], keyname_buf,
pkeyname_list);
}
return 0;;
}
#undef put_data
/* Get data value from our 'string' */
#define get_data(pdata, value, count)\
j = count - 1;\
value = pdata[j--];\
for(; j >= 0; j--)\
value = (value << 8) | pdata[j];\
pdata += count
/*
* Retrieve a compressed color list from a set of device parameters.
* Note: This routine recursively calls itself. As a result it can process
* mulitple device parameters and create the entire compressed color list.
* The parameters are 'strings'. Actually the data is stored in the strings
* as binary data.
*/
int
put_param_compressed_color_list_elem(gx_device * pdev,
gs_param_list * plist, compressed_color_list_t ** pret_comp_list,
char * keyname, int num_comps)
{
int code, i, j;
byte * pdata;
gs_param_string str;
compressed_color_list_t * pcomp_list;
/* Check if the given keyname is present. */
code = param_read_string(plist, keyname, &str);
switch (code) {
case 0:
break; /* We have the given keyname, continue. */
default:
param_signal_error(plist, keyname, code);
case 1:
*pret_comp_list = NULL;
return 0;
}
/* Allocate a compressed color list element. */
pdata = (byte *)str.data;
pcomp_list = alloc_compressed_color_list_elem(pdev->memory, num_comps);
get_data(pdata, pcomp_list->num_sub_level_ptrs, 2);
get_data(pdata, pcomp_list->first_bit_map, 2);
/* Read the bit maps */
for (i = pcomp_list->first_bit_map; i < NUM_ENCODE_LIST_ITEMS; i++) {
get_data(pdata, pcomp_list->u.comp_data[i].num_comp, 2);
get_data(pdata, pcomp_list->u.comp_data[i].num_non_solid_comp, 2);
get_data(pdata, pcomp_list->u.comp_data[i].solid_not_100, 1);
get_data(pdata, pcomp_list->u.comp_data[i].colorants,
sizeof(pcomp_list->u.comp_data[i].colorants));
if (pcomp_list->u.comp_data[i].num_comp !=
pcomp_list->u.comp_data[i].num_non_solid_comp) {
get_data(pdata, pcomp_list->u.comp_data[i].solid_colorants,
sizeof(pcomp_list->u.comp_data[i].solid_colorants));
}
}
/* Get the sub levels. */
for (i = 0; i < pcomp_list->num_sub_level_ptrs; i++) {
char buff[50];
compressed_color_list_t * sub_list_ptr;
sprintf(buff, "%s_%d", keyname, i);
put_param_compressed_color_list_elem(pdev, plist,
&sub_list_ptr, buff, num_comps - 1);
pcomp_list->u.sub_level_ptrs[i] = sub_list_ptr;
}
*pret_comp_list = pcomp_list;
return 0;;
}
#undef get_data
/*
* Convert a list of spot color names into a set of device parameters.
* This is done to transfer information from the PDf14 clist writer
* compositing device to the PDF14 clist reader compositing device.
*
* See comments before the definition of keyname_link_list_t
*/
static int
get_param_spot_color_names(pdf14_clist_device * pdev,
gs_param_list * plist, keyname_link_list_t ** pkeyname_list)
{
int code, i;
gs_param_string str;
gs_separations * separations = &pdev->devn_params.separations;
int num_spot_colors = separations->num_separations;
if (num_spot_colors == 0)
return 0;
code = param_write_int(plist, PDF14NumSpotColorsParamName,
&num_spot_colors);
for (i = 0; i < num_spot_colors; i++) {
/*
* We generate a keyname for the spot color based upon the
* spot color number. See comments before the definition of
* keyname_link_list_t for comments about the lifetime of the keynames.
*/
/* Allocate a string for the keyname */
char * keyname_buf = (char *)gs_alloc_bytes(pdev->memory,
strlen("PDF14SpotName_") + 10, "get_param_spot_color_names");
/*
* Allocate a link list element so we can keep track of the memory
* allocated to hold the keynames.
*/
keyname_link_list_t * pkeyname_list_elem =
gs_alloc_struct(pdev->memory, keyname_link_list_t,
&st_keyname_link_list, "get_param_spot_color_names");
pkeyname_list_elem->next = *pkeyname_list;
pkeyname_list_elem->key_name = keyname_buf;
*pkeyname_list = pkeyname_list_elem;
sprintf(keyname_buf, "PDF14SpotName_%d", i);
str.size = separations->names[i].size;
str.data = separations->names[i].data;
str.persistent = false;
code = param_write_string(plist, keyname_buf, &str);
}
return 0;;
}
/*
* Retrieve a list of spot color names for the PDF14 device.
*/
int
put_param_pdf14_spot_names(gx_device * pdev,
gs_separations * pseparations, gs_param_list * plist)
{
int code, num_spot_colors, i;
gs_param_string str;
/* Check if the given keyname is present. */
code = param_read_int(plist, PDF14NumSpotColorsParamName,
&num_spot_colors);
switch (code) {
default:
param_signal_error(plist, PDF14NumSpotColorsParamName, code);
break;
case 1:
return 0;
case 0:
if (num_spot_colors < 1 ||
num_spot_colors > GX_DEVICE_COLOR_MAX_COMPONENTS)
return_error(gs_error_rangecheck);
for (i = 0; i < num_spot_colors; i++) {
char buff[20];
byte * sep_name;
sprintf(buff, "PDF14SpotName_%d", i);
code = param_read_string(plist, buff, &str);
switch (code) {
default:
param_signal_error(plist, buff, code);
break;
case 0:
sep_name = gs_alloc_bytes(pdev->memory,
str.size, "put_param_pdf14_spot_names");
memcpy(sep_name, str.data, str.size);
pseparations->names[i].size = str.size;
pseparations->names[i].data = sep_name;
}
}
pseparations->num_separations = num_spot_colors;
break;
}
return 0;;
}
static int
pdf14_clist_get_param_compressed_color_list(pdf14_device * p14dev)
{
gx_device_clist_writer * cldev = (gx_device_clist_writer *)p14dev->pclist_device;
gs_c_param_list param_list;
keyname_link_list_t * pkeyname_list_head = NULL;
int code;
/*
* If a put_params call fails, the device will be left in a closed
* state, but higher-level code won't notice this fact. We flag this by
* setting permanent_error, which prevents writing to the command list.
*/
if (cldev->permanent_error)
return cldev->permanent_error;
gs_c_param_list_write(¶m_list, p14dev->memory);
code = get_param_compressed_color_list_elem(p14dev,
(gs_param_list *)¶m_list,
p14dev->devn_params.compressed_color_list,
(char *)PDF14CompressedColorListParamName, &pkeyname_list_head);
get_param_spot_color_names(p14dev, (gs_param_list *)¶m_list,
&pkeyname_list_head);
if (code >= 0) {
gx_device * tdev = p14dev->target;
gs_c_param_list_read(¶m_list);
/* put_param_compressed_color_list_elem(p14dev,
(gs_param_list *)¶m_list,
&pret_comp_list, "PDF14CompressedColorList",
TOP_ENCODED_LEVEL);
put_param_pdf14_spot_names(p14dev, (gs_param_list *)¶m_list); */
#if 1
code = dev_proc(tdev, put_params)(tdev, (gs_param_list *)¶m_list);
#else
/*
* This call will put the compressed color list info into the
* clist. However there are two problems. The info goes into
* the list at the end of the list.
*/
code = cmd_put_params(cldev, (gs_param_list *)¶m_list );
#endif
}
gs_c_param_list_release(¶m_list);
free_temp_keyname_list(p14dev->memory, pkeyname_list_head);
return code;
}
/*
* This procedure will have information from the PDF 1.4 clist writing
* clist compositior device. This is information output the compressed
* color list info which is needed for the support of spot colors in
* PDF 1.4 compositing. This info needs to be passed to the PDF 1.4
* clist reading compositor. However this device is not created until
* the clist is read. To get this info to that device, we have to
* temporarily store that info in the output device. This routine saves
* that info in the output device.
*/
int
pdf14_put_devn_params(gx_device * pdev, gs_devn_params * pdevn_params,
gs_param_list * plist)
{
int code = put_param_compressed_color_list_elem(pdev, plist,
&pdevn_params->pdf14_compressed_color_list,
(char *)PDF14CompressedColorListParamName, TOP_ENCODED_LEVEL);
if (code >= 0)
code = put_param_pdf14_spot_names(pdev,
&pdevn_params->pdf14_separations, plist);
return code;
}
/*
* When we are banding, we have two PDF 1.4 compositor devices. One for
* when we are creating the clist. The second is for imaging the data from
* the clist. This routine is part of the clist writing PDF 1.4 device.
* This routine is only called once the PDF 1.4 clist write compositor already
* exists.
*/
static int
pdf14_clist_create_compositor(gx_device * dev, gx_device ** pcdev,
const gs_composite_t * pct, gs_imager_state * pis, gs_memory_t * mem)
{
pdf14_clist_device * pdev = (pdf14_clist_device *)dev;
int code;
bool sep_target;
/* We only handle a few PDF 1.4 transparency operations 4 */
if (gs_is_pdf14trans_compositor(pct)) {
const gs_pdf14trans_t * pdf14pct = (const gs_pdf14trans_t *) pct;
switch (pdf14pct->params.pdf14_op) {
case PDF14_PUSH_DEVICE:
/* Re-activate the PDF 1.4 compositor */
pdev->saved_target_color_info = pdev->target->color_info;
pdev->target->color_info = pdev->color_info;
pdev->saved_target_encode_color = pdev->target->procs.encode_color;
pdev->saved_target_decode_color = pdev->target->procs.decode_color;
pdev->target->procs.encode_color = pdev->procs.encode_color = pdev->my_encode_color;
pdev->target->procs.decode_color = pdev->procs.decode_color = pdev->my_decode_color;
pdev->saved_target_get_color_mapping_procs = pdev->target->procs.get_color_mapping_procs;
pdev->saved_target_get_color_comp_index = pdev->target->procs.get_color_comp_index;
pdev->target->procs.get_color_mapping_procs = pdev->procs.get_color_mapping_procs = pdev->my_get_color_mapping_procs;
pdev->target->procs.get_color_comp_index = pdev->procs.get_color_comp_index = pdev->my_get_color_comp_index;
pdev->save_get_cmap_procs = pis->get_cmap_procs;
pis->get_cmap_procs = pdf14_get_cmap_procs;
gx_set_cmap_procs(pis, dev);
code = pdf14_recreate_clist_device(mem, pis, dev, pdf14pct);
pdev->blend_mode = pdev->text_knockout = 0;
pdev->opacity = pdev->shape = 0.0;
if (code < 0)
return code;
/*
* This routine is part of the PDF 1.4 clist write device.
* Change the compositor procs to not create another since we
* do not need to create a chain of identical devices.
*/
{
gs_composite_t pctemp = *pct;
pctemp.type = &gs_composite_pdf14trans_no_clist_writer_type;
code = dev_proc(pdev->target, create_compositor)
(pdev->target, pcdev, &pctemp, pis, mem);
*pcdev = dev;
return code;
}
case PDF14_POP_DEVICE:
/* Restore the color_info for the clist device */
pdev->target->color_info = pdev->saved_target_color_info;
pdev->target->procs.encode_color = pdev->saved_target_encode_color;
pdev->target->procs.decode_color = pdev->saved_target_decode_color;
pdev->target->procs.get_color_mapping_procs = pdev->saved_target_get_color_mapping_procs;
pdev->target->procs.get_color_comp_index = pdev->saved_target_get_color_comp_index;
pis->get_cmap_procs = pdev->save_get_cmap_procs;
gx_set_cmap_procs(pis, pdev->target);
/*
* For spot colors we use a 'compressed encoding' for
* gx_color_index values. Send the related data struct
* to the clist.
*/
pdf14_clist_get_param_compressed_color_list(pdev);
/* Disable the PDF 1.4 compositor */
pdf14_disable_clist_device(mem, pis, dev);
/*
* Make sure that the transfer funtions, etc. are current.
*/
code = cmd_put_color_mapping(
(gx_device_clist_writer *)(pdev->target), pis);
if (code < 0)
return code;
break;
case PDF14_BEGIN_TRANS_GROUP:
/*
* Keep track of any changes made in the blending parameters.
*/
pdev->text_knockout = pdf14pct->params.Knockout;
pdev->blend_mode = pdf14pct->params.blend_mode;
pdev->opacity = pdf14pct->params.opacity.alpha;
pdev->shape = pdf14pct->params.shape.alpha;
if (pdf14pct->params.Background_components != 0 &&
pdf14pct->params.Background_components != pdev->color_info.num_components)
return_error(gs_error_rangecheck);
/* We need to update the clist writer device procs based upon the
the group color space. For simplicity, the list item is created even if the
color space did not change */
/* First store the current ones */
pdf14_push_parent_color(dev, pis);
/* Now update the device procs. Not
if we have a sep target though */
sep_target = (strcmp(pdev->dname, "pdf14clistcustom") == 0) || (strcmp(pdev->dname, "pdf14clistcmykspot") == 0);
if (!sep_target)
code = pdf14_update_device_color_procs_push_c(dev,
pdf14pct->params.group_color,pis);
/* Note that our initial device buffer may have had a different color space
than the first transparency group. In such a case, we really should force
this first group to be isolated, anytime that the parent color space is
different than its child group, it should be isolated, per the PDF spec */
/* MJV */
/* if (code == 1){
isolated = true;
if_debug0('v', "[v]Transparency group color space change\n");
} else {
isolated = ptgp->Isolated;
} */
break;
case PDF14_BEGIN_TRANS_MASK:
/* We need to update the clist writer device procs based upon the
the group color space. For simplicity, the list item is created even if the
color space did not change */
/* First store the current ones */
pdf14_push_parent_color(dev, pis);
/* Now update the device procs */
code = pdf14_update_device_color_procs_push_c(dev,
pdf14pct->params.group_color,pis);
/* Also, if the BC is a value that may end up as
something other than transparent. We must
use the parent colors bounding box in
determining the range of bands in which
this mask can affect. So, if needed change
the masks bounding box at this time */
break;
/* When we get a trans group pop, we need to update the color mapping procs */
case PDF14_END_TRANS_GROUP:
/* We need to update the clist writer device procs based upon the
the group color space. */
/* First restore our procs */
code = pdf14_update_device_color_procs_pop_c(dev,pis);
/* Now pop the old one */
pdf14_pop_parent_color(dev, pis);
break;
case PDF14_END_TRANS_MASK:
/* We need to update the clist writer device procs based upon the
the group color space. */
/* First restore our procs */
code = pdf14_update_device_color_procs_pop_c(dev,pis);
/* Now pop the old one */
pdf14_pop_parent_color(dev, pis);
break;
case PDF14_PUSH_TRANS_STATE:
break;
case PDF14_POP_TRANS_STATE:
break;
default:
break; /* Pass remaining ops to target */
}
}
code = dev_proc(pdev->target, create_compositor)
(pdev->target, pcdev, pct, pis, mem);
if (*pcdev != pdev->target)
rc_assign(pdev->target, *pcdev, "pdf14_clist_create_compositor");
*pcdev = dev;
return code;
}
/*
* The PDF 1.4 clist compositor is never removed. (We do not have a 'remove
* compositor' method. However the compositor is disabled when we are not
* doing a page which uses PDF 1.4 transparency. This routine is only active
* when the PDF 1.4 compositor is 'disabled'. It checks for reenabling the
* PDF 1.4 compositor. Otherwise it simply passes create compositor requests
* to the targer.
*/
static int
pdf14_clist_forward_create_compositor(gx_device * dev, gx_device * * pcdev,
const gs_composite_t * pct, gs_imager_state * pis,
gs_memory_t * mem)
{
pdf14_device *pdev = (pdf14_device *)dev;
gx_device * tdev = pdev->target;
gx_device * ndev;
int code = 0;
*pcdev = dev;
if (gs_is_pdf14trans_compositor(pct)) {
const gs_pdf14trans_t * pdf14pct = (const gs_pdf14trans_t *) pct;
if (pdf14pct->params.pdf14_op == PDF14_PUSH_DEVICE)
return pdf14_clist_create_compositor(dev, &ndev, pct, pis, mem);
return 0;
}
code = dev_proc(tdev, create_compositor)(tdev, &ndev, pct, pis, mem);
if (code < 0)
return code;
pdev->target = ndev;
return 0;
}
/*
* If any of the PDF 1.4 transparency blending parameters have changed, we
* need to send them to the PDF 1.4 compositor on the output side of the clist.
*/
static int
pdf14_clist_update_params(pdf14_clist_device * pdev, const gs_imager_state * pis)
{
gs_pdf14trans_params_t params = { 0 };
gx_device * pcdev;
int changed = 0;
int code = 0;
params.pdf14_op = PDF14_SET_BLEND_PARAMS;
if (pis->blend_mode != pdev->blend_mode) {
changed |= PDF14_SET_BLEND_MODE;
params.blend_mode = pdev->blend_mode = pis->blend_mode;
}
if (pis->text_knockout != pdev->text_knockout) {
changed |= PDF14_SET_TEXT_KNOCKOUT;
params.text_knockout = pdev->text_knockout = pis->text_knockout;
}
if (pis->shape.alpha != pdev->shape) {
changed |= PDF14_SET_SHAPE_ALPHA;
params.shape.alpha = pdev->shape = pis->shape.alpha;
}
if (pis->opacity.alpha != pdev->opacity) {
changed |= PDF14_SET_OPACITY_ALPHA;
params.opacity.alpha = pdev->opacity = pis->opacity.alpha;
}
if (pis->overprint != pdev->overprint) {
changed |= PDF14_SET_OVERPRINT;
params.overprint = pdev->overprint = pis->overprint;
}
if (pis->overprint_mode != pdev->overprint_mode) {
changed |= PDF14_SET_OVERPRINT_MODE;
params.overprint_mode = pdev->overprint_mode = pis->overprint_mode;
}
/*
* Put parameters into a compositor parameter and then call the
* create_compositor. This will pass the data through the clist
* to the PDF 1.4 transparency output device. Note: This action
* never creates a new PDF 1.4 compositor and it does not change
* the imager state.
*/
if (changed != 0) {
params.changed = changed;
code = send_pdf14trans((gs_imager_state *)pis, (gx_device *)pdev,
&pcdev, ¶ms, pis->memory);
}
return code;
}
/*
* fill_path routine for the PDF 1.4 transaprency compositor device for
* writing the clist.
*/
static int
pdf14_clist_fill_path(gx_device *dev, const gs_imager_state *pis,
gx_path *ppath, const gx_fill_params *params,
const gx_drawing_color *pdcolor,
const gx_clip_path *pcpath)
{
pdf14_clist_device * pdev = (pdf14_clist_device *)dev;
gs_imager_state new_is = *pis;
int code;
gs_pattern2_instance_t *pinst = NULL;
/*
* Ensure that that the PDF 1.4 reading compositor will have the current
* blending parameters. This is needed since the fill_rectangle routines
* do not have access to the imager state. Thus we have to pass any
* changes explictly.
*/
code = pdf14_clist_update_params(pdev, pis);
if (code < 0)
return code;
/* If we are doing a shading fill and we are in a tranparency
group of a different color space, then we do not want to
do the shading in the device color space. It must occur in
the source space. To handle it in the device space would
require knowing all the nested transparency group color spaces
as well as the transparency. Some of the shading code
ignores this, so we have to pass on the clist_writer device
to enable proper mapping to the transparency group color space. */
if (pdcolor != NULL && gx_dc_is_pattern2_color(pdcolor) && pdev->trans_group_parent_cmap_procs != NULL) {
pinst =
(gs_pattern2_instance_t *)pdcolor->ccolor.pattern;
pinst->saved->has_transparency = true;
/* The transparency color space operations are driven
by the pdf14 clist writer device. */
pinst->saved->trans_device = dev;
}
/*
* The blend operations are not idempotent. Force non-idempotent
* filling and stroking operations.
*/
new_is.log_op |= lop_pdf14;
new_is.trans_device = dev;
new_is.has_transparency = true;
code = gx_forward_fill_path(dev, &new_is, ppath, params, pdcolor, pcpath);
new_is.trans_device = NULL;
new_is.has_transparency = false;
if (pinst != NULL){
pinst->saved->trans_device = NULL;
}
return code;
}
/*
* stroke_path routine for the PDF 1.4 transaprency compositor device for
* writing the clist.
*/
static int
pdf14_clist_stroke_path(gx_device *dev, const gs_imager_state *pis,
gx_path *ppath, const gx_stroke_params *params,
const gx_drawing_color *pdcolor,
const gx_clip_path *pcpath)
{
pdf14_clist_device * pdev = (pdf14_clist_device *)dev;
gs_imager_state new_is = *pis;
int code;
/*
* Ensure that that the PDF 1.4 reading compositor will have the current
* blending parameters. This is needed since the fill_rectangle routines
* do not have access to the imager state. Thus we have to pass any
* changes explictly.
*/
code = pdf14_clist_update_params(pdev, pis);
if (code < 0)
return code;
/*
* The blend operations are not idempotent. Force non-idempotent
* filling and stroking operations.
*/
new_is.log_op |= lop_pdf14;
return gx_forward_stroke_path(dev, &new_is, ppath, params, pdcolor, pcpath);
}
/*
* text_begin routine for the PDF 1.4 transaprency compositor device for
* writing the clist.
*/
static int
pdf14_clist_text_begin(gx_device * dev, gs_imager_state * pis,
const gs_text_params_t * text, gs_font * font,
gx_path * path, const gx_device_color * pdcolor,
const gx_clip_path * pcpath, gs_memory_t * memory,
gs_text_enum_t ** ppenum)
{
pdf14_clist_device * pdev = (pdf14_clist_device *)dev;
gs_text_enum_t *penum;
int code;
/*
* Ensure that that the PDF 1.4 reading compositor will have the current
* blending parameters. This is needed since the fill_rectangle routines
* do not have access to the imager state. Thus we have to pass any
* changes explictly.
*/
code = pdf14_clist_update_params(pdev, pis);
if (code < 0)
return code;
/* Pass text_begin to the target */
code = gx_forward_text_begin(dev, pis, text, font, path,
pdcolor, pcpath, memory, &penum);
if (code < 0)
return code;
*ppenum = (gs_text_enum_t *)penum;
return code;
}
static int
pdf14_clist_begin_image(gx_device * dev,
const gs_imager_state * pis, const gs_image_t * pim,
gs_image_format_t format, const gs_int_rect * prect,
const gx_drawing_color * pdcolor,
const gx_clip_path * pcpath,
gs_memory_t * memory, gx_image_enum_common_t ** pinfo)
{
pdf14_clist_device * pdev = (pdf14_clist_device *)dev;
int code;
/*
* Ensure that that the PDF 1.4 reading compositor will have the current
* blending parameters. This is needed since the fill_rectangle routines
* do not have access to the imager state. Thus we have to pass any
* changes explictly.
*/
code = pdf14_clist_update_params(pdev, pis);
if (code < 0)
return code;
/* Pass image to the target */
code = gx_forward_begin_image(dev, pis, pim, format, prect,
pdcolor, pcpath, memory, pinfo);
if (code < 0)
return gx_default_begin_image(dev, pis, pim, format, prect,
pdcolor, pcpath, memory, pinfo);
else return code;
}
static int
pdf14_clist_begin_typed_image(gx_device * dev, const gs_imager_state * pis,
const gs_matrix *pmat, const gs_image_common_t *pic,
const gs_int_rect * prect,
const gx_drawing_color * pdcolor,
const gx_clip_path * pcpath, gs_memory_t * mem,
gx_image_enum_common_t ** pinfo)
{
pdf14_clist_device * pdev = (pdf14_clist_device *)dev;
int code;
gs_imager_state * pis_noconst = (gs_imager_state *)pis; /* Break 'const'. */
/*
* Ensure that that the PDF 1.4 reading compositor will have the current
* blending parameters. This is needed since the fill_rectangle routines
* do not have access to the imager state. Thus we have to pass any
* changes explictly.
*/
code = pdf14_clist_update_params(pdev, pis);
if (code < 0)
return code;
/* Pass image to the target */
/* Do a quick change to the imager state
so that if we can return with -1 in
case the clist writer cannot handle
this image itself. In such a case,
we want to make sure we dont use the
target device. I don't necc. like
doing it this way. Probably need to
go back and do something a bit
more elegant. */
pis_noconst->has_transparency = true;
code = gx_forward_begin_typed_image(dev, pis, pmat,
pic, prect, pdcolor, pcpath, mem, pinfo);
if (code < 0){
code = gx_default_begin_typed_image(dev, pis, pmat, pic, prect,
pdcolor, pcpath, mem, pinfo);
pis_noconst->has_transparency = false;
return code;
} else {
pis_noconst->has_transparency = false;
return code;
}
}
/*
* When we push a PDF 1.4 transparency compositor onto the clist, we also need
* to create a compositing device for clist writing. The primary purpose of
* this device is to provide support for the process color model in which
* the PDF 1.4 transparency is done. (This may differ from the process color
* model of the output device.) The actual work of compositing the image is
* done on the output (reader) side of the clist.
*/
static int
c_pdf14trans_clist_write_update(const gs_composite_t * pcte, gx_device * dev,
gx_device ** pcdev, gs_imager_state * pis, gs_memory_t * mem)
{
gx_device_clist_writer * const cdev = &((gx_device_clist *)dev)->writer;
const gs_pdf14trans_t * pdf14pct = (const gs_pdf14trans_t *) pcte;
pdf14_clist_device * p14dev;
int code = 0;
p14dev = (pdf14_clist_device *)(*pcdev);
/* We only handle the push/pop operations */
switch (pdf14pct->params.pdf14_op) {
case PDF14_PUSH_DEVICE:
code = pdf14_create_clist_device(mem, pis, pcdev, dev, pdf14pct);
/*
* Set the color_info of the clist device to match the compositing
* device. We will restore it when the compositor is popped.
* See pdf14_clist_create_compositor for the restore. Do the
* same with the imager state's get_cmap_procs. We do not want
* the imager state to use transfer functions on our color values.
* The transfer functions will be applied at the end after we
* have done our PDF 1.4 blend operations.
*/
/*
* Also if the bit depth is not 8 per channel we need to adjust
* as all the pdf14 compositing code is for 8 bits per channel.
* The clist writer device uses this information to make sure
* the proper bit depth is written. If we are using compressed
* color enconding, the color is written in a gx_color_index
* even for more than 8 components.
*/
p14dev = (pdf14_clist_device *)(*pcdev);
if (cdev->clist_color_info.num_components * 8 != cdev->clist_color_info.depth &&
p14dev->my_encode_color != pdf14_compressed_encode_color)
cdev->clist_color_info.depth = cdev->clist_color_info.num_components * 8;
p14dev->saved_target_color_info = dev->color_info;
dev->color_info = (*pcdev)->color_info;
p14dev->saved_target_encode_color = dev->procs.encode_color;
p14dev->saved_target_decode_color = dev->procs.decode_color;
dev->procs.encode_color = p14dev->procs.encode_color = p14dev->my_encode_color;
dev->procs.decode_color = p14dev->procs.decode_color = p14dev->my_decode_color;
p14dev->saved_target_get_color_mapping_procs = dev->procs.get_color_mapping_procs;
p14dev->saved_target_get_color_comp_index = dev->procs.get_color_comp_index;
dev->procs.get_color_mapping_procs = p14dev->procs.get_color_mapping_procs = p14dev->my_get_color_mapping_procs;
dev->procs.get_color_comp_index = p14dev->procs.get_color_comp_index = p14dev->my_get_color_comp_index;
p14dev->save_get_cmap_procs = pis->get_cmap_procs;
pis->get_cmap_procs = pdf14_get_cmap_procs;
gx_set_cmap_procs(pis, dev);
return code;
case PDF14_POP_DEVICE:
# if 0 /* Disabled because pdf14_clist_create_compositor does so. */
/*
* Ensure that the tranfer functions, etc. are current before we
* dump our transparency image to the output device.
*/
if (pis->dev_ht)
code = cmd_put_halftone((gx_device_clist_writer *)
(((pdf14_clist_device *)dev)->target), pis->dev_ht);
# else
code = 0;
# endif
code = clist_writer_check_empty_cropping_stack(cdev);
break;
case PDF14_BEGIN_TRANS_GROUP:
{ /* HACK: store mask_id into our params for subsequent
calls of c_pdf14trans_write. To do this we must
break const. */
gs_pdf14trans_t * pdf14pct_noconst;
pdf14pct_noconst = (gs_pdf14trans_t *) pcte;
/* What ever the current mask ID is, that is the
softmask group through which this transparency
group must be rendered. Store it now. */
pdf14pct_noconst->params.mask_id = cdev->mask_id;
if_debug1('v', "[v]c_pdf14trans_clist_write_update group mask_id=%d \n", cdev->mask_id);
}
break;
case PDF14_END_TRANS_GROUP:
code = 0; /* A place for breakpoint. */
break;
case PDF14_BEGIN_TRANS_MASK:
/* A new mask has been started */
cdev->mask_id = ++cdev->mask_id_count;
/* replacing is set everytime that we
have a zpushtransparencymaskgroup */
{ /* HACK: store mask_id into our params for subsequent
calls of c_pdf14trans_write. To do this we must
break const. */
gs_pdf14trans_t * pdf14pct_noconst;
pdf14pct_noconst = (gs_pdf14trans_t *) pcte;
pdf14pct_noconst->params.mask_id = cdev->mask_id;
if_debug1('v', "[v]c_pdf14trans_clist_write_update mask mask_id=%d \n", cdev->mask_id);
}
break;
case PDF14_END_TRANS_MASK:
code = 0; /* A place for breakpoint. */
break;
case PDF14_PUSH_TRANS_STATE:
code = 0; /* A place for breakpoint. */
break;
case PDF14_POP_TRANS_STATE:
code = 0; /* A place for breakpoint. */
break;
default:
break; /* do nothing for remaining ops */
}
*pcdev = dev;
if (code < 0)
return code;
/* See c_pdf14trans_write, c_pdf14trans_adjust_ctm, and
apply_create_compositor. */
code = gs_imager_setmatrix(&cdev->imager_state, &pdf14pct->params.ctm);
/* Wrote an extra ctm. */
cmd_clear_known(cdev, ctm_known);
return code;
}
/*
* When we push a PDF 1.4 transparency compositor, we need to make the clist
* device color_info data match the compositing device. We need to do this
* since the PDF 1.4 transparency compositing device may use a different
* process color model than the output device. We do not need to modify the
* color related device procs since the compositing device has its own. We
* restore the color_info data when the transparency device is popped.
*/
static int
c_pdf14trans_clist_read_update(gs_composite_t * pcte, gx_device * cdev,
gx_device * tdev, gs_imager_state * pis, gs_memory_t * mem)
{
pdf14_device * p14dev = (pdf14_device *)tdev;
gs_pdf14trans_t * pdf14pct = (gs_pdf14trans_t *) pcte;
gs_devn_params * pclist_devn_params;
/*
* We only handle the push/pop operations. Save and restore the color_info
* field for the clist device. (This is needed since the process color
* model of the clist device needs to match the PDF 1.4 compositing
* device.
*/
switch (pdf14pct->params.pdf14_op) {
case PDF14_PUSH_DEVICE:
# if 0 /* Disabled because *p14dev has no forwarding methods during the clist playback.
This code is not executed while clist writing. */
p14dev->saved_target_color_info = cdev->color_info;
cdev->color_info = p14dev->color_info;
*/
# endif
/*
* If we are blending using spot colors (i.e. the output device
* supports spot colors) then we need to transfer compressed
* color info from the clist PDF 1.4 compositing reader device
* to the clist writer PDF 1.4 compositing device.
* This info was transfered from that device to the output
* device as a set of device parameters. However the clist
* reader PDF 1.4 compositing device did not exist when the
* device parameters were read from the clist. So that info
* was buffered into the output device.
*/
pclist_devn_params = dev_proc(cdev, ret_devn_params)(cdev);
if (pclist_devn_params != NULL) {
int num_comp = p14dev->color_info.num_components;
/*
* The number of components for the PDF14 device is the sum
* of the process components and the number of spot colors
* for the page.
*/
p14dev->devn_params.page_spot_colors =
pclist_devn_params->page_spot_colors;
p14dev->color_info.num_components =
p14dev->devn_params.num_std_colorant_names +
p14dev->devn_params.page_spot_colors;
/* Transfer the data for the compressed color encoding. */
/* free_compressed_color_list(p14dev->memory,
p14dev->devn_params.compressed_color_list); */
p14dev->devn_params.compressed_color_list =
pclist_devn_params->pdf14_compressed_color_list;
/* free_separation_names(p14dev->memory,
&p14dev->devn_params.separations); */
p14dev->devn_params.separations =
pclist_devn_params->pdf14_separations;
if ( num_comp != p14dev->color_info.num_components) {
dev_proc(tdev, open_device) (tdev);
dev_proc(tdev, open_device) (tdev);
}
}
break;
case PDF14_POP_DEVICE:
# if 0 /* Disabled because *p14dev has no forwarding methods during the clist playback.
This code is not executed while clist writing. */
cdev->color_info = p14dev->saved_target_color_info;
# endif
break;
default:
break; /* do nothing for remaining ops */
}
return 0;
}
/*
* Get cropping for the compositor command.
*/
static int
c_pdf14trans_get_cropping(const gs_composite_t *pcte, int *ry, int *rheight, int cropping_min, int cropping_max)
{
gs_pdf14trans_t * pdf14pct = (gs_pdf14trans_t *) pcte;
switch (pdf14pct->params.pdf14_op) {
case PDF14_PUSH_DEVICE: return 0; /* Applies to all bands. */
case PDF14_POP_DEVICE: return 0; /* Applies to all bands. */
case PDF14_BEGIN_TRANS_GROUP:
{ gs_int_rect rect;
int code;
code = pdf14_compute_group_device_int_rect(&pdf14pct->params.ctm, &pdf14pct->params.bbox, &rect);
/* We have to crop this by the parent object. */
*ry = max(rect.p.y, cropping_min);
*rheight = min(rect.q.y, cropping_max) - *ry;
return 1; /* Push cropping. */
}
case PDF14_BEGIN_TRANS_MASK:
{ gs_int_rect rect;
int code;
code = pdf14_compute_group_device_int_rect(&pdf14pct->params.ctm, &pdf14pct->params.bbox, &rect);
/* We have to crop this by the parent object and worry about the BC outside the range */
if ( pdf14pct->params.GrayBackground == 1.0 ) {
/* In this case there will not be a background effect to worry about. The mask will
not have any effect outside the bounding box. This is NOT the default or common case. */
*ry = max(rect.p.y, cropping_min);
*rheight = min(rect.q.y, cropping_max) - *ry;
return 1; /* Push cropping. */
} else {
/* We need to make the soft mask range as large as the parent due to the
fact that the background color can have an impact OUTSIDE the bounding
box of the soft mask */
*ry = cropping_min;
*rheight = cropping_max - cropping_min;
return 1; /* Push cropping. */
}
}
case PDF14_END_TRANS_GROUP: return 2; /* Pop cropping. */
case PDF14_END_TRANS_MASK: return 2; /* Pop the cropping */
case PDF14_PUSH_TRANS_STATE: return 3;
case PDF14_POP_TRANS_STATE: return 3;
case PDF14_SET_BLEND_PARAMS: return 3;
}
return 0;
}
/*
* This routine will check to see if the color component name matches those
* that are available amoung the current device's color components. If the
* color name is known to the output device then we add it to the list of
* colorants for the PDF 1.4 transparency compositor.
*
* Notes: There are currently three different versions of The PDF 1.4
* transparency compositor device. The choice of which one is being used
* depends upon the process color model of the output device. This procedure
* is only used if the output (target) device uses a CMYK plus spot color
* process color model.
*
* Parameters:
* dev - pointer to device data structure.
* pname - pointer to name (zero termination not required)
* nlength - length of the name
*
* This routine returns a positive value (0 to n) which is the device colorant
* number if the name is found. It returns GX_DEVICE_COLOR_MAX_COMPONENTS if
* the colorant is not being used due to a SeparationOrder device parameter.
* It returns a negative value if not found.
*/
static int
pdf14_cmykspot_get_color_comp_index(gx_device * dev, const char * pname,
int name_size, int component_type)
{
pdf14_device * pdev = (pdf14_device *) dev;
gx_device * tdev = pdev->target;
gs_devn_params * pdevn_params = &pdev->devn_params;
gs_separations * pseparations = &pdevn_params->separations;
int comp_index;
dev_proc_get_color_comp_index(*target_get_color_comp_index) = dev_proc(tdev, get_color_comp_index);
/* The pdf14_clist_create_compositor may have set the color procs. We need the real target procs */
if (target_get_color_comp_index == pdf14_cmykspot_get_color_comp_index)
target_get_color_comp_index = ((pdf14_clist_device *)pdev)->saved_target_get_color_comp_index;
/*
* If this is not a separation name then simply forward it to the target
* device.
*/
if (component_type == NO_COMP_NAME_TYPE)
return (*target_get_color_comp_index)(tdev, pname, name_size, component_type);
/*
* Check if the component is in either the process color model list
* or in the SeparationNames list.
*/
comp_index = check_pcm_and_separation_names(dev, pdevn_params,
pname, name_size, component_type);
/*
* Return the colorant number if we know this name.
*/
if (comp_index >= 0)
return comp_index;
/*
* If we do not know this color, check if the output (target) device does.
*/
comp_index = (*target_get_color_comp_index)(tdev, pname, name_size, component_type);
/*
* Ignore color if unknown to the output device or if color is not being
* imaged due to the SeparationOrder device parameter.
*/
if (comp_index < 0 || comp_index == GX_DEVICE_COLOR_MAX_COMPONENTS)
return comp_index;
/*
* This is a new colorant. Add it to our list of colorants.
*/
if (pseparations->num_separations < GX_DEVICE_COLOR_MAX_COMPONENTS - 1) {
int sep_num = pseparations->num_separations++;
int color_component_number;
byte * sep_name;
sep_name = gs_alloc_bytes(dev->memory,
name_size, "pdf14_cmykspot_get_color_comp_index");
memcpy(sep_name, pname, name_size);
pseparations->names[sep_num].size = name_size;
pseparations->names[sep_num].data = sep_name;
color_component_number = sep_num + pdevn_params->num_std_colorant_names;
if (color_component_number >= dev->color_info.num_components)
color_component_number = GX_DEVICE_COLOR_MAX_COMPONENTS;
else
pdevn_params->separation_order_map[color_component_number] =
color_component_number;
return color_component_number;
}
return GX_DEVICE_COLOR_MAX_COMPONENTS;
}
|