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
|
/* Copyright (C) 1995-2005 Ghostgum Software Pty Ltd. All rights reserved.
This software is provided AS-IS with no warranty, either express or
implied.
This software is distributed under licence and may not be copied,
modified or distributed except as expressly authorised under the terms
of the licence contained in the file LICENCE in this distribution.
For more information about licensing, please refer to
http://www.ghostgum.com.au/ or contact Ghostsgum Software Pty Ltd,
218 Gallaghers Rd, Glen Waverley VIC 3150, AUSTRALIA,
Fax +61 3 9886 6616.
*/
/* $Id: epstool.c,v 1.69 2005/06/10 08:45:36 ghostgum Exp $ */
#include "common.h"
#include "dscparse.h"
#include "errors.h"
#include "iapi.h"
#include "gdevdsp.h"
#define DEFINE_COPT
#include "copt.h"
#define DEFINE_CAPP
#include "capp.h"
#include "cbmp.h"
#define DEFINE_CDOC
#include "cdoc.h"
#include "cdll.h"
#include "cgssrv.h"
#include "cmac.h"
#include "ceps.h"
#include "cimg.h"
#include "cpagec.h"
#include "cres.h"
#ifdef __WIN32__
#include "wgsver.h"
#endif
#if defined(UNIX) || defined(OS2)
#include <fcntl.h>
#include <sys/wait.h>
#include <errno.h>
#endif
const char *epstool_name = "epstool";
const char *epstool_version = "3.08"; /* should be EPSTOOL_VERSION */
const char *epstool_date = "2005-06-06"; /* should be EPSTOOL_DATE */
const char *copyright = "Copyright 1995-2005 Ghostgum Software Pty Ltd";
const char *cmd_help = "\
Commands (one only):\n\
--add-tiff4-preview or -t4\n\
--add-tiff6u-preview or -t6u\n\
--add-tiff6p-preview or -t6p\n\
--add-tiff-preview or -tg\n\
--add-interchange-preview or -i\n\
--add-metafile-preview or -w\n\
--add-pict-preview\n\
--add-user-preview filename\n\
--dcs2-multi\n\
--dcs2-single\n\
--dcs2-report\n\
--extract-postscript or -p\n\
--extract-preview or -v\n\
--bitmap\n\
--copy\n\
--dump\n\
--help or -h\n\
--test-eps\n\
--version\n\
";
const char *opt_help = "\
Options:\n\
--bbox or -b\n\
--combine-separations filename\n\
--combine-tolerance pts\n\
--custom-colours filename\n\
--debug or -d\n\
--device name\n\
--doseps-reverse\n\
--dpi resolution\n\
--dpi-render resolution\n\
--ignore-information\n\
--ignore-warnings\n\
--ignore-errors\n\
--gs command\n\
--gs-args arguments\n\
--mac-binary\n\
--mac-double\n\
--mac-rsrc\n\
--mac-single\n\
--missing-separations\n\
--output filename\n\
--page-number\n\
--quiet\n\
--rename-separation old_name new_name\n\
--replace-composite\n\
";
typedef enum {
CMD_UNKNOWN,
CMD_TIFF4,
CMD_TIFF6U,
CMD_TIFF6P,
CMD_TIFF,
CMD_INTERCHANGE,
CMD_WMF,
CMD_PICT,
CMD_USER,
CMD_DCS2_MULTI,
CMD_DCS2_SINGLE,
CMD_DCS2_REPORT,
CMD_PREVIEW,
CMD_POSTSCRIPT,
CMD_BITMAP,
CMD_COPY,
CMD_DUMP,
CMD_HELP,
CMD_TEST,
CMD_VERSION
} CMD;
typedef enum{
CUSTOM_CMYK,
CUSTOM_RGB
} CUSTOM_COLOUR_TYPE;
typedef struct CUSTOM_COLOUR_s CUSTOM_COLOUR;
struct CUSTOM_COLOUR_s {
char name[MAXSTR];
CUSTOM_COLOUR_TYPE type;
/* if type=CUSTOM_CMYK */
float cyan;
float magenta;
float yellow;
float black;
/* if type=CUSTOM_RGB */
float red;
float green;
float blue;
/* Next colour */
CUSTOM_COLOUR *next;
};
typedef struct OPT_s {
CMD cmd;
TCHAR device[64]; /* --device name for --bitmap or --add-tiff-preview */
BOOL composite; /* --replace-composite */
BOOL bbox; /* --bbox */
int dscwarn; /* --ignore-warnings etc. */
TCHAR gs[MAXSTR]; /* --gs command */
TCHAR gsargs[MAXSTR*4]; /* --gs-args arguments */
TCHAR input[MAXSTR]; /* filename */
TCHAR output[MAXSTR]; /* --output filename or (second) filename */
TCHAR user_preview[MAXSTR]; /* --add-user-preview filename */
BOOL quiet; /* --quiet */
BOOL debug; /* --debug */
BOOL doseps_reverse; /* --doseps-reverse */
float dpi; /* --dpi resolution */
float dpi_render; /* --dpi-render resolution */
BOOL help; /* --help */
TCHAR custom_colours[MAXSTR]; /* --custom-colours filename */
CUSTOM_COLOUR *colours;
BOOL missing_separations; /* --missing-separations */
TCHAR combine[MAXSTR]; /* --combine-separations filename */
int tolerance; /* --combine-tolerance pts */
RENAME_SEPARATION *rename_sep; /* --rename-separation */
CMAC_TYPE mac_type; /* --mac-binary, --mac-double, --mac-single */
/* or --mac-rsrc */
int page; /* --page-number for --bitmap */
int image_compress; /* IMAGE_COMPRESS_NONE, RLE, LZW */
int image_encode; /* IMAGE_ENCODE_HEX, ASCII85 */
} OPT;
#define MSGOUT stdout
#ifdef UNIX
const char gsexe[] = "gs";
#define COLOUR_DEVICE "ppmraw"
#define GREY_DEVICE "pgmraw"
#define MONO_DEVICE "pbmraw"
#endif
#ifdef OS2
TCHAR gsexe[MAXSTR] = TEXT("gsos2.exe");
#define COLOUR_DEVICE TEXT("bmp16m")
#define GREY_DEVICE TEXT("bmpgray")
#define MONO_DEVICE TEXT("bmpmono")
#endif
#ifdef _WIN32
TCHAR gsexe[MAXSTR] = TEXT("gswin32c.exe");
#define COLOUR_DEVICE TEXT("bmp16m")
#define GREY_DEVICE TEXT("bmpgray")
#define MONO_DEVICE TEXT("bmpmono")
#endif
static void print_help(void);
static void print_version(void);
static int parse_args(OPT *opt, int argc, TCHAR *argv[]);
static Doc * epstool_open_document(GSview *app, OPT *opt, TCHAR *name);
static int epstool_add_preview(Doc *doc, OPT *opt);
static int epstool_dcs2_copy(Doc *doc, Doc *doc2, OPT *opt);
static int epstool_dcs2_report(Doc *doc);
static int epstool_dcs2_composite(Doc *doc, OPT *opt, GFile *compfile);
static int epstool_dcs2_check_files(Doc *doc, OPT *opt);
static int epstool_extract(Doc *doc, OPT *opt);
static int epstool_bitmap(Doc *doc, OPT *opt);
static int epstool_copy(Doc *doc, OPT *opt);
static int epstool_copy_bitmap(Doc *doc, OPT *opt);
static int epstool_test(Doc *doc, OPT *opt);
static void epstool_dump_fn(void *caller_data, const char *str);
static IMAGE *make_preview_image(Doc *doc, OPT *opt, int page, LPCTSTR device,
CDSCBBOX *bbox, CDSCFBBOX *hires_bbox, int calc_bbox);
static int make_preview_file(Doc *doc, OPT *opt, int page,
LPCTSTR preview, LPCTSTR device,
float dpi, CDSCBBOX *bbox, CDSCFBBOX *hires_bbox, int calc_bbox);
static int calculate_bbox(Doc *doc, OPT *opt, LPCTSTR psname,
CDSCBBOX *bbox, CDSCFBBOX *hires_bbox);
static int calc_device_size(float dpi, CDSCBBOX *bbox, CDSCFBBOX *hires_bbox,
int *width, int *height, float *xoffset, float *yoffset);
static int exec_program(LPTSTR command,
int hstdin, int hstdout, int hstderr,
LPCTSTR stdin_name, LPCTSTR stdout_name, LPCTSTR stderr_name);
static int custom_colours_read(OPT *opt);
static CUSTOM_COLOUR *custom_colours_find(OPT *opt, const char *name);
static void custom_colours_free(OPT *opt);
static int colour_to_cmyk(CDSC *dsc, const char *name,
float *cyan, float *magenta, float *yellow, float *black);
static void
print_version(void)
{
fprintf(MSGOUT, "%s %s %s\n", epstool_name, epstool_version, epstool_date);
}
static void
print_help(void)
{
print_version();
fprintf(MSGOUT, "%s\n", copyright);
fprintf(MSGOUT, "Usage: epstool command [options] inputfile outputfile\n");
fprintf(MSGOUT, "%s", cmd_help);
fprintf(MSGOUT, "%s", opt_help);
}
/* return 0 on success, or argument index if there is a duplicated
* command, a missing parameter, or an unknown argument.
*/
static int
parse_args(OPT *opt, int argc, TCHAR *argv[])
{
int arg;
const TCHAR *p;
memset(opt, 0, sizeof(OPT));
opt->cmd = CMD_UNKNOWN;
opt->dpi = 72.0;
opt->dpi_render = 0.0;
opt->mac_type = CMAC_TYPE_NONE;
opt->dscwarn = CDSC_ERROR_NONE;
opt->image_encode = IMAGE_ENCODE_ASCII85;
opt->image_compress = IMAGE_COMPRESS_LZW;
csncpy(opt->gs, gsexe, sizeof(opt->gs)/sizeof(TCHAR)-1);
for (arg=1; arg<argc; arg++) {
p = argv[arg];
if ((cscmp(p, TEXT("--add-tiff4-preview")) == 0) ||
(cscmp(p, TEXT("-t4")) == 0)) {
if (opt->cmd != CMD_UNKNOWN)
return arg;
opt->cmd = CMD_TIFF4;
}
else if ((cscmp(p, TEXT("--add-tiff6u-preview")) == 0) ||
(cscmp(p, TEXT("-t6u")) == 0)) {
if (opt->cmd != CMD_UNKNOWN)
return arg;
opt->cmd = CMD_TIFF6U;
}
else if ((cscmp(p, TEXT("--add-tiff6p-preview")) == 0) ||
(cscmp(p, TEXT("-t6p")) == 0)) {
if (opt->cmd != CMD_UNKNOWN)
return arg;
opt->cmd = CMD_TIFF6P;
}
else if ((cscmp(p, TEXT("--add-tiff-preview")) == 0) ||
(cscmp(p, TEXT("-tg")) == 0)) {
if (opt->cmd != CMD_UNKNOWN)
return arg;
opt->cmd = CMD_TIFF;
}
else if ((cscmp(p, TEXT("--add-interchange-preview")) == 0) ||
(cscmp(p, TEXT("-i")) == 0)) {
if (opt->cmd != CMD_UNKNOWN)
return arg;
opt->cmd = CMD_INTERCHANGE;
}
else if ((cscmp(p, TEXT("--add-metafile-preview")) == 0) ||
(cscmp(p, TEXT("-w")) == 0)) {
if (opt->cmd != CMD_UNKNOWN)
return arg;
opt->cmd = CMD_WMF;
}
else if ((cscmp(p, TEXT("--add-pict-preview")) == 0) ||
(cscmp(p, TEXT("-w")) == 0)) {
if (opt->cmd != CMD_UNKNOWN)
return arg;
opt->cmd = CMD_PICT;
}
else if (cscmp(p, TEXT("--add-user-preview")) == 0) {
if (opt->cmd != CMD_UNKNOWN)
return arg;
opt->cmd = CMD_USER;
arg++;
if (arg == argc)
return arg;
csncpy(opt->user_preview, argv[arg],
sizeof(opt->user_preview)/sizeof(TCHAR)-1);
}
else if (cscmp(p, TEXT("--dcs2-multi")) == 0) {
if (opt->cmd != CMD_UNKNOWN)
return arg;
opt->cmd = CMD_DCS2_MULTI;
}
else if (cscmp(p, TEXT("--dcs2-single")) == 0) {
if (opt->cmd != CMD_UNKNOWN)
return arg;
opt->cmd = CMD_DCS2_SINGLE;
}
else if (cscmp(p, TEXT("--dcs2-report")) == 0) {
if (opt->cmd != CMD_UNKNOWN)
return arg;
opt->cmd = CMD_DCS2_REPORT;
}
else if (cscmp(p, TEXT("--dump")) == 0) {
if (opt->cmd != CMD_UNKNOWN)
return arg;
opt->cmd = CMD_DUMP;
}
else if (cscmp(p, TEXT("--test-eps")) == 0) {
if (opt->cmd != CMD_UNKNOWN)
return arg;
opt->cmd = CMD_TEST;
}
else if (cscmp(p, TEXT("--replace-composite")) == 0) {
opt->composite = TRUE;
}
else if (cscmp(p, TEXT("--missing-separations")) == 0) {
opt->missing_separations = TRUE;
}
else if (cscmp(p, TEXT("--combine-separations")) == 0) {
arg++;
if (arg == argc)
return arg;
csncpy(opt->combine, argv[arg], sizeof(opt->combine)/sizeof(TCHAR)-1);
}
else if (cscmp(p, TEXT("--combine-tolerance")) == 0) {
char buf[MAXSTR];
arg++;
if (arg == argc)
return arg;
cs_to_narrow(buf, (int)sizeof(buf)-1, argv[arg], (int)cslen(argv[arg])+1);
opt->tolerance = atoi(buf);
}
else if (cscmp(p, TEXT("--rename-separation")) == 0) {
RENAME_SEPARATION *rs = opt->rename_sep;
arg++;
if (arg+1 == argc)
return arg;
if (rs) {
while (rs && (rs->next != NULL))
rs = rs->next;
rs->next =
(RENAME_SEPARATION *)malloc(sizeof(RENAME_SEPARATION));
rs = rs->next;
}
else {
opt->rename_sep = rs =
(RENAME_SEPARATION *)malloc(sizeof(RENAME_SEPARATION));
}
if (rs) {
char oldname[MAXSTR];
char newname[MAXSTR];
char *p;
char *q;
int len;
memset(rs, 0, sizeof(RENAME_SEPARATION));
rs->next = NULL;
memset(oldname, 0, sizeof(oldname));
cs_to_narrow(oldname, (int)sizeof(oldname)-1,
argv[arg], (int)cslen(argv[arg])+1);
len = (int)strlen(oldname)+1;
p = (char *)malloc(len);
if (p) {
memcpy(p, oldname, len);
rs->oldname = p;
}
arg++;
memset(newname, 0, sizeof(newname));
cs_to_narrow(newname, (int)sizeof(newname)-1,
argv[arg], (int)cslen(argv[arg])+1);
len = (int)strlen(newname)+1;
q = (char *)malloc(len);
if (q) {
memcpy(q, newname, len);
rs->newname = q;
}
if ((p == NULL) || (q == NULL)) {
fprintf(stderr, "Out of memory\n");
return arg;
}
}
else {
fprintf(stderr, "Out of memory\n");
return arg;
}
}
else if (cscmp(p, TEXT("--custom-colours")) == 0) {
arg++;
if (arg == argc)
return arg;
csncpy(opt->custom_colours, argv[arg],
sizeof(opt->custom_colours)/sizeof(TCHAR)-1);
}
else if ((cscmp(p, TEXT("--extract-preview")) == 0) ||
(cscmp(p, TEXT("-v")) == 0)) {
if (opt->cmd != CMD_UNKNOWN)
return arg;
opt->cmd = CMD_PREVIEW;
}
else if ((cscmp(p, TEXT("--extract-postscript")) == 0) ||
(cscmp(p, TEXT("-p")) == 0)) {
if (opt->cmd != CMD_UNKNOWN)
return arg;
opt->cmd = CMD_POSTSCRIPT;
}
else if (cscmp(p, TEXT("--bitmap")) == 0) {
if (opt->cmd != CMD_UNKNOWN)
return arg;
opt->cmd = CMD_BITMAP;
}
else if (cscmp(p, TEXT("--copy")) == 0) {
if (opt->cmd != CMD_UNKNOWN)
return arg;
opt->cmd = CMD_COPY;
}
else if (cscmp(p, TEXT("--device")) == 0) {
arg++;
if (arg == argc)
return arg;
csncpy(opt->device, argv[arg], sizeof(opt->device)/sizeof(TCHAR)-1);
}
else if (cscmp(p, TEXT("--page-number")) == 0) {
char buf[MAXSTR];
arg++;
if (arg == argc)
return arg;
cs_to_narrow(buf, (int)sizeof(buf)-1, argv[arg],
(int)cslen(argv[arg])+1);
opt->page = atoi(buf) - 1;
if (opt->page < 0)
opt->page = 0;
}
else if ((cscmp(p, TEXT("--bbox")) == 0) ||
(cscmp(p, TEXT("-b")) == 0)) {
opt->bbox = TRUE;
}
else if (cscmp(p, TEXT("--ignore-information")) == 0) {
opt->dscwarn = CDSC_ERROR_INFORM;
}
else if (cscmp(p, TEXT("--ignore-warnings")) == 0) {
opt->dscwarn = CDSC_ERROR_WARN;
}
else if (cscmp(p, TEXT("--ignore-errors")) == 0) {
opt->dscwarn = CDSC_ERROR_ERROR;
}
else if (cscmp(p, TEXT("--gs")) == 0) {
arg++;
if (arg == argc)
return arg;
csncpy(opt->gs, argv[arg], sizeof(opt->gs)/sizeof(TCHAR)-1);
}
else if (cscmp(p, TEXT("--gs-args")) == 0) {
arg++;
if (arg == argc)
return arg;
csncpy(opt->gsargs, argv[arg], sizeof(opt->gsargs)/sizeof(TCHAR)-1);
}
else if (cscmp(p, TEXT("--mac-binary")) == 0) {
opt->mac_type = CMAC_TYPE_MACBIN;
}
else if (cscmp(p, TEXT("--mac-double")) == 0) {
opt->mac_type = CMAC_TYPE_DOUBLE;
}
else if (cscmp(p, TEXT("--mac-rsrc")) == 0) {
opt->mac_type = CMAC_TYPE_RSRC;
}
else if (cscmp(p, TEXT("--mac-single")) == 0) {
opt->mac_type = CMAC_TYPE_SINGLE;
}
else if (cscmp(p, TEXT("--output")) == 0) {
arg++;
if (arg == argc)
return arg;
csncpy(opt->output, argv[arg],
sizeof(opt->output)/sizeof(TCHAR)-1);
}
else if (cscmp(p, TEXT("--quiet")) == 0) {
opt->quiet = TRUE;
}
else if ((cscmp(p, TEXT("--debug")) == 0) ||
(cscmp(p, TEXT("-d")) == 0)) {
opt->debug = TRUE;
}
else if ((cscmp(p, TEXT("--doseps-reverse")) == 0) ||
(cscmp(p, TEXT("-d")) == 0)) {
opt->doseps_reverse = TRUE;
}
else if (cscmp(p, TEXT("--dpi")) == 0) {
char buf[MAXSTR];
arg++;
if (arg == argc)
return arg;
cs_to_narrow(buf, (int)sizeof(buf)-1, argv[arg],
(int)cslen(argv[arg])+1);
opt->dpi = (float)atof(buf);
}
else if (cscmp(p, TEXT("--dpi-render")) == 0) {
char buf[MAXSTR];
arg++;
if (arg == argc)
return arg;
cs_to_narrow(buf, (int)sizeof(buf)-1, argv[arg],
(int)cslen(argv[arg])+1);
opt->dpi_render = (float)atof(buf);
}
else if (cscmp(p, TEXT("--image-encode")) == 0) {
/* Not in user documentation - for debug purposes only */
char buf[MAXSTR];
arg++;
if (arg == argc)
return arg;
cs_to_narrow(buf, (int)sizeof(buf)-1, argv[arg],
(int)cslen(argv[arg])+1);
opt->image_encode = atoi(buf);
if ((opt->image_encode < IMAGE_ENCODE_HEX) ||
(opt->image_encode > IMAGE_ENCODE_ASCII85))
opt->image_encode = IMAGE_ENCODE_ASCII85;
}
else if (cscmp(p, TEXT("--image-compress")) == 0) {
/* Not in user documentation - for debug purposes only */
char buf[MAXSTR];
arg++;
if (arg == argc)
return arg;
cs_to_narrow(buf, (int)sizeof(buf)-1, argv[arg],
(int)cslen(argv[arg])+1);
opt->image_compress = atoi(buf);
if ((opt->image_compress < IMAGE_COMPRESS_NONE) ||
(opt->image_compress > IMAGE_COMPRESS_LZW))
opt->image_compress = IMAGE_COMPRESS_LZW;
}
else if ((cscmp(p, TEXT("--help")) == 0) || (cscmp(p, TEXT("-h"))==0)) {
opt->help = TRUE;
if (opt->cmd != CMD_UNKNOWN)
return arg;
opt->cmd = CMD_HELP;
}
else if (cscmp(p, TEXT("--version")) == 0) {
if (opt->cmd != CMD_UNKNOWN)
return arg;
opt->cmd = CMD_VERSION;
}
else if (*p != '-') {
if (opt->input[0] == 0)
csncpy(opt->input, argv[arg],
sizeof(opt->input)/sizeof(TCHAR)-1);
else if (opt->output[0] == 0)
csncpy(opt->output, argv[arg],
sizeof(opt->output)/sizeof(TCHAR)-1);
else
return arg;
}
else {
return arg;
}
}
return 0;
}
static Doc *
epstool_open_document(GSview *app, OPT *opt, TCHAR *name)
{
int code;
Doc *doc;
int require_eps = 1;
/* Create a document */
doc = doc_new(app);
if (doc == NULL) {
debug |= DEBUG_LOG;
app_csmsgf(app, TEXT("Failed to create new Doc\n"));
app_unref(app);
return NULL;
}
/* Attach it to application */
doc_add(doc, app);
doc_dsc_warn(doc, opt->dscwarn);
doc_verbose(doc, opt->debug);
code = doc_open(doc, name);
if (code < 0) {
debug |= DEBUG_LOG;
app_csmsgf(app, TEXT("Error opening file \042%s\042.\n"), name);
code = -1;
}
else if (code > 0) {
debug |= DEBUG_LOG;
app_csmsgf(app, TEXT(
"Input file \042%s\042 didn't have DSC comments.\n"), name);
code = -1;
}
/* Some features don't require an EPS input */
if (opt->cmd == CMD_DCS2_REPORT)
require_eps = 0;
if (opt->cmd == CMD_TEST)
require_eps = 0;
if (opt->cmd == CMD_DUMP)
require_eps = 0;
if ((opt->cmd == CMD_COPY) && (doc->doctype == DOC_BITMAP))
require_eps = 0;
if ((code == 0) && require_eps &&
((doc->dsc == NULL) || (!doc->dsc->epsf)) ) {
debug |= DEBUG_LOG;
app_csmsgf(app,
TEXT("Input file \042%s\042 is not EPSF.\n"), name);
code = -1;
}
if ((code == 0) && require_eps && (doc->dsc != NULL)) {
if ((doc->dsc->worst_error > CDSC_ERROR_INFORM) &&
(doc->dsc->worst_error > opt->dscwarn)) {
app_csmsgf(app,
TEXT("EPS had unacceptable warnings or errors.\n"));
code = -1;
}
}
if (code) {
doc_close(doc);
doc_remove(doc);
doc_unref(doc);
doc = NULL;
}
return doc;
}
#ifdef UNICODE
int wmain(int argc, TCHAR *argv[])
#else
int main(int argc, char *argv[])
#endif
{
GSview *app;
Doc *doc = NULL;
Doc *doc2 = NULL;
int code = 0;
int i, arg;
OPT opt;
#ifdef __WIN32__
{ /* Find latest version of Ghostscript */
char buf[MAXSTR];
if (find_gs(buf, sizeof(buf)-1, 550, FALSE)) {
narrow_to_cs(gsexe, (int)(sizeof(gsexe)/sizeof(TCHAR)-1),
buf, (int)strlen(buf)+1);
}
}
#endif
memset(&opt, 0, sizeof(opt));
arg = parse_args(&opt, argc, argv);
debug = 0;
if (opt.debug) {
debug = DEBUG_LOG | DEBUG_MEM | DEBUG_GENERAL;
opt.quiet = 0;
}
if (!opt.quiet)
debug |= DEBUG_LOG; /* enable output */
if (opt.help) {
print_help();
return 1;
}
if (opt.cmd == CMD_VERSION) {
print_version();
return 1;
}
if (opt.dpi_render < opt.dpi)
opt.dpi_render = opt.dpi;
app = app_new(NULL, FALSE);
if (app == NULL) {
fprintf(MSGOUT, "Can't create epstool app\n");
return 1;
}
if (arg != 0) {
debug |= DEBUG_LOG;
app_csmsgf(app, TEXT("epstool: Error in command line arguments:\n "));
for (i=0; i<arg; i++)
app_csmsgf(app, TEXT("%s "), argv[i]);
app_csmsgf(app, TEXT("\n The next argument is unrecognised, missing, or conflicts:\n "));
for (; i<argc; i++)
app_csmsgf(app, TEXT("%s "), argv[i]);
app_csmsgf(app, TEXT("\n"));
app_unref(app);
return 1;
}
if ((opt.cmd == CMD_TIFF) && (opt.device[0] == '\0')) {
debug |= DEBUG_LOG;
app_csmsgf(app, TEXT("--add-tiff-preview requires a device to be specified with --device\n"));
code = -1;
}
if (opt.cmd == CMD_UNKNOWN) {
debug |= DEBUG_LOG;
app_csmsgf(app, TEXT("No command specified.\n"));
code = -1;
}
if (opt.input[0] == '\0') {
debug |= DEBUG_LOG;
app_csmsgf(app, TEXT("Input file not specified.\n"));
code = -1;
}
if (opt.custom_colours[0] != '\0') {
FILE *f = csfopen(opt.custom_colours, TEXT("rb"));
if (f == (FILE*)NULL) {
debug |= DEBUG_LOG;
app_csmsgf(app, TEXT("Failed to open \042%s\042.\n"),
opt.custom_colours);
code = -1;
}
else
fclose(f);
}
if (code == 0) {
FILE *f = csfopen(opt.input, TEXT("rb"));
if (f == (FILE*)NULL) {
debug |= DEBUG_LOG;
app_csmsgf(app, TEXT("Failed to open \042%s\042.\n"), opt.input);
code = -1;
}
else
fclose(f);
}
if ((opt.output[0] == '\0') &&
!((opt.cmd == CMD_DCS2_REPORT) ||
(opt.cmd == CMD_TEST) ||
(opt.cmd == CMD_DUMP)) ) {
debug |= DEBUG_LOG;
app_csmsgf(app, TEXT("Output file not specified.\n"));
code = -1;
}
if ((opt.output[0] == '-') && (opt.output[1] == '\0'))
opt.output[0] = '\0'; /* use stdout */
if (code != 0) {
debug |= DEBUG_LOG;
app_csmsgf(app, TEXT("Run \042epstool --help\042 for more details.\n"));
app_unref(app);
return 1;
}
if (opt.cmd == CMD_DUMP)
dump_macfile(opt.input, 1);
doc = epstool_open_document(app, &opt, opt.input);
if (doc == NULL)
code = -1;
if (opt.combine[0]) {
/* open second DCS2 input file */
doc2 = epstool_open_document(app, &opt, opt.combine);
if (doc2 == NULL)
code = -1;
}
if ((code == 0) && opt.bbox) {
switch (opt.cmd) {
case CMD_TIFF4:
case CMD_TIFF6U:
case CMD_TIFF6P:
case CMD_INTERCHANGE:
case CMD_WMF:
case CMD_COPY:
if (doc->dsc->dcs2) {
debug |= DEBUG_LOG;
app_csmsgf(app, TEXT("Ignoring --bbox for DCS 2.0.\n"));
opt.bbox = 0;
}
/* all others are these OK */
break;
default:
debug |= DEBUG_LOG;
app_csmsgf(app, TEXT(
"Can't use --bbox with this command. Ignoring --bbox.\n"));
opt.bbox = 0;
}
}
if (code == 0) {
switch (opt.cmd) {
case CMD_TIFF4:
case CMD_TIFF6U:
case CMD_TIFF6P:
case CMD_TIFF:
case CMD_INTERCHANGE:
case CMD_WMF:
case CMD_PICT:
case CMD_USER:
code = epstool_add_preview(doc, &opt);
break;
case CMD_DCS2_SINGLE:
case CMD_DCS2_MULTI:
if (doc->dsc->dcs2)
code = epstool_dcs2_check_files(doc, &opt);
if (code == 0)
code = epstool_dcs2_copy(doc, doc2, &opt);
break;
case CMD_DCS2_REPORT:
code = epstool_dcs2_report(doc);
break;
case CMD_PREVIEW:
case CMD_POSTSCRIPT:
code = epstool_extract(doc, &opt);
break;
case CMD_BITMAP:
code = epstool_bitmap(doc, &opt);
break;
case CMD_COPY:
code = epstool_copy(doc, &opt);
break;
case CMD_TEST:
code = epstool_test(doc, &opt);
break;
case CMD_DUMP:
if (doc && doc->dsc)
dsc_display(doc->dsc, epstool_dump_fn);
break;
default:
case CMD_UNKNOWN:
case CMD_HELP:
/* should reach here */
code = -1;
break;
}
}
if (doc) {
doc_close(doc);
doc_remove(doc); /* detach doc from app */
doc_unref(doc);
}
app_unref(app);
#ifdef DEBUG_MALLOC
debug_memory_report();
#endif
debug &= ~DEBUG_MEM;
while (opt.rename_sep) {
RENAME_SEPARATION *rs = opt.rename_sep;
if (rs->oldname)
free((void *)rs->oldname);
if (rs->newname)
free((void *)rs->newname);
opt.rename_sep = rs->next;
free(rs);
}
if (!opt.quiet)
fprintf(MSGOUT, "%s\n", code == 0 ? "OK" : "Failed");
if (code != 0)
return 1;
return code;
}
/****************************************************************/
static int
epstool_add_preview(Doc *doc, OPT *opt)
{
int code = 0;
CDSCBBOX devbbox = {0,0,595,842};
CDSCBBOX bbox = {0, 0, 0, 0};
CDSCFBBOX hires_bbox = {0.0, 0.0, 0.0, 0.0};
CDSCFBBOX *phires_bbox = NULL;
const TCHAR *device = COLOUR_DEVICE;
FILE *f;
TCHAR preview[MAXSTR];
IMAGE *img = NULL;
if (opt->device[0] != '\0')
device = opt->device;
else if (opt->cmd == CMD_INTERCHANGE)
device = MONO_DEVICE;
if (opt->cmd == CMD_TIFF4)
device = MONO_DEVICE;
if (doc->dsc->bbox) {
bbox = *doc->dsc->bbox;
}
else
opt->bbox = 1;
if (doc->dsc->hires_bbox) {
hires_bbox = *doc->dsc->hires_bbox;
phires_bbox = &hires_bbox;
}
if (opt->cmd == CMD_USER) {
/* Attempt to load BMP or PPM */
/* If these fail, assume it is TIFF or WMF */
img = bmpfile_to_image(opt->user_preview);
if (img == NULL)
img = pnmfile_to_image(opt->user_preview);
}
else if (opt->cmd == CMD_TIFF) {
/* We'll use ghostscript to make the image. */
}
else {
img = make_preview_image(doc, opt, 0, device,
&bbox, &hires_bbox, opt->bbox);
if (img == NULL) {
app_csmsgf(doc->app, TEXT("Couldn't make preview image\n"));
return -1;
}
if ((hires_bbox.fllx < hires_bbox.furx) &&
(hires_bbox.flly < hires_bbox.fury))
phires_bbox = &hires_bbox;
}
if (img) {
devbbox.llx = devbbox.lly = 0;
devbbox.urx = img->width;
devbbox.ury = img->height;
}
/* add preview to EPS file */
switch (opt->cmd) {
case CMD_TIFF4:
code = make_eps_tiff(doc, img, devbbox, &bbox, phires_bbox,
opt->dpi, opt->dpi, TRUE, FALSE, opt->doseps_reverse,
opt->output);
break;
case CMD_TIFF6U:
code = make_eps_tiff(doc, img, devbbox, &bbox, phires_bbox,
opt->dpi, opt->dpi, FALSE, FALSE, opt->doseps_reverse,
opt->output);
break;
case CMD_TIFF6P:
code = make_eps_tiff(doc, img, devbbox, &bbox, phires_bbox,
opt->dpi, opt->dpi, FALSE, TRUE, opt->doseps_reverse,
opt->output);
break;
case CMD_TIFF:
/* create preview file */
preview[0] = '\0';
if ((f = app_temp_file(doc->app, preview,
sizeof(preview)/sizeof(TCHAR))) == (FILE *)NULL) {
app_csmsgf(doc->app,
TEXT("Can't create temporary tiff file \042%s\042\n"),
preview);
code = -1;
}
else {
fclose(f);
if (code == 0)
code = make_preview_file(doc, opt, 0, preview,
device, opt->dpi, &bbox, &hires_bbox, opt->bbox);
if (code == 0)
code = make_eps_user(doc, preview, opt->doseps_reverse,
opt->output);
if (!(debug & DEBUG_GENERAL))
csunlink(preview);
}
break;
case CMD_INTERCHANGE:
code = make_eps_interchange(doc, img, devbbox,
&bbox, phires_bbox, opt->output);
break;
case CMD_WMF:
code = make_eps_metafile(doc, img, devbbox, &bbox, phires_bbox,
opt->dpi, opt->dpi, opt->doseps_reverse, opt->output);
break;
case CMD_PICT:
code = make_eps_pict(doc, img, &bbox, phires_bbox,
opt->dpi, opt->dpi, opt->mac_type, opt->output);
break;
case CMD_USER:
if (img)
code = make_eps_tiff(doc, img, devbbox, &bbox, phires_bbox,
opt->dpi, opt->dpi, FALSE, TRUE, opt->doseps_reverse,
opt->output);
else
code = make_eps_user(doc, opt->user_preview,
opt->doseps_reverse, opt->output);
break;
default:
return 0;
}
if (img)
bitmap_image_free(img);
return code;
}
/****************************************************************/
static int
epstool_extract(Doc *doc, OPT *opt)
{
int code;
if ((doc->dsc != (CDSC *)NULL) &&
(doc->dsc->macbin != (CDSCMACBIN *)NULL))
code = extract_macbin(doc, opt->output, opt->cmd == CMD_PREVIEW);
else
code = extract_doseps(doc, opt->output, opt->cmd == CMD_PREVIEW);
return code;
}
/****************************************************************/
static int
epstool_bitmap(Doc *doc, OPT *opt)
{
int code = 0;
CDSCBBOX bbox;
CDSCFBBOX hires_bbox;
LPCTSTR device = COLOUR_DEVICE;
int page = opt->page;
if (opt->device[0] != '\0')
device = opt->device;
if (doc->dsc->bbox)
bbox = *doc->dsc->bbox;
else {
bbox.llx = bbox.lly = bbox.urx = bbox.ury = 0;
opt->bbox = 1;
}
if (doc->dsc->hires_bbox)
hires_bbox = *doc->dsc->hires_bbox;
else {
hires_bbox.fllx = (float)bbox.llx;
hires_bbox.flly = (float)bbox.lly;
hires_bbox.furx = (float)bbox.urx;
hires_bbox.fury = (float)bbox.ury;
}
if (doc->dsc->page_count == 0)
page = 0;
else if ((opt->page < 0) || (opt->page >= (int)doc->dsc->page_count))
return -1; /* invalid page */
code = make_preview_file(doc, opt, page, opt->output,
device, opt->dpi, &bbox, &hires_bbox, opt->bbox);
return code;
}
/****************************************************************/
static int
epstool_copy(Doc *doc, OPT *opt)
{
int code = 0;
/*
* "epstool --copy" can also convert a BMP, PBM or PNG to EPS
* for testing the DCS 2.0 composite image writing code.
* This isn't in the user documentation.
*/
if (doc->doctype == DOC_BITMAP)
return epstool_copy_bitmap(doc, opt);
/* Copy an EPS to another EPS */
if (opt->bbox) {
CDSCBBOX bbox;
CDSCFBBOX hires_bbox;
GFile *f;
TCHAR tpsname[MAXSTR];
memset(tpsname, 0, sizeof(tpsname));
memset(&bbox, 0, sizeof(bbox));
memset(&hires_bbox, 0, sizeof(hires_bbox));
if (doc->dsc->bbox)
memcpy(&bbox, &doc->dsc->bbox, sizeof(bbox));
if (doc->dsc->hires_bbox)
memcpy(&hires_bbox, &doc->dsc->hires_bbox, sizeof(hires_bbox));
/* Copy page to temporary file */
if ((f = app_temp_gfile(doc->app, tpsname,
sizeof(tpsname)/sizeof(TCHAR))) == (GFile *)NULL) {
app_csmsgf(doc->app,
TEXT("Can't create temporary ps file \042%s\042\n"),
tpsname);
return -1;
}
code = copy_page_temp(doc, f, 0);
gfile_close(f);
if (code != 0) {
if (!(debug & DEBUG_GENERAL))
csunlink(tpsname);
return -1;
}
code = calculate_bbox(doc, opt, tpsname, &bbox, &hires_bbox);
if (code == 0)
code = copy_eps(doc, opt->output, &bbox, &hires_bbox, 0, FALSE);
/* delete temporary ps file */
if (!(debug & DEBUG_GENERAL))
csunlink(tpsname);
}
else {
code = copy_eps(doc, opt->output, doc->dsc->bbox,
doc->dsc->hires_bbox, 0, FALSE);
}
return code;
}
/* Save a BMP, PBM or PNG as an EPS file */
static int
epstool_copy_bitmap(Doc *doc, OPT *opt)
{
int code = 0;
IMAGE *img;
img = bmpfile_to_image(doc->name);
if (img == NULL)
img = pnmfile_to_image(doc->name);
if (img == NULL)
img = pngfile_to_image(doc->name);
if (img == NULL)
code = -1;
if (code == 0) {
GFile *f = NULL;
double width = (img->width * 72.0 / opt->dpi);
double height = (img->height * 72.0 / opt->dpi);
if ((img == NULL) || (img->image == NULL))
code = -1;
if (code == 0) {
f = gfile_open(opt->output, gfile_modeWrite | gfile_modeCreate);
if (f == NULL) {
code = -1;
app_msgf(doc->app,
"Failed to open \042%s\042 for writing\n", opt->output);
}
}
if (code == 0)
code = image_to_eps(f, img, 0, 0,
(int)(width + 0.999), (int)(height + 0.999),
0.0, 0.0, (float)width, (float)height,
opt->image_encode, opt->image_compress);
if (f)
gfile_close(f);
}
return code;
}
/****************************************************************/
/* If multi is TRUE, write DCS 2.0 multiple file, otherwise
* write the single file version.
*/
static int
epstool_dcs2_copy(Doc *doc, Doc *doc2, OPT *opt)
{
GFile *infile = NULL;
GFile *doc2file = NULL;
GFile *outfile = NULL;
DSC_OFFSET complen = 0;
int code = 0;
GFile *compfile = NULL;
TCHAR compname[MAXSTR];
TCHAR temp_outname[MAXSTR];
if (doc->dsc->dcs2 == NULL) {
app_csmsgf(doc->app, TEXT("Input file is not DCS 2.0\n"));
return -1;
}
memset(compname, 0, sizeof(compname));
if (opt->composite) {
/* Replace composite (first page) with a raster generated
* from the separations.
*/
if ((compfile = app_temp_gfile(doc->app, compname,
sizeof(compname)/sizeof(TCHAR))) == (GFile *)NULL) {
app_csmsgf(doc->app,
TEXT("Can't create temporary composite EPS file \042%s\042\n"),
compname);
return -1;
}
custom_colours_read(opt);
code = epstool_dcs2_composite(doc, opt, compfile);
custom_colours_free(opt);
gfile_close(compfile);
if (code == 0) {
compfile = gfile_open(compname, gfile_modeRead);
if (compfile == (GFile *)NULL)
code = -1;
}
if (code) {
if (!(debug & DEBUG_GENERAL) && compname[0])
csunlink(compname);
return -1;
}
}
/* Let's convert from single file to multi file */
if (code == 0)
code = (infile = gfile_open(doc_name(doc), gfile_modeRead))
== (GFile *)NULL;
if ((code == 0) && doc2)
code = (doc2file = gfile_open(doc_name(doc2), gfile_modeRead))
== (GFile *)NULL;
if (opt->cmd == CMD_DCS2_SINGLE) {
if (code == 0) /* write first pass to temporary file, not opt->output */
code = (outfile = app_temp_gfile(doc->app, temp_outname,
sizeof(temp_outname)/sizeof(TCHAR))) == (GFile *)NULL;
if (code == 0)
code = copy_dcs2(doc, infile, doc2, doc2file,
outfile, temp_outname,
0 /* offset */,
FALSE /* multi */,
FALSE /* write all */,
opt->missing_separations,
&complen, compfile, opt->rename_sep, opt->tolerance);
gfile_seek(infile, 0, gfile_begin);
if (compfile)
gfile_seek(compfile, 0, gfile_begin);
gfile_close(outfile);
outfile = NULL;
if (!(debug & DEBUG_GENERAL) && temp_outname[0])
csunlink(temp_outname);
}
if (code == 0) {
code = (outfile = gfile_open(opt->output,
gfile_modeWrite | gfile_modeCreate)) == (GFile *)NULL;
if (code)
app_msgf(doc->app,
"Failed to open \042%s\042 for writing\n", opt->output);
}
if (code == 0)
code = copy_dcs2(doc, infile, doc2, doc2file,
outfile, opt->output,
0 /* offset */,
opt->cmd == CMD_DCS2_MULTI,
TRUE /* write all */,
opt->missing_separations,
&complen, compfile, opt->rename_sep, opt->tolerance);
if (infile != (GFile *)NULL)
gfile_close(infile);
if (doc2file != (GFile *)NULL)
gfile_close(doc2file);
if (outfile != (GFile *)NULL)
gfile_close(outfile);
if (compfile != (GFile *)NULL)
gfile_close(compfile);
if (!(debug & DEBUG_GENERAL) && compname[0])
csunlink(compname);
return code;
}
static int
epstool_dcs2_report(Doc *doc)
{
int i;
int code = 0;
CDSC *dsc = doc->dsc;
const char *type = "Unknown";
const char *preview = "Unknown";
if (dsc && dsc->dcs2) {
DSC_OFFSET length = 0;
GFile *f;
/* Check for missing composite */
if ((dsc->page_count == 0) ||
(dsc->page[0].begin == dsc->page[0].end)) {
app_msgf(doc->app, TEXT("WARNING: Missing composite, so a separation offset is probably wrong.\n"));
code = 2;
}
/* Check for separations that extend beyond EOF */
if ((f = gfile_open(doc_name(doc), gfile_modeRead)) != (GFile *)NULL) {
length = gfile_get_length(f);
gfile_close(f);
}
for (i=0; i<(int)dsc->page_count; i++) {
if ((dsc->page[i].begin > length) ||
(dsc->page[i].end > length)) {
app_msgf(doc->app,
TEXT("WARNING: separation %s extends beyond EOF\n"),
dsc->page[i].label);
code = 2;
}
}
}
/* Document type */
if (dsc == NULL) {
if (doc->doctype == DOC_PDF)
type = "PDF";
else
type = "Unknown";
}
else if (dsc->dcs2) {
if (dsc->dcs1)
type = "DCS1.0";
else
type = "DCS2.0";
}
else if (dsc->epsf)
type = "EPSF";
else if (dsc->pdf)
type = "PDF";
else
type = "DSC";
fprintf(stdout, "Type\t%s\n", type);
if (dsc == NULL)
return 1;
/* Preview type */
switch (dsc->preview) {
default:
case CDSC_NOPREVIEW:
preview = "None";
break;
case CDSC_EPSI:
preview = "Interchange";
break;
case CDSC_TIFF:
preview = "TIFF";
break;
case CDSC_WMF:
preview = "WMF";
break;
case CDSC_PICT:
preview = "PICT";
break;
}
fprintf(stdout, "Preview\t%s\n", preview);
if (dsc->bbox)
fprintf(stdout, "BoundingBox\t%d\t%d\t%d\t%d\n",
dsc->bbox->llx, dsc->bbox->lly,
dsc->bbox->urx, dsc->bbox->ury);
else
fprintf(stdout, "BoundingBox\n");
if (dsc->hires_bbox)
fprintf(stdout, "HiBoundingBox\t%g\t%g\t%g\t%g\n",
dsc->hires_bbox->fllx, dsc->hires_bbox->flly,
dsc->hires_bbox->furx, dsc->hires_bbox->fury);
else
fprintf(stdout, "HiResBoundingBox\n");
if (!dsc->dcs2)
return 1;
/* Pages */
for (i=0; i<(int)dsc->page_count; i++) {
int found = -1;
const char *name = dsc->page[i].label;
float cyan, magenta, yellow, black;
cyan = magenta = yellow = black = 0.0;
if (name == NULL)
name = "Unknown";
if (strcmp(name, "Composite") != 0)
found = colour_to_cmyk(dsc, name, &cyan, &magenta, &yellow, &black);
if (found == 0)
fprintf(stdout, "%s\t%lu\t%g\t%g\t%g\t%g\n", name,
(unsigned long)(dsc->page[i].end - dsc->page[i].begin),
cyan, magenta, yellow, black);
else
fprintf(stdout, "%s\t%lu\n", name,
(unsigned long)(dsc->page[i].end - dsc->page[i].begin));
}
return code;
}
/* Check that all separations actually exist */
static int
epstool_dcs2_check_files(Doc *doc, OPT *opt)
{
int code = 0;
int i;
CDSC *dsc = doc->dsc;
GFile *f;
const char *fname;
const char **renamed1 = NULL;
for (i=1; (i<(int)dsc->page_count); i++) {
/* First find length of separation */
fname = dsc_find_platefile(dsc, i);
if (fname) {
TCHAR wfname[MAXSTR];
narrow_to_cs(wfname, (int)(sizeof(wfname)/sizeof(TCHAR)-1),
fname, (int)strlen(fname)+1);
if ((f = gfile_open(wfname, gfile_modeRead)) != (GFile *)NULL) {
gfile_close(f);
}
else {
if (!opt->missing_separations)
code = -1;
if (!opt->quiet)
app_msgf(doc->app,
"Separation \042%s\042 is missing file \042%s\042\n",
dsc->page[i].label, fname);
}
}
else {
if (dsc->page[i].end <= dsc->page[i].begin) {
if (!opt->quiet)
app_msgf(doc->app,
"Separation \042%s\042 is empty\n",
dsc->page[i].label);
if (!opt->missing_separations)
code = -1;
}
}
}
/* Test if duplicate separations would occur */
renamed1 = (const char **)malloc(sizeof(const char *) * dsc->page_count);
if (renamed1 != NULL) {
if (rename_separations(dsc, opt->rename_sep, renamed1) != 0) {
code = -1;
if (!opt->quiet)
app_msgf(doc->app, "Duplicate separations are not permitted.\n");
}
free((void *)renamed1);
}
return code;
}
/****************************************************************/
/* Read --custom-colours file etc. */
static int
custom_colours_read(OPT *opt)
{
FILE *f;
char line[MAXSTR];
CUSTOM_COLOUR colour;
CUSTOM_COLOUR *pcolour;
CUSTOM_COLOUR *tail = opt->colours;
int i;
char *s;
int code = 0;
if (opt->custom_colours[0]) {
/* read CMYK colours from file */
f = csfopen(opt->custom_colours, TEXT("r"));
if (f == NULL)
return -1;
while (tail && tail->next)
tail = tail->next;
while (fgets(line, sizeof(line), f) != NULL) {
memset(&colour, 0, sizeof(colour));
i = 0;
s = line;
if (strncmp(line, "%%CMYKCustomColor:", 18) == 0) {
s += 18;
colour.type = CUSTOM_CMYK;
while (*s && (*s == ' '))
s++;
/* Get the colour values */
s = strtok(s, " \t\r\n");
if (s != NULL) {
colour.cyan = (float)atof(s);
s = strtok(NULL, " \t\r\n");
}
if (s != NULL) {
colour.magenta = (float)atof(s);
s = strtok(NULL, " \t\r\n");
}
if (s != NULL) {
colour.yellow = (float)atof(s);
s = strtok(NULL, " \t\r\n");
}
if (s != NULL) {
colour.black = (float)atof(s);
s = strtok(NULL, "\t\r\n");
}
}
else if (strncmp(line, "%%RGBCustomColor:", 17) == 0) {
s += 17;
colour.type = CUSTOM_RGB;
while (*s && (*s == ' '))
s++;
/* Get the colour values */
s = strtok(s, " \t\r\n");
if (s != NULL) {
colour.red = (float)atof(s);
s = strtok(NULL, " \t\r\n");
}
if (s != NULL) {
colour.green = (float)atof(s);
s = strtok(NULL, " \t\r\n");
}
if (s != NULL) {
colour.blue = (float)atof(s);
s = strtok(NULL, "\t\r\n");
}
}
else {
s = NULL;
}
if (s != NULL) {
/* Get the colour name */
while (*s && (*s == ' '))
s++;
if (*s == '(') {
s++;
while (*s && (*s != ')')) {
if (i < (int)sizeof(colour.name)-1)
colour.name[i++] = *s;
s++;
}
if (*s == ')')
s++;
}
else {
while (*s && (*s != ' ') && (*s != '\t') &&
(*s != '\r') && (*s != '\n')) {
if (i < (int)sizeof(colour.name)-1)
colour.name[i++] = *s;
s++;
}
}
colour.name[i] = '\0';
}
if (debug & DEBUG_GENERAL) {
if (s == NULL)
fprintf(stdout, "Unrecognised line: %s\n", line);
else if (colour.type == CUSTOM_CMYK)
fprintf(stdout, "CMYK Colour: %g %g %g %g (%s)\n",
colour.cyan, colour.magenta, colour.yellow,
colour.black, colour.name);
else if (colour.type == CUSTOM_RGB)
fprintf(stdout, "RGB Colour: %g %g %g (%s)\n",
colour.red, colour.green, colour.blue,
colour.name);
else
fprintf(stdout, "Unrecognised colour\n");
}
if (s == NULL) {
if (code == 0)
code = 1;
}
else {
pcolour = (CUSTOM_COLOUR *)malloc(sizeof(CUSTOM_COLOUR));
if (pcolour == NULL)
code = -1;
else {
/* append to list */
memcpy(pcolour, &colour, sizeof(colour));
if (tail) {
tail->next = pcolour;
tail = pcolour;
}
else
opt->colours = tail = pcolour;
}
}
}
fclose(f);
}
return code;
}
static void
custom_colours_free(OPT *opt)
{
CUSTOM_COLOUR *pcolour;
while (opt->colours) {
pcolour = opt->colours;
opt->colours = opt->colours->next;
free(pcolour);
}
}
static CUSTOM_COLOUR *
custom_colours_find(OPT *opt, const char *name)
{
CUSTOM_COLOUR *pcolour = opt->colours;
while (pcolour) {
if (strcmp(name, pcolour->name) == 0)
break;
pcolour = pcolour->next;
}
return pcolour;
}
/****************************************************************/
static float
round_float(float f, int n)
{
return (float)( ((int)(f * n + 0.5)) / (float)n );
}
/* Calculate the bounding box using the ghostscript bbox device */
static int
calculate_bbox(Doc *doc, OPT *opt, LPCTSTR psname, CDSCBBOX *bbox, CDSCFBBOX *hires_bbox)
{
FILE *bboxfile;
TCHAR bboxname[MAXSTR];
TCHAR command[MAXSTR*8];
char line[MAXSTR];
int got_bbox = 0;
int got_hires_bbox = 0;
int code = 0;
int llx, lly, urx, ury;
float fllx, flly, furx, fury;
const int pagesize = 9400; /* Must be < 9419 on 7.07, < 150976 on 8.x */
const int offset = 3000;
if ((bboxfile = app_temp_file(doc->app, bboxname,
sizeof(bboxname)/sizeof(TCHAR))) == (FILE *)NULL) {
app_csmsgf(doc->app, TEXT("Can't create temporary bbox file \042%s\042\n"),
bboxname);
return -1;
}
fclose(bboxfile);
csnprintf(command, sizeof(command)/sizeof(TCHAR), TEXT(
"\042%s\042 %s -dNOPAUSE -dBATCH -sDEVICE=bbox %s \
-c \042<</PageSize [%d %d] /PageOffset [%d %d]>> setpagedevice\042 -f \042%s\042"),
opt->gs, opt->quiet ? TEXT("-dQUIET") : TEXT(""), opt->gsargs,
pagesize, pagesize, offset, offset, psname);
if (!opt->quiet)
app_csmsgf(doc->app, TEXT("%s\n"), command);
code = exec_program(command, -1, fileno(stdout), -1, NULL, NULL, bboxname);
if (code != 0)
app_csmsgf(doc->app,
TEXT("Ghostscript failed to obtain bounding box\n"));
/* Now scan for bounding box info */
if (code == 0) {
if ((bboxfile = csfopen(bboxname, TEXT("rb"))) == (FILE *)NULL) {
app_csmsgf(doc->app,
TEXT("Can't open temporary bbox file \042%s\042\n"),
bboxname);
code = -1;
}
}
if (code == 0) {
while (fgets(line, sizeof(line), bboxfile) != NULL) {
if (strncmp(line, "%%BoundingBox: ", 15) == 0) {
if (!opt->quiet)
app_msgf(doc->app, "%s", line);
if (sscanf(line+15, "%d %d %d %d", &llx, &lly, &urx, &ury)
== 4) {
bbox->llx = llx-offset;
bbox->lly = lly-offset;
bbox->urx = urx-offset;
bbox->ury = ury-offset;
got_bbox = 1;
}
}
else if (strncmp(line, "%%HiResBoundingBox: ", 20) == 0) {
if (!opt->quiet)
app_msgf(doc->app, "%s", line);
if (sscanf(line+20, "%f %f %f %f", &fllx, &flly, &furx, &fury)
== 4) {
hires_bbox->fllx = round_float(fllx-offset, 1000);
hires_bbox->flly = round_float(flly-offset, 1000);
hires_bbox->furx = round_float(furx-offset, 1000);
hires_bbox->fury = round_float(fury-offset, 1000);
got_hires_bbox = 1;
}
}
if (got_bbox && got_hires_bbox)
break;
}
}
fclose(bboxfile);
if (!(debug & DEBUG_GENERAL))
csunlink(bboxname);
if ((code == 0) && (!got_bbox)) {
app_csmsgf(doc->app, TEXT("Didn't get bounding box\n"));
code = -1;
}
if ((code == 0) && (!got_hires_bbox)) {
app_csmsgf(doc->app, TEXT("Didn't get hires bounding box\n"));
code = -1;
}
return code;
}
static int
calc_device_size(float dpi, CDSCBBOX *bbox, CDSCFBBOX *hires_bbox,
int *width, int *height, float *xoffset, float *yoffset)
{
int code = 0;
int hires_bbox_valid = 1;
if ((bbox->llx >= bbox->urx) ||
(bbox->lly >= bbox->ury)) {
code = -1;
}
if ((hires_bbox->fllx > hires_bbox->furx) ||
(hires_bbox->flly > hires_bbox->fury)) {
hires_bbox_valid = 0;
code = -1;
}
if ((hires_bbox->fllx == hires_bbox->furx) ||
(hires_bbox->flly == hires_bbox->fury)) {
hires_bbox_valid = 0;
/* ignore hires_bbox */
}
/* Make the preview image */
if (hires_bbox_valid) {
*width = (int)((hires_bbox->furx - hires_bbox->fllx)*dpi/72.0+0.5);
*height = (int)((hires_bbox->fury - hires_bbox->flly)*dpi/72.0+0.5);
*xoffset = -hires_bbox->fllx;
*yoffset = -hires_bbox->flly;
}
else {
*width = (int)((bbox->urx - bbox->llx)*dpi/72.0+0.5);
*height = (int)((bbox->ury - bbox->lly)*dpi/72.0+0.5);
*xoffset = (float)(-bbox->llx);
*yoffset = (float)(-bbox->lly);
}
return 0;
}
static int
make_preview_file(Doc *doc, OPT *opt, int page,
LPCTSTR preview, LPCTSTR device,
float dpi, CDSCBBOX *bbox, CDSCFBBOX *hires_bbox, int calc_bbox)
{
GFile *f;
int code = 0;
TCHAR tpsname[MAXSTR];
TCHAR command[MAXSTR*8];
int width, height;
float xoffset, yoffset;
/* Copy page to temporary file */
if ((f = app_temp_gfile(doc->app, tpsname,
sizeof(tpsname)/sizeof(TCHAR))) == (GFile *)NULL) {
app_csmsgf(doc->app,
TEXT("Can't create temporary ps file \042%s\042\n"),
tpsname);
return -1;
}
code = copy_page_temp(doc, f, page);
gfile_close(f);
if (code != 0) {
if (!(debug & DEBUG_GENERAL))
csunlink(tpsname);
return -1;
}
/* Get bbox */
if ((code == 0) && calc_bbox)
code = calculate_bbox(doc, opt, tpsname, bbox, hires_bbox);
width = height = 0;
xoffset = yoffset = 0.0;
if (code == 0)
code = calc_device_size(dpi, bbox, hires_bbox, &width, &height,
&xoffset, &yoffset);
if (code) {
app_csmsgf(doc->app, TEXT("BoundingBox is invalid\n"));
if (!(debug & DEBUG_GENERAL))
csunlink(tpsname);
return -1;
}
/* Make the preview image */
csnprintf(command, sizeof(command)/sizeof(TCHAR),
TEXT("\042%s\042 %s -dNOPAUSE -dBATCH -sDEVICE=%s -sOutputFile=\042%s\042 -r%g -g%dx%d %s -c %f %f translate -f \042%s\042"),
opt->gs, opt->quiet ? TEXT("-dQUIET") : TEXT(""),
device, (preview[0]=='\0' ? TEXT("-") : preview), dpi, width, height,
opt->gsargs, xoffset, yoffset, tpsname);
if (!opt->quiet)
app_csmsgf(doc->app, TEXT("%s\n"), command);
code = exec_program(command, -1, fileno(stdout), fileno(stderr),
NULL, NULL, NULL);
if (code != 0)
app_csmsgf(doc->app,
TEXT("Ghostscript failed to create preview image\n"));
/* delete temporary ps file */
if (!(debug & DEBUG_GENERAL))
csunlink(tpsname);
return code;
}
static IMAGE *
make_preview_image(Doc *doc, OPT *opt, int page, LPCTSTR device,
CDSCBBOX *bbox, CDSCFBBOX *hires_bbox, int calc_bbox)
{
IMAGE *img = NULL;
IMAGE *newimg = NULL;
TCHAR preview[MAXSTR];
GFile *f;
int code = 0;
/* Create a temporary file for ghostscript bitmap output */
if ((f = app_temp_gfile(doc->app, preview,
sizeof(preview)/sizeof(TCHAR))) == (GFile *)NULL) {
app_csmsgf(doc->app,
TEXT("Can't create temporary bitmap file \042%s\042\n"),
preview);
code = -1;
}
else
gfile_close(f);
if (code == 0)
code = make_preview_file(doc, opt, page,
preview, device, opt->dpi_render, bbox, hires_bbox, calc_bbox);
if (code == 0) {
/* Load image */
img = bmpfile_to_image(preview);
if (img == NULL)
img = pnmfile_to_image(preview);
}
if (img && (opt->dpi_render != opt->dpi)) {
/* downscale it */
newimg = (IMAGE *)malloc(sizeof(IMAGE));
if (newimg != NULL) {
int ncomp;
int width, height;
float xoffset, yoffset;
memset(newimg, 0, sizeof(newimg));
calc_device_size(opt->dpi, bbox, hires_bbox, &width, &height,
&xoffset, &yoffset);
newimg->width = width;
newimg->height = height;
newimg->format = img->format;
if ((newimg->format & DISPLAY_COLORS_MASK)
== DISPLAY_COLORS_CMYK)
ncomp = 4;
else if ((newimg->format & DISPLAY_COLORS_MASK)
== DISPLAY_COLORS_RGB)
ncomp = 3;
else
ncomp = 1;
newimg->raster = newimg->width * ncomp; /* bytes per row */
newimg->image = malloc(newimg->raster * newimg->height);
if (newimg->image == NULL) {
free(newimg);
newimg = NULL;
}
}
if (newimg != NULL) {
memset(newimg->image, 0, newimg->raster * newimg->height);
if (image_down_scale(newimg, img) != 0) {
bitmap_image_free(newimg);
newimg = NULL;
}
}
if (newimg != NULL) {
bitmap_image_free(img);
img = newimg;
}
}
if (!(debug & DEBUG_GENERAL))
csunlink(preview);
return img;
}
/****************************************************************/
int
epstool_dcs2_composite(Doc *doc, OPT *opt, GFile *compfile)
{
CDSC *dsc = doc->dsc;
IMAGE img;
IMAGE *layer = NULL;
int width, height;
float xoffset, yoffset;
float cyan, magenta, yellow, black;
int code = 0;
int i;
CDSCBBOX bbox = {0, 0, 0, 0};
CDSCFBBOX hires_bbox = {0.0, 0.0, 0.0, 0.0};
int hires_bbox_valid = 0;
/* Require original to be DCS 2.0 */
if (doc->dsc == NULL)
return -1;
if (doc->dsc->dcs2 == NULL)
return -1;
if (dsc->bbox) {
bbox = *dsc->bbox;
}
else
return -1;
if (dsc->hires_bbox) {
hires_bbox = *dsc->hires_bbox;
hires_bbox_valid = 1;
}
/* Make a CMYK image for the composite */
code = calc_device_size(opt->dpi, &bbox, &hires_bbox, &width, &height,
&xoffset, &yoffset);
if (code) {
app_csmsgf(doc->app, TEXT("BoundingBox is invalid\n"));
return -1;
}
memset(&img, 0, sizeof(img));
img.width = width;
img.height = height;
img.raster = img.width * 4;
img.format = DISPLAY_COLORS_CMYK | DISPLAY_ALPHA_NONE |
DISPLAY_DEPTH_8 | DISPLAY_BIGENDIAN | DISPLAY_TOPFIRST;
img.image = (unsigned char *)malloc(img.raster * img.height);
if (img.image == NULL)
return -1;
memset(img.image, 0, img.raster * img.height);
/* For each plate, make an image, then merge it into
* the composite
*/
for (i=1; i<(int)dsc->page_count; i++) {
/* find colour */
int found;
CUSTOM_COLOUR *ccolour = NULL;
const char *name = dsc->page[i].label;
if (name == NULL) {
app_msgf(doc->app, "Page %d doesn't have a label\n", i);
code = -1;
break;
}
found = colour_to_cmyk(dsc, name, &cyan, &magenta, &yellow, &black);
if ((ccolour = custom_colours_find(opt, name)) != NULL) {
/* Use local colour overrides from --custom-colours */
found = 0;
if (ccolour->type == CUSTOM_RGB) {
cyan = (float)(1.0 - ccolour->red);
magenta = (float)(1.0 - ccolour->green);
yellow = (float)(1.0 - ccolour->blue);
black = min(cyan, min(magenta, yellow));
if (black > 0.0) {
cyan -= black;
magenta -= black;
yellow -= black;
}
}
else {
cyan = ccolour->cyan;
magenta = ccolour->magenta;
yellow = ccolour->yellow;
black = ccolour->black;
}
}
if (found < 0) {
app_msgf(doc->app, "Unrecognised colour (%s)\n", name);
code = -1;
break;
}
if ((cyan == 0.0) && (magenta == 0.0) && (yellow == 0.0) &&
(black == 0.0)) {
if (!opt->quiet)
app_msgf(doc->app, "Skipping blank separation %s\n", name);
continue;
}
if (!opt->quiet)
app_msgf(doc->app, "Creating image from separation %s\n", name);
/* Now get the separation image */
layer = make_preview_image(doc, opt, i, GREY_DEVICE,
&bbox, &hires_bbox, FALSE);
if (layer == NULL) {
app_msgf(doc->app, "Failed to make image for separation (%s)\n",
name);
code = -1;
break;
}
else {
if (!opt->quiet)
app_msgf(doc->app, "Merging separation %g %g %g %g %s\n",
cyan, magenta, yellow, black, name);
code = image_merge_cmyk(&img, layer, cyan, magenta, yellow, black);
bitmap_image_free(layer);
if (code < 0) {
app_msgf(doc->app, "Failed to merge separation (%s)\n", name);
code = -1;
break;
}
}
}
if (code == 0) {
if (!opt->quiet)
app_msgf(doc->app, "Writing composite as EPS\n");
code = image_to_eps(compfile, &img,
bbox.llx, bbox.lly, bbox.urx, bbox.ury,
hires_bbox.fllx, hires_bbox.flly,
hires_bbox.furx, hires_bbox.fury,
opt->image_encode,
opt->image_compress);
}
free(img.image);
return code;
}
/* Return 0 if CMYK set from the DSC comments, -1 if not set */
static int
colour_to_cmyk(CDSC *dsc, const char *name,
float *cyan, float *magenta, float *yellow, float *black)
{
int code = 0;
CDSCCOLOUR *colour = dsc->colours;
if (name == NULL)
return -1;
while (colour) {
if (colour->name && (dsc_stricmp(colour->name, name)==0))
break;
colour = colour->next;
}
if (colour && (colour->custom == CDSC_CUSTOM_COLOUR_CMYK)) {
*cyan = colour->cyan;
*magenta = colour->magenta;
*yellow = colour->yellow;
*black = colour->black;
}
else if (colour && (colour->custom == CDSC_CUSTOM_COLOUR_RGB)) {
*cyan = (float)(1.0 - colour->red);
*magenta = (float)(1.0 - colour->green);
*yellow = (float)(1.0 - colour->blue);
*black = min(*cyan, min(*magenta, *yellow));
if (*black > 0.0) {
*cyan -= *black;
*magenta -= *black;
*yellow -= *black;
}
}
else {
if (dsc_stricmp(name, "Cyan") == 0) {
*cyan = 1.0;
*magenta = *yellow = *black = 0.0;
}
else if (dsc_stricmp(name, "Magenta") == 0) {
*magenta = 1.0;
*cyan = *yellow = *black = 0.0;
}
else if (dsc_stricmp(name, "Yellow") == 0) {
*yellow = 1.0;
*cyan = *magenta = *black = 0.0;
}
else if (dsc_stricmp(name, "Black") == 0) {
*black = 1.0;
*cyan = *yellow = *magenta = 0.0;
}
else {
code = -1;
}
}
return code;
}
const char *epswarn_prolog[] = {
"%!\n",
"% This code is wrapped around an EPS file to partly test if it complies\n",
"% with the EPS specfication.\n",
"\n",
"/eps_warn_file (%stdout) (w) file def\n",
"\n",
"globaldict begin /eps_warn_ok true def end\n",
"\n",
"/eps_write_only { % name string -- name\n",
" eps_warn_file exch writestring\n",
" eps_warn_file ( /) writestring\n",
" dup eps_warn_file exch 32 string cvs writestring\n",
" eps_warn_file (\\n) writestring \n",
" eps_warn_file flushfile\n",
"} bind def\n",
"\n",
"/eps_write { % name string -- name\n",
" eps_write_only\n",
" //globaldict /eps_warn_ok false put\n",
"} bind def\n",
"\n",
"/eps_warn { % name --\n",
" (EPSWARN FAIL: EPS file must not use) \n",
" eps_write\n",
" //systemdict exch get exec\n",
"} bind def\n",
"\n",
"% Prohibited operators in systemdict\n",
"/banddevice {/banddevice eps_warn} def\n",
"/clear {/clear eps_warn} def\n",
"/cleardictstack {/cleardictstack eps_warn} def\n",
"/copypage {/copypage eps_warn} def\n",
"/erasepage {/erasepage eps_warn} def\n",
"/exitserver {/exitserver eps_warn} def % this won't work - exitserver is in serverdict\n",
"/serverdict {/serverdict eps_warn} def % so use this to provide warnings instead\n",
"/statusdict {/statusdict eps_warn} def\n",
"/framedevice {/framedevice eps_warn} def\n",
"/grestoreall {/grestoreall eps_warn} def\n",
"/initclip {/initclip eps_warn} def\n",
"/initgraphics {/initgraphics eps_warn} def\n",
"/initmatrix {/initmatrix eps_warn} def\n",
"/renderbands {/renderbands eps_warn} def\n",
"/setglobal {/setglobal eps_warn} def\n",
"/setpagedevice {/setpagedevice eps_warn} def\n",
"/setpageparams {/setpageparams eps_warn} def\n",
"/setshared {/setshared eps_warn} def\n",
"/startjob {/startjob eps_warn} def\n",
"% If quit is executed, then epswarn_check will never be run.\n",
"/quit {\n",
" % systemdict /quit doesn't work when it has been redefined in userdict\n",
" /quit (EPSWARN FAIL: EPS file must not use) eps_write\n",
" //globaldict /eps_warn_ok false put\n",
" //systemdict begin quit \n",
"} def\n",
"\n",
"% These page sizes are defined in userdict, not systemdict\n",
"/eps_pagesize_warn {\n",
" (EPSWARN FAIL: EPS file must not set page size:)\n",
" eps_write pop\n",
"} def\n",
"/11x17 {/11x17 eps_pagesize_warn} def\n",
"/a3 {/a3 eps_pagesize_warn} def\n",
"/a4 {/a4 eps_pagesize_warn} def\n",
"/a4small {/a4small eps_pagesize_warn} def\n",
"/a5 {/a5 eps_pagesize_warn} def\n",
"/ledger {/ledger eps_pagesize_warn} def\n",
"/legal {/legal eps_pagesize_warn} def\n",
"/letter {/letter eps_pagesize_warn} def\n",
"/lettersmall {/lettersmall eps_pagesize_warn} def\n",
"/note {/note eps_pagesize_warn} def\n",
"\n",
"% These operators can only be used if the parameter\n",
"% is saved and restored afterwards, or if setting\n",
"% them takes into account their previous value.\n",
"% For example 'matrix setmatrix' is not permitted,\n",
"% but 'matrix current matrix setmatrix' is allowed.\n",
"/eps_warntwo {\n",
" (EPSWARN WARNING: EPS file should be careful using) \n",
" eps_write_only\n",
" //systemdict exch get exec\n",
"} def\n",
"/nulldevice {/nulldevice eps_warntwo} def % can't test this\n",
"/setgstate {/setgstate eps_warntwo} def % can't test this\n",
"/sethalftone {/sethalftone eps_warntwo} def\n",
"/setmatrix {/setmatrix eps_warntwo} def\n",
"/setscreen {/setscreen eps_warntwo} def\n",
"/settransfer {/settransfer eps_warntwo} def\n",
"/setcolortransfer {/setcolortransfer eps_warntwo} def\n",
"\n",
"% Take snapshot of some items\n",
"count /eps_count exch def\n",
"countdictstack /eps_countdictstack exch def\n",
"currentpagedevice /PageCount get /eps_pagecount exch def\n",
"/eps_showpage_count 0 def\n",
"\n",
"\n",
"/epswarn_check_write { % string --\n",
" eps_warn_file exch writestring\n",
" eps_warn_file flushfile\n",
" //globaldict /eps_warn_ok false put\n",
"} def\n",
"\n",
"/epswarn_check {\n",
" % count\n",
" count eps_count ne {\n",
" (EPSWARN FAIL: EPS file altered operand stack count\\n) epswarn_check_write \n",
" } if\n",
" //systemdict /clear get exec\n",
" % countdictstack\n",
" countdictstack eps_countdictstack ne {\n",
" (EPSWARN FAIL: EPS file altered dictionary stack count\\n) \n",
" epswarn_check_write\n",
" } if\n",
" countdictstack eps_countdictstack sub {end} repeat\n",
" % real page count\n",
" currentpagedevice /PageCount get eps_pagecount ne {\n",
" (EPSWARN FAIL: EPS file forcibly output a page\\n) epswarn_check_write\n",
" } if\n",
" % showpage count\n",
" eps_showpage_count 1 gt {\n",
" (EPSWARN FAIL: EPS file used showpage more than once\\n) epswarn_check_write\n",
" } if\n",
"} def\n",
"\n",
"% EPS files are normally encapsulated inside a save/restore\n",
"save /epswarn_save exch def\n",
"\n",
"% redefine showpage, and count how many times it is called\n",
"/showpage { userdict dup /eps_showpage_count get 1 add \n",
" /eps_showpage_count exch put \n",
"} def\n",
"\n",
"% Now for something to test this\n",
"\n",
NULL};
const char epswarn_epilog[] = "\
%!\n\
% Check that all is well\n\
epswarn_check\n\
%epswarn_save restore\n\
//globaldict /eps_warn_ok get not \n\
{eps_warn_file (\nEPSWARN FAIL\\n) writestring} \n\
{eps_warn_file (\nEPSWARN PASS\\n) writestring} \n\
ifelse\n\
systemdict begin % so quit works...\n\
";
/* Test if an EPS file really is EPS compliant */
static int
epstool_test(Doc *doc, OPT *opt)
{
GFile *f;
int code = 0;
TCHAR tpsname[MAXSTR];
TCHAR command[MAXSTR*8];
unsigned int len;
FILE *testfile = NULL;
TCHAR testname[MAXSTR];
CDSCBBOX bbox;
CDSCFBBOX hires_bbox;
BOOL found_error = FALSE;
BOOL found_warning = FALSE;
BOOL found_pass = FALSE;
BOOL bbox_valid = FALSE;
char line[256];
int i;
BOOL dsc_error = FALSE;
BOOL dsc_warning = FALSE;
if (doc->dsc) {
dsc_error = (doc->dsc->worst_error == CDSC_ERROR_ERROR);
dsc_warning = (doc->dsc->worst_error == CDSC_ERROR_WARN);
}
/* Copy prolog, page and epilog to a temporary file */
if ((f = app_temp_gfile(doc->app, tpsname,
sizeof(tpsname)/sizeof(TCHAR))) == (GFile *)NULL) {
app_csmsgf(doc->app,
TEXT("Can't create temporary ps file \042%s\042\n"),
tpsname);
return -1;
}
for (i=0; epswarn_prolog[i]; i++) {
len = (int)strlen(epswarn_prolog[i]);
if (!code && (len != gfile_write(f, epswarn_prolog[i], len)))
code = -1;
}
code = copy_page_nosave(doc, f, 0);
len = (int)strlen(epswarn_epilog);
if (len != gfile_write(f, epswarn_epilog, len))
code = -1;
gfile_close(f);
if (code != 0) {
if (!(debug & DEBUG_GENERAL))
csunlink(tpsname);
return -1;
}
if ((testfile = app_temp_file(doc->app, testname,
sizeof(testname)/sizeof(TCHAR))) == (FILE *)NULL) {
app_csmsgf(doc->app, TEXT("Can't create temporary file \042%s\042\n"),
testname);
if (!(debug & DEBUG_GENERAL))
csunlink(tpsname);
return -1;
}
fclose(testfile);
testfile = NULL;
/* Interpret the file to test it */
csnprintf(command, sizeof(command)/sizeof(TCHAR),
TEXT("\042%s\042 %s -dNOEPS -dNOPAUSE -dBATCH -dNODISPLAY %s \042%s\042"),
opt->gs, opt->quiet ? TEXT("-dQUIET") : TEXT(""),
opt->gsargs, tpsname);
if (!opt->quiet)
app_csmsgf(doc->app, TEXT("%s\n"), command);
code = exec_program(command, -1, -1 , fileno(stderr),
NULL, testname, NULL);
if (code != 0)
app_csmsgf(doc->app,
TEXT("Ghostscript failed to interpret file\n"));
/* delete temporary ps file */
if (!(debug & DEBUG_GENERAL))
csunlink(tpsname);
/* Now check testfile for reports of problems */
if (code == 0) {
if ((testfile = csfopen(testname, TEXT("rb"))) == (FILE *)NULL) {
app_csmsgf(doc->app,
TEXT("Can't open temporary file \042%s\042\n"),
testname);
code = -1;
}
}
if (code == 0) {
while (fgets(line, sizeof(line), testfile) != NULL) {
if (!opt->quiet)
app_msgf(doc->app, "%s", line);
if (strncmp(line, "EPSWARN FAIL: ", 14) == 0)
found_error = TRUE;
else if (strncmp(line, "EPSWARN WARNING: ", 17) == 0)
found_warning = TRUE;
else if (strncmp(line, "EPSWARN PASS", 12) == 0)
found_pass = TRUE;
}
}
if (testfile)
fclose(testfile);
if (!(debug & DEBUG_GENERAL))
csunlink(testname);
if (!opt->quiet)
app_csmsg(doc->app, TEXT("\n"));
if ((code == 0) && (doc->dsc) && (doc->dsc->bbox)) {
/* Copy page to temporary file */
if ((f = app_temp_gfile(doc->app, tpsname,
sizeof(tpsname)/sizeof(TCHAR))) == (GFile *)NULL) {
app_csmsgf(doc->app,
TEXT("Can't create temporary ps file \042%s\042\n"),
tpsname);
return -1;
}
code = copy_page_temp(doc, f, 0);
gfile_close(f);
if (code != 0) {
if (!(debug & DEBUG_GENERAL))
csunlink(tpsname);
return -1;
}
code = calculate_bbox(doc, opt, tpsname, &bbox, &hires_bbox);
if (!opt->quiet)
app_csmsg(doc->app, TEXT("\n"));
if (code == 0) {
if ( (bbox.llx >= doc->dsc->bbox->llx-1) &&
(bbox.lly >= doc->dsc->bbox->lly-1) &&
(bbox.urx <= doc->dsc->bbox->urx+1) &&
(bbox.ury <= doc->dsc->bbox->ury+1)) {
bbox_valid = TRUE;
}
if (!opt->quiet) {
app_csmsgf(doc->app,
TEXT("File has %%%%BoundingBox: %d %d %d %d\n"),
doc->dsc->bbox->llx, doc->dsc->bbox->lly,
doc->dsc->bbox->urx, doc->dsc->bbox->ury);
app_csmsgf(doc->app,
TEXT("Correct is %%%%BoundingBox: %d %d %d %d\n"),
bbox.llx, bbox.lly, bbox.urx, bbox.ury);
if (!bbox_valid)
app_csmsgf(doc->app,
TEXT("File bounding box needs to be larger\n"));
}
}
else {
if (!opt->quiet)
app_csmsgf(doc->app,
TEXT("Failed to calculate bounding box\n"));
}
/* delete temporary ps file */
if (!(debug & DEBUG_GENERAL))
csunlink(tpsname);
}
else {
if (!opt->quiet)
app_csmsgf(doc->app,
TEXT("Missing %%%%BoundingBox\n"));
}
if (found_error || !found_pass || !bbox_valid ||
dsc_error || dsc_warning ||
!doc->dsc || !doc->dsc->epsf)
code = -1;
if (!opt->quiet) {
if (found_warning)
app_csmsgf(doc->app, TEXT("File used operators that sometimes cause problems in an EPS file.\n"));
if (found_error)
app_csmsgf(doc->app, TEXT("File used PostScript operators that are prohibited in an EPS file.\n"));
if (found_pass)
app_csmsgf(doc->app, TEXT("PostScript appears well behaved.\n"));
if (doc->dsc && doc->dsc->epsf)
app_csmsgf(doc->app, TEXT("File claims to be EPS.\n"));
else
app_csmsgf(doc->app, TEXT("File is not EPS.\n"));
}
if (code != 0)
fprintf(MSGOUT, "FAIL: File does not comply with EPS specification.\n");
else
fprintf(MSGOUT, "PASS: File appears to be well behaved EPS.\n");
return code;
}
static void epstool_dump_fn(void *caller_data, const char *str)
{
fputs(str, stdout);
}
/****************************************************************/
/* Functions from GSview app that we need. */
/* Some of these should be moved from capp.c to a separate file. */
#ifdef _MSC_VER
# pragma warning(disable:4100) /* ignore "Unreferenced formal parameter" */
#endif
int
app_platform_init(GSview *a)
{
return 0;
}
int
app_platform_finish(GSview *a)
{
return 0;
}
int
app_lock(GSview *a)
{
return 0;
}
int
app_unlock(GSview *a)
{
return 0;
}
void
app_log(const char *str, int len)
{
fwrite(str, 1, len, MSGOUT);
}
int
cs_to_narrow(char *nstr, int nlen, LPCTSTR wstr, int wlen)
{
#ifdef UNICODE
return WideCharToMultiByte(CP_ACP, 0, wstr, wlen, nstr, nlen, NULL, NULL);
#else
return char_to_narrow(nstr, nlen, wstr, wlen);
#endif
}
int
narrow_to_cs(TCHAR *wstr, int wlen, const char *nstr, int nlen)
{
#ifdef UNICODE
return MultiByteToWideChar(CP_ACP, 0, nstr, nlen, wstr, wlen);
#else
return narrow_to_char(wstr, wlen, nstr, nlen);
#endif
}
int get_dsc_response(GSview *app, LPCTSTR str)
{
app_csmsgf(app, TEXT("\n%s\n"), str);
return CDSC_RESPONSE_OK;
}
int
load_string(GSview *a, int id, TCHAR *buf, int len)
{
char msg[MAXSTR];
const char *s = NULL;
int reslen;
int dscmsg = (id - CDSC_RESOURCE_BASE) / 2;
if (buf && len)
buf[0] = '\0';
/* CDSC_MESSAGE_INCORRECT_USAGE should be dsc->max_error */
if (a /* ignore unused parameter GSview *a */
&& (dscmsg >= 0) && (dscmsg <= CDSC_MESSAGE_INCORRECT_USAGE)) {
if (((id - CDSC_RESOURCE_BASE) & 1) == 0)
s = dsc_message[dscmsg];
else
s = "";
}
else
switch (id) {
case IDS_DSC_LINEFMT:
s = "%sAt line %d:";
break;
case IDS_DSC_INFO:
s = "DSC Information\n";
break;
case IDS_DSC_WARN:
s = "DSC Warning\n";
break;
case IDS_DSC_ERROR:
s = "DSC Error\n";
break;
}
if (s == NULL) {
snprintf(msg, sizeof(msg), "String %d\n", id);
s = msg;
}
reslen = narrow_to_cs(NULL, 0, s, (int)strlen(s)+1);
if (reslen > len)
return reslen;
return narrow_to_cs(buf, len, s, (int)strlen(s)+1);
}
int app_msg_box(GSview *a, LPCTSTR str, int icon)
{
app_csmsgf(a, TEXT("%s\n"), str);
return 0;
}
int
gssrv_request(GSSRV *s, GSREQ *reqnew)
{
return -1;
}
int
pagecache_unref_all(GSview *a)
{
return 0;
}
void
doc_savestat(Doc *doc)
{
}
int
image_platform_init(IMAGE *img)
{
return 0;
}
unsigned int
image_platform_format(unsigned int format)
{
return format;
}
#ifdef _MSC_VER
# pragma warning(default:4100)
#endif
/****************************************************************/
/* platform specific code for running another program */
/*
* If hstdin not -1, duplicate handle and give to program,
* else if stdin_name not NULL, open filename and give to program.
* Same for hstdout/stdout_name and hstderr/stderr_name.
*/
#ifdef __WIN32__
int
exec_program(LPTSTR command,
int hstdin, int hstdout, int hstderr,
LPCTSTR stdin_name, LPCTSTR stdout_name, LPCTSTR stderr_name)
{
int code = 0;
HANDLE hChildStdinRd = INVALID_HANDLE_VALUE;
HANDLE hChildStdoutWr = INVALID_HANDLE_VALUE;
HANDLE hChildStderrWr = INVALID_HANDLE_VALUE;
HANDLE hStdin = INVALID_HANDLE_VALUE;
HANDLE hStderr = INVALID_HANDLE_VALUE;
HANDLE hStdout = INVALID_HANDLE_VALUE;
SECURITY_ATTRIBUTES saAttr;
STARTUPINFO siStartInfo;
PROCESS_INFORMATION piProcInfo;
DWORD exitcode = (DWORD)-1;
/* Set the bInheritHandle flag so pipe handles are inherited. */
saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
saAttr.bInheritHandle = TRUE;
saAttr.lpSecurityDescriptor = NULL;
/* if handles are provided, use them */
if ((hstdin != -1)) {
INTPTR handle;
handle = _get_osfhandle(hstdin);
if (handle == -1)
code = -1;
if (code == 0) {
hStdin = (HANDLE)handle;
if (!DuplicateHandle(GetCurrentProcess(), hStdin,
GetCurrentProcess(), &hChildStdinRd, 0,
TRUE, /* inherited */
DUPLICATE_SAME_ACCESS))
code = -1;
}
}
if ((code==0) && (hstdout != -1)) {
INTPTR handle;
handle = _get_osfhandle(hstdout);
if (handle == -1)
code = -1;
if (code == 0) {
hStdout = (HANDLE)handle;
if (!DuplicateHandle(GetCurrentProcess(), hStdout,
GetCurrentProcess(), &hChildStdoutWr, 0,
TRUE, /* inherited */
DUPLICATE_SAME_ACCESS))
code = -1;
}
}
if ((code==0) && (hstderr != -1)) {
INTPTR handle;
handle = _get_osfhandle(hstderr);
if (handle == -1)
code = -1;
if (code == 0) {
hStderr = (HANDLE)handle;
if (!DuplicateHandle(GetCurrentProcess(), hStderr,
GetCurrentProcess(), &hChildStderrWr, 0,
TRUE, /* inherited */
DUPLICATE_SAME_ACCESS))
code = -1;
}
}
/* If files are requested, create them */
if ((code==0) && stdin_name && (hChildStdinRd == INVALID_HANDLE_VALUE)) {
hChildStdinRd = CreateFile(stdin_name, GENERIC_READ,
0 /* no file sharing */,
&saAttr /* allow handle to be inherited */,
OPEN_EXISTING, 0, NULL);
if (hChildStdinRd == INVALID_HANDLE_VALUE)
code = -1;
}
if ((code==0) && stdout_name && (hChildStdoutWr == INVALID_HANDLE_VALUE)) {
hChildStdoutWr = CreateFile(stdout_name, GENERIC_WRITE,
0 /* no file sharing */,
&saAttr /* allow handle to be inherited */,
OPEN_ALWAYS, 0, NULL);
if (hChildStdoutWr == INVALID_HANDLE_VALUE)
code = -1;
}
if ((code==0) && stderr_name && (hChildStderrWr == INVALID_HANDLE_VALUE)) {
hChildStderrWr = CreateFile(stderr_name, GENERIC_WRITE,
0 /* no file sharing */,
&saAttr /* allow handle to be inherited */,
OPEN_ALWAYS, 0, NULL);
if (hChildStderrWr == INVALID_HANDLE_VALUE)
code = -1;
}
/* Set up members of STARTUPINFO structure. */
siStartInfo.cb = sizeof(STARTUPINFO);
siStartInfo.lpReserved = NULL;
siStartInfo.lpDesktop = NULL;
siStartInfo.lpTitle = NULL; /* use executable name as title */
/* next two lines ignored */
siStartInfo.dwX = siStartInfo.dwY = (DWORD)CW_USEDEFAULT;
siStartInfo.dwXSize = siStartInfo.dwYSize = (DWORD)CW_USEDEFAULT;
siStartInfo.dwXCountChars = 80;
siStartInfo.dwYCountChars = 25;
siStartInfo.dwFillAttribute = 0; /* ignored */
siStartInfo.dwFlags = STARTF_USESTDHANDLES;
siStartInfo.wShowWindow = SW_SHOWNORMAL; /* ignored */
siStartInfo.cbReserved2 = 0;
siStartInfo.lpReserved2 = NULL;
siStartInfo.hStdInput = hChildStdinRd;
siStartInfo.hStdOutput = hChildStdoutWr;
siStartInfo.hStdError = hChildStderrWr;
memset(&piProcInfo, 0, sizeof(piProcInfo));
if ((code == 0) && !CreateProcess(NULL,
command,
NULL, /* process security attributes */
NULL, /* primary thread security attributes */
TRUE, /* handles are inherited */
0, /* creation flags */
NULL, /* environment */
NULL, /* use parent's current directory */
&siStartInfo, /* STARTUPINFO pointer */
&piProcInfo)) { /* receives PROCESS_INFORMATION */
code = -1;
}
/* close our copy of the handles */
if (hChildStdinRd != INVALID_HANDLE_VALUE)
CloseHandle(hChildStdinRd);
if (hChildStdoutWr != INVALID_HANDLE_VALUE)
CloseHandle(hChildStdoutWr);
if (hChildStderrWr != INVALID_HANDLE_VALUE)
CloseHandle(hChildStderrWr);
if (code == 0) {
/* wait for process to finish */
WaitForSingleObject(piProcInfo.hProcess, 300000);
GetExitCodeProcess(piProcInfo.hProcess, &exitcode);
CloseHandle(piProcInfo.hProcess);
CloseHandle(piProcInfo.hThread);
}
if (code)
return code;
return (int)exitcode;
}
#endif
#if defined(UNIX)
int
exec_program(LPTSTR command,
int hstdin, int hstdout, int hstderr,
LPCTSTR stdin_name, LPCTSTR stdout_name, LPCTSTR stderr_name)
{
int code = 0;
int hChildStdinRd = -1;
int hChildStdoutWr = -1;
int hChildStderrWr = -1;
int handle;
pid_t pid;
int exitcode;
#define MAXARG 64
char *argv[MAXARG+1];
int argc = 0;
char *args, *d, *e, *p;
/* Parse command line handling quotes. */
memset(argv, 0, sizeof(argv));
argc = 0;
args = (char *)malloc(strlen(command)+1);
if (args == (char *)NULL)
return -1;
p = command;
d = args;
while (*p) {
/* for each argument */
if (argc >= MAXARG - 1) {
fprintf(stderr, "Too many arguments\n");
free(args);
return -1;
}
e = d;
while ((*p) && (*p != ' ')) {
if (*p == '\042') {
/* Remove quotes, skipping over embedded spaces. */
/* Doesn't handle embedded quotes. */
p++;
while ((*p) && (*p != '\042'))
*d++ =*p++;
}
else
*d++ = *p;
if (*p)
p++;
}
*d++ = '\0';
argv[argc++] = e;
while ((*p) && (*p == ' '))
p++; /* Skip over trailing spaces */
}
argv[argc] = NULL;
pid = fork();
if (pid == (pid_t)-1) {
/* fork failed */
fprintf(stderr, "Failed to fork, error=%d\n", errno);
return -1;
}
else if (pid == 0) {
/* child */
/* if handles are provided, use them */
if ((code == 0) && (hstdin != -1)) {
hChildStdinRd = dup2(hstdin, 0);
if (hChildStdinRd == -1)
code = -1;
}
if ((code==0) && (hstdout != -1)) {
hChildStdoutWr = dup2(hstdout, 1);
if (hChildStdoutWr == -1)
code = -1;
}
if ((code==0) && (hstderr != -1)) {
hChildStderrWr = dup2(hstderr, 2);
if (hChildStderrWr == -1)
code = -1;
}
if ((code==0) && stdin_name && (hChildStdinRd == -1)) {
handle = open(stdin_name, O_RDONLY);
hChildStdinRd = dup2(handle, 0);
if (handle != -1)
close(handle);
if (hChildStdinRd == -1)
code = -1;
}
if ((code==0) && stdout_name && (hChildStdoutWr == -1)) {
handle = open(stdout_name, O_WRONLY | O_CREAT, 0666);
hChildStdoutWr = dup2(handle, 1);
if (handle != -1)
close(handle);
if (hChildStdoutWr == -1)
code = -1;
}
if ((code==0) && stderr_name && (hChildStderrWr == -1)) {
handle = open(stderr_name, O_WRONLY | O_CREAT, 0666);
hChildStderrWr = dup2(handle, 2);
if (handle != -1)
close(handle);
if (hChildStderrWr == -1)
code = -1;
}
if (code) {
fprintf(stderr, "Failed to open stdin/out/err, error=%d\n", errno);
if (hChildStdinRd)
close(hChildStdinRd);
if (hChildStdoutWr)
close(hChildStdoutWr);
if (hChildStderrWr)
close(hChildStderrWr);
exit(1);
}
/* Now execute it */
if (execvp(argv[0], argv) == -1) {
fprintf(stderr, "Failed to execute ghostscript, error=%d\n", errno);
exit(1);
}
}
/* parent - wait for child to finish */
free(args);
wait(&exitcode);
return exitcode;
}
#endif
/*
* If hstdin not -1, duplicate handle and give to program,
* else if stdin_name not NULL, open filename and give to program.
* Same for hstdout/stdout_name and hstderr/stderr_name.
*/
#ifdef OS2
int
exec_program(LPTSTR command,
int hstdin, int hstdout, int hstderr,
LPCTSTR stdin_name, LPCTSTR stdout_name, LPCTSTR stderr_name)
{
HFILE hStdin = 0;
HFILE hStdout = 1;
HFILE hStderr = 2;
HFILE hOldStdin;
HFILE hOldStdout;
HFILE hOldStderr;
HFILE hNewStdin = -1;
HFILE hNewStdout = -1;
HFILE hNewStderr = -1;
APIRET rc = 0;
ULONG action;
CHAR szFailName[CCHMAXPATH];
RESULTCODES resc;
PSZ cmd;
PSZ args;
int cmdlen;
/* Copy command into format needed by DosExecPgm */
cmdlen = strlen(command)+1;
cmd = (char *)malloc(cmdlen+1);
if (cmd) {
char *p;
memset(cmd, 0, cmdlen+1);
strncpy(cmd, command, cmdlen);
p = args = cmd;
if (*p == '"') {
p++;
args = p;
while (*p && (*p != '"'))
p++;
}
else {
while (*p && (*p != 0))
p++;
}
*p = '\0';
}
else
return -1;
/* save existing stdio handles */
hOldStdin = 0xffffffff; /* allocate new handle */
if (rc == 0)
rc = DosDupHandle(hStdin, &hOldStdin);
hOldStdout = 0xffffffff; /* allocate new handle */
if (rc == 0)
rc = DosDupHandle(hStdout, &hOldStdout);
hOldStderr = 0xffffffff; /* allocate new handle */
if (rc == 0)
rc = DosDupHandle(hStderr, &hOldStderr);
if (rc != 0) {
free(cmd);
return -1;
}
/* if handles or files are provided, use them */
if ((hstdin != -1)) {
if (rc == 0)
DosDupHandle((HFILE)hstdin, &hStdin);
}
else if ((rc == 0) && stdin_name) {
rc = DosOpen((PCSZ)stdin_name, /* filename */
&hNewStdin, /* pointer to handle */
&action, /* pointer to result */
0, /* initial length */
FILE_NORMAL, /* normal file */
OPEN_ACTION_FAIL_IF_NEW | OPEN_ACTION_OPEN_IF_EXISTS,
OPEN_ACCESS_READONLY | OPEN_SHARE_DENYNONE,
0);
if (rc == 0)
rc= DosDupHandle(hNewStdin, &hStdin);
}
if ((hstdout != -1)) {
if (rc == 0)
DosDupHandle((HFILE)hstdout, &hStdout);
}
else if ((rc == 0) && stdout_name) {
rc = DosOpen((PCSZ)stdout_name, /* filename */
&hNewStdout, /* pointer to handle */
&action, /* pointer to result */
0, /* initial length */
FILE_NORMAL, /* normal file */
OPEN_ACTION_CREATE_IF_NEW | OPEN_ACTION_REPLACE_IF_EXISTS,
OPEN_ACCESS_WRITEONLY | OPEN_SHARE_DENYREADWRITE,
0);
if (rc == 0)
rc= DosDupHandle(hNewStdout, &hStdout);
}
if ((hstderr != -1)) {
if (rc == 0)
DosDupHandle((HFILE)hstderr, &hStderr);
}
else if ((rc == 0) && stderr_name) {
rc = DosOpen((PCSZ)stderr_name, /* filename */
&hNewStderr, /* pointer to handle */
&action, /* pointer to result */
0, /* initial length */
FILE_NORMAL, /* normal file */
OPEN_ACTION_CREATE_IF_NEW | OPEN_ACTION_REPLACE_IF_EXISTS,
OPEN_ACCESS_WRITEONLY | OPEN_SHARE_DENYWRITE,
0);
if (rc == 0)
rc= DosDupHandle(hNewStderr, &hStderr);
}
if (rc != 0) {
free(cmd);
return -1;
}
rc = DosExecPgm(szFailName, sizeof(szFailName),
EXEC_SYNC, args, (PSZ)NULL, &resc, args);
/* Put stdio back to original handles */
DosDupHandle(hOldStdin, &hStdin);
DosDupHandle(hOldStdout, &hStdout);
DosDupHandle(hOldStderr, &hStderr);
DosClose(hOldStdin);
DosClose(hOldStdout);
DosClose(hOldStderr);
if (hNewStdin != -1)
DosClose(hNewStdin);
if (hNewStdout != -1)
DosClose(hNewStdout);
if (hNewStderr != -1)
DosClose(hNewStderr);
if (rc)
return -1;
return (int)resc.codeResult;
}
#endif
|