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
|
2006-03-23 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff 3.8.2 released.
* tools/Makefile.am: Use runtime paths linker flags when rpath
option enabled.
2006-03-21 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/libtiff.def: Added missed exports as per bug
http://bugzilla.remotesensing.org/attachment.cgi?id=337
* contrib/addtiffo/Makefile.vc, libtiff/Makefile.vc, port/Makefile.vc,
tools/Makefile.vc: Makefiles improvements as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=1128
* nmake.opt libtiff/{tif_config.h.vc, tif_unix.c, tiffio.h},
tools/{fax2ps.c, fax2tiff.c, tiff2pdf.c}: Fixed win32 I/O functions
usage as per bug http://bugzilla.remotesensing.org/show_bug.cgi?id=1127
* libtiff/tif_strip.c: Take subsampling in account when calculating
TIFFScanlineSize().
* tools/tiffcp.c: Do not set RowsPerStrip bigger than image length.
2006-03-17 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/fax2tiff.c: Fixed wrong TIFFerror() invocations as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=1125
* tools/fax2ps.c: Fixed reading the input stream from stdin as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=1124
2006-03-16 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tiffiop.h: Added decalration for
_TIFFSetDefaultCompressionState().
* libtiff/{tif_jpeg.c, tif_fax3.c, tif_zip.c, tif_pixarlog.c,
tif_lzw.c, tif_luv.c}: Use _TIFFSetDefaultCompressionState() in all
codec cleanup methods. As per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=1120
2006-03-15 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_jpeg.c: Do not cleanup codec state in TIFFInitJPEG(). As
per bug http://bugzilla.remotesensing.org/show_bug.cgi?id=1119
* tools/raw2tiff.c: Do not set RowsPerStrip larger than ImageLength.
As per bug http://bugzilla.remotesensing.org/show_bug.cgi?id=1110
* libtiff/tiffiop.h: dblparam_t typedef removed; GLOBALDATA macro
removed; move here the STRIP_SIZE_DEFAULT macro definition.
* libtiff/{tif_dirread.c, tif_strip.c}: Removed STRIP_SIZE_DEFAULT
macro definition.
* libtiff/tif_dir.c: Use double type instead of dblparam_t.
2006-03-14 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_dirread.c: Do not check the PlanarConfig tag presence
in TIFFReadDirectory, because it is always set at the start of
function and we allow TIFFs without that tag set.
2005-03-13 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff 3.8.1 released.
2006-03-07 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_dirread.c: Fixed error reporting in TIFFFetchAnyArray()
function as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=1102
* libtiff/tif_dirread.c: More wise check for integer overflow
condition as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=1102
* libtiff/{tif_jpeg.c, tif_pixarlog.c, tif_fax3.c, tif_zip.c}:
Properly restore setfield/getfield methods in cleanup functions. As
per bug http://bugzilla.remotesensing.org/show_bug.cgi?id=1102
2006-03-03 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tif_predict.c, tif_predict.h}: Added new function
TIFFPredictorCleanup() to restore parent decode/encode/field methods.
* libtiff/{tif_lzw.c, tif_pixarlog.c, tif_zip.c}: Use
TIFFPredictorCleanup() in codec cleanup methods. As per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=1102
* libtiff/tif_dirread.c: Fixed integer overflow condition in
TIFFFetchData() function. As per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=1102
2006-03-01 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_ojpeg.c: Set the ReferenceBlackWhite with the
TIFFSetField() method, not directly. As per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=1043
* tools/ppm2tiff.c: Added support for PBM files as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=1044
2006-02-27 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_write.c: Small code rearrangement in TIFFWriteScanline()
to avoid crash as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=1081.
2006-02-26 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/tiff2pdf.c: Functions t2p_sample_rgbaa_to_rgb() and
t2p_sample_rgba_to_rgb() was used in place of each other, that was
resulted in problems with RGBA images with associated alpha.
As per bug http://bugzilla.remotesensing.org/show_bug.cgi?id=1097
2006-02-23 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_dirwrite.c: Properly write TIFFTAG_DOTRANGE tag as per
bug http://bugzilla.remotesensing.org/show_bug.cgi?id=1088.
* libtiff/tif_print.c: Properly read TIFFTAG_PAGENUMBER,
TIFFTAG_HALFTONEHINTS, TIFFTAG_YCBCRSUBSAMPLING and TIFFTAG_DOTRANGE
tags as per bug http://bugzilla.remotesensing.org/show_bug.cgi?id=1088.
* tools/tiff2ps.c: Properly scale all the pages when converting
multipage TIFF with /width/height/center options set. As per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=1080
2006-02-15 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/tiff2pdf.c: Do not create output file until all option checks
will be done. As per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=1072
* tools/bmp2tiff.c: Added ability to create multipage TIFFs from the
list of input files as per bug:
http://bugzilla.remotesensing.org/show_bug.cgi?id=1077
2006-02-09 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_tile.c: Fix error reporting in TIFFCheckTile() as per
bug http://bugzilla.remotesensing.org/show_bug.cgi?id=1063.
* tools/tiffgt.c: Avoid crashing in case of image unsupported by
TIFFRGBAImage interface.
* libtiff/tif_color.c: Avoid overflow in case of wrong input as per
bug http://bugzilla.remotesensing.org/show_bug.cgi?id=1065.
2006-02-07 Frank Warmerdam <warmerdam@pobox.com>
* tools/tiff2pdf.c: Fixed support for non-YCbCr encoded JPEG
compressed TIFF files, per submission from Dan Cobra.
2006-02-07 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tif_dirread.c, tif_packbits.c, tif_win32.c}: Properly
cast values to avoid warnings. As per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=1033.
* libtiff/tif_dirinfo.c: Use TIFF_NOTYPE instead of 0 when
appropriate. As per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=1033.
* libtiff/tif_aux.c: Fixed type of temporary variable in
_TIFFCheckMalloc() as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=1033.
2006-02-06 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_aux.c: Return static array when fetching default
YCbCrCoefficients (another problem, reported a the
http://bugzilla.remotesensing.org/show_bug.cgi?id=1029 entry).
2006-02-03 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_dir.c: Special handling for PageNumber, HalftoneHints,
YCbCrSubsampling and DotRange tags as per bugs
http://bugzilla.remotesensing.org/show_bug.cgi?id=1029
http://bugzilla.remotesensing.org/show_bug.cgi?id=1034
* libtiff/tif_dirread.c: Use _TIFFGetExifFieldInfo() instead of
_TIFFGetFieldInfo() in TIFFReadEXIFDirectory() call as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=1026.
2006-01-23 Andrey Kiselev <dron@ak4719.spb.edu>
* libtool related stuff updated from the 2.1a branch.
2006-01-11 Frank Warmerdam <warmerdam@pobox.com>
* tools/bmp2tiff,pal2rgb,ppm2tiff,ras2tiff,raw2tiff,sgi2tiff,
tiff2bw,tiffcp: Fixed jpeg option processing so -c jpeg:r:50 works
properly as per bug:
http://bugzilla.remotesensing.org/show_bug.cgi?id=1025
2006-01-09 Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
* configure.ac: Fix with_default_strip_size comparison as reported
by Norihiko Murase.
2006-01-08 Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
* test/Makefile.am (LIBTIFF): Due to linking against libtiff
incorrectly, tests were not actually testing the uninstalled
libtiff. Now they are.
2006-01-04 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_dirinfo.c: Change definitions for TIFFTAG_ICCPROFILE,
TIFFTAG_PHOTOSHOP, TIFFTAG_RICHTIFFIPTC, TIFFTAG_XMLPACKET: readcount
should be uint32 value.
2006-01-02 Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
* html/man/Makefile.am (htmldoc): Fix htmldoc rule so that it can
be used if build directory is not the same as source directory.
* man/{TIFFGetField.3tiff, TIFFSetField.3tiff}: Documented
TIFFTAG_PHOTOSHOP, TIFFTAG_RICHTIFFIPTC, and TIFFTAG_XMLPACKET,
and re-sorted tag names in alphabetical order.
2005-12-29 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff 3.8.0 released.
2005-12-28 Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
* tools/bmp2tiff.c (main): Fixed warning regarding returning
inconsistent types from a condition.
* tools/tiffcmp.c (CheckLongTag): Eliminate warning due to printf
format.
* tools/bmp2tiff.c: Reduce compilation warnings on big-endian CPUs.
2005-12-28 Joris Van Damme <joris.at.lebbeke@skynet.be>
* html/{index.html, support.hml, libtiff.html}: Cleaned up HTML
2005-12-27 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tiffio.h: Added VC_EXTRALEAN definition before including
windows.h, to reduce the compile time.
2005-12-26 Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
* libtiff/tif_jpeg.c: Improve compilation under MinGW.
2005-12-26 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tif_dir.c, tif_dir.h, tif_dirread.c, tif_dirinfo.c}:
tiffFieldInfo and exifFieldInfo arrays definitions moved back to
tif_dirinfo.c; added _TIFFGetFieldInfo() and _TIFFGetExifFieldInfo()
private functions to retrieve FieldInfo arrays.
2005-12-24 Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
* html/build.html: Added some additional instructions for when
building using MSVC under Windows. Also fixed two HTML syntax
errors and used HTML Tidy to tidy up the HTML syntax and
formatting.
2005-12-24 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tif_aux.c, tif_dir.c, tif_dir.h, tif_dirwrite.c,
tif_print.c, tif_getimage.c}: Make InkSet, NumberOfInks, DotRange and
StoNits tags custom.
2005-12-23 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tif_aux.c, tif_dir.c, tif_dir.h, tif_print.c}: Make
WhitePoint tag custom.
* libtiff/{tif_dir.h, tiff.h}: More EXIF tags added.
2005-12-23 Joris Van Damme <joris.at.lebbeke@skynet.be>
* libtiff/tiffio.h: fixed typo that potentially resulted in
redefininition of USE_WIN32_FILEIO
* libtiff/*: Added more 'dual-mode' error handling: Done TIFFWarning
calls in core LibTiff.
2005-12-21 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tif_dir.c, tif_dir.h, tif_print.c}: Make RichTIFFIPTC,
Photoshop and ICCProfile tags custom.
2005-12-21 Joris Van Damme <joris.at.lebbeke@skynet.be>
* libtiff/*, contrib/*: Added 'dual-mode' error handling, enabling
newer code to get context indicator in error handler and still
remain compatible with older code: Done TIFFError calls everywhere
except in tools
2005-12-20 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/tiffcp.c: Added many error reporting messages; fixed integer
overflow as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=789
2005-12-16 Frank Warmerdam <warmerdam@pobox.com>
* contrib/addtiffo/*: Major upgrade by Joris to support subsampled
YCbCr images in jpeg compressed TIFF files.
2005-12-14 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/tiffcp.c: Return non-zero status when reading fails (again).
2005-12-13 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/tiffcp.c: Return non-zero status when reading fails.
2005-12-12 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tif_dir.h, tiff.h}: Added more EXIF tags.
2005-12-09 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tif_dir.c, tif_dir.h, tif_print.c}: Make XMLPacket tag
custom.
* tools/tiffinfo.c: Print EXIF directory contents if exist.
* libtiff/tiff.h: Few EXIF tag numbers added.
* libtiff/{tif_dirinfo.c, tif_dirread.c, tif_dir.h, tif_dir.c,
tiffio.h}: Preliminary support to read custom directories. New
functions: TIFFReadCustomDirectory() and TIFFReadEXIFDirectory().
2005-12-07 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tif_dirinfo.c, tif_dirread.c, tif_dir.h, tif_dir.c}:
More work to implement custom directory read support.
* libtiff/{tif_aux.c, tif_dirinfo.c, tif_dirread.c, tif_dir.h,
tif_dir.c, tif_print.c}: Make YCbCrCoefficients and ReferenceBlackWhite
tags custom.
2005-12-05 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_dirread.c: One more workaround for broken
StripByteCounts tag. Handle the case when StripByteCounts array filled
with completely wrong values.
2005-11-30 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_dirinfo.c: Release file descriptor in case of failure
in the TIFFOpenW() function as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=1003
* libtiff/tif_dirinfo.c: Correctly yse bsearch() and lfind()
functions as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=1008
2005-11-20 Frank Warmerdam <warmerdam@pobox.com>
* tif_open.c, tiff.h, tiffdump.c: Incorporate preliminary support
for MS MDI format.
http://bugzilla.remotesensing.org/show_bug.cgi?id=1002
* .cvsignore: many files added, and a few update according
to suggestion of Brad HArds on tiff mailing list.
2005-11-03 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/libtiff.def, tiffiop.h, tiffio.h: Made TIFFFreeDirectory
public.
2005-10-31 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/fax2tiff.c: Properly calculate sizes of temporary arrays
as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=943
* tools/fax2tiff.c: Added option '-r' to set RowsPerStrip parameter
as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=944
* tools/tiffdump.c: Fixed typeshift and typemask arrays initialization
problem as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=946
* tools/bmp2tiff.c: Fixed possible integer overflow error as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=965
* libtiff/tif_dirinfo.c: Make XResolution, YResolution and
ResolutionUnit tags modifiable during write process. As per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=977
* tools/tiffsplit.c: Copy fax related fields over splitted parts
as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=983
2005-10-21 Frank Warmerdam <warmerdam@pobox.com>
* tif_dirread.c: Don't try and split single strips into "0" strips
in ChopUpSingleUncompressedStrip. This happens in some degenerate
cases (like 1x1 files with stripbytecounts==0 (gtsmall.jp2 embed tiff)
2005-10-20 Joris Van Damme <joris.at.lebbeke@skynet.be>
* tif_fax3.c: changed 'at scanline ...' style warning/errors
with incorrect use of tif_row, to 'at line ... of
strip/tile ...' style
2005-10-15 Frank Warmerdam <warmerdam@pobox.com>
* tif_write.c: fixed setting of planarconfig as per bug report
on the mailing list from Joris.
2005-10-07 Andrey Kiselev <dron@ak4719.spb.edu>
* configure.ac, configure, nmake.opt, libtiff/{tif_config.h,
tif_dirread.c}: Make the default strip size configurable via the
--with-default-strip-size and STRIP_SIZE_DEFAULT options.
2005-09-30 Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
* html/support.html: Fixed link to documentation on Greg Ward's
LogLuv TIFF format.
2005-09-28 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/tiffdump.c: Fixed crash when reading malformed tags.
2005-09-20 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/tiff2pdf.c: Added missed 'break' statement as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=932
2005-09-12 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff 3.7.4 released.
* {configure, configure.ac, Makefile.am, autogen.sh}: Applied patch
from Patrick Welche (all scripts moved in the 'config' and 'm4'
directories).
2005-09-12 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_open.c: reintroduce seek to avoid problem on solaris.
2005-09-05 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_dir.c: When prefreeing tv->value in TIFFSetFieldV
also set it to NULL to avoid double free when re-setting custom
string fields as per:
http://bugzilla.remotesensing.org/show_bug.cgi?id=922
2005-08-12 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_print.c: avoid signed/unsigned warning.
* libtiff/tif_dirread.c: removed unused variable.
2005-07-30 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_dir.c: Fixed up support for swapping "double complex"
values (128 bits as 2 64 bits doubles). GDAL gcore tests now
pass on bigendian (macosx) system.
2005-07-28 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tif_aux.c, tif_dirread.c, tif_fax3.c, tiffiop.h}: Rename
CheckMalloc() function to _TIFFCheckMalloc() and make it available
globally as an internal helper routine.
2005-07-27 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_dir.c: More improvements in the "pass by value" part of
the custom tags handling code.
2005-07-26 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tif_dirread.c, tif_dirinfo.c}: Do not upcast BYTEs to
SHORTs in the TIFFFetchByteArray(). Remove TIFFFetchExtraSamples()
function, use TIFFFetchNormalTag() instead as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=831
Remove TIFFFetchExtraSamples() function, use TIFFFetchNormalTag()
instead.
* libtiff/tiffconf.h.in: One more attempt to fix the AIX bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=39
2005-07-25 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_print.c: Fixed printing of the BYTE and SBYTE arrays.
* tools/tiffdump.c: Added support for TIFF_IFD datatype.
2005-07-21 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_write.c: Do not check the PlanarConfiguration field in
the TIFFWriteCheck() function in case of single band images (as per
TIFF spec).
2005-07-12 Andrey Kiselev <dron@ak4719.spb.edu>
* SConstruct, libtiff/SConstruct: Added the first very preliminary
support for SCons software building tool (http://www.scons.org/).
This is experimental infrastructure and it will exist along with the
autotools mechanics.
2005-07-07 Andrey Kiselev <dron@ak4719.spb.edu>
* port/{getopt.c, strcasecmp.c, strtoul.c}: Update modules from
the NetBSD source tree (the old 4-clause BSD license changed to
the new 3-clause one).
* configure.ac, port/lfind.c, libtiff/tiffiop.h: Added lfind()
replacement module.
* port/dummy.c: Make the dummy function static.
2005-07-06 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/tiffcp.c: Fixed WhitePoint tag copying.
* libtiff/{tif_dir.c, tif_dir.h, tif_dirinfo.c, tif_print.c}:
Make FieldOfViewCotangent, MatrixWorldToScreen, MatrixWorldToCamera,
ImageFullWidth, ImageFullLength and PrimaryChromaticities tags custom.
2005-07-04 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff 3.7.3 released.
* configure, configure.ac: Do not use empty -R option when linking
with --enable-rpath.
2005-07-01 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tiffiop.h, tif_open.c}: Added open option 'h' to avoid
reading the first IFD when needed. As per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=875
* libtiff/tif_color.c: Better use of TIFFmin() macro to avoid side
effects.
2005-06-23 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/tiff2pdf.c: Print two characters per loop in the
t2p_write_pdf_trailer(). As per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=594
* tools/tiffgt.c: Use MacOS X OpenGL framework when appropriate. As
per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=844
* acinclude.m4: Updated to latest OpenGL test macros versions.
* libtiff/tiff.h: Use correct int size on Sparc 64bit/Sun compiler
platform. As per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=855
2005-06-14 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_dirinfo.c: Added support for ClipPath, XClipPathUnits
and YClipPathUnits tags.
2005-06-07 Andrey Kiselev <dron@ak4719.spb.edu>
* contrib/addtiffo/tif_ovrcache.c: Properly extract tile/strip size;
use pixel sized shift in contigous case.
2005-06-06 Andrey Kiselev <dron@ak4719.spb.edu>
* contrib/addtiffo/{tif_overview.c, tif_ovrcache.c, tif_ovrcache.h}:
Make overviews working for contiguos images.
2005-06-03 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_open.c: Replace runtime endianess check with the compile
time one.
* libtiff/tif_predict.c: Floating point predictor now works on
big-endian hosts.
2005-06-01 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_dir.c: Use _TIFFsetString() function when read custom
ASCII values.
* libtiff/{tif_dirinfo.c, tif_dir.h, tif_dir.c, tif_print.c}: Make
DocumentName, Artist, HostComputer, ImageDescription, Make, Model,
Copyright, DateTime, PageName, TextureFormat, TextureWrapModes and
TargetPrinter tags custom.
* libtiff/tif_jpeg.c: Cleanup the codec state depending on
TIFF_CODERSETUP flag (to fix memry leaks).
* libtiff/tif_jpeg.c: Initialize JPEGTables array with zero after
allocating.
2005-05-26 Andrey Kiselev <dron@ak4719.spb.edu>
* configure.ac, libtiff/Makefile.am: Added workaround for
OpenBSD/MirOS soname problem as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=838
* libtiff/tif_dirwrite.c: Use tdir_count when calling
TIFFCvtNativeToIEEEDouble() in the TIFFWriteDoubleArray() function as
per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=845
2005-05-25 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/ppm2tiff.c: Fixed format string when read PPM file header with
the fscanf() function. As per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=861
* libtiff/{tif_dirinfo.c, tif_print.c}: TIFFFetchByteArray() returns
uint16 array when fetching the BYTE and SBYTE filds, so we should
consider result as pointer to uint16 array and not as array of chars.
As per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=831
* libtiff/tif_dir.c: More efficient custom tags retrieval as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=830
* libtiff/tif_win32.c: Use FILE_SHARE_READ | FILE_SHARE_WRITE share
mode in CreateFile() call as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=829
* libtiff/Makefile.am: Fixed parallel compilation of the libtiff and
libtiffxx libraries as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=826
* contrib/addtiffo/{tif_overview.c, tif_ovrcache.h}: Sinchronized with
GDAL.
2005-05-23 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_jpeg.c: Substantial fix for addtiffo problems with
JPEG encoded TIFF files. Pre-allocate lots of space for jpegtables
in directory.
2005-05-22 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_dirread.c: Changed the code that computes
stripbytecount[0] if it appears bogus to ignore if stripoffset[0] is
zero. This is a common case with GDAL indicating a "null" tile/strip.
2005-05-17 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/tiffsplit.c: Check for JPEGTables tag presence before copying.
2005-05-06 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_dirread.c: Applied similar change to
TIFFFetchPerSampleLongs and TIFFFetchPerSampleAnys.
http://bugzilla.remotesensing.org/show_bug.cgi?id=843
* libtiff/tif_jpeg.c: added LIB_JPEG_MK1 support in JPEGDecodeRaw().
2005-05-06 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/tiff2pdfr.c, man/tiff2pdf.1: Calculate the tile width properly;
added new option '-b' to use interpolation in output PDF files (Bruno
Ledoux).
2005-05-05 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_dirread.c: Ensure that broken files with too many
values in PerSampleShorts work ok instead of crashing.
http://bugzilla.remotesensing.org/show_bug.cgi?id=843
2005-04-27 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/tiffdither.c: Copy the PhotometricInterpretation tag from the
input file.
2005-04-15 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_predict.c: Added ability to encode floating point
predictor, as per TIFF Technical Note 3.
2005-04-14 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tif_predict.h, tif_predict.c}: Added ability to decode
floating point predictor, as per TIFF Technical Note 3.
2005-04-13 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tiffio.h, tiffiop.h, tif_dir.c, tif_read.c, tif_swab.c}:
Added _TIFFSwab24BitData() and TIFFSwabArrayOfLong() functions used to
swap 24-bit floating point values.
* libtiff/tiff.h: Added predictor constants.
2005-04-08 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tiffiop.h, tif_dir.c}: Use uint32 type for appropriate
values in _TIFFVSetField() function. Inspired by the bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=816
* man/TIFFSetField.3tiff: Fixed definition of the TIFFTAG_INKNAMES tag
as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=816
2005-03-30 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_open.c: Do not read header in case the output file
should be truncated (Ron).
* libtiff/{tif_dirinfo.c, tif_config.h.vc}: Use lfind() instead
of bsearch() in _TIFFFindFieldInfoByName() function (Ron).
* libtiff/{tiff.h, tif_dirinfo.c}: Fixes in EXIF tag ordering (Ron).
2005-03-22 Andrey Kiselev <dron@ak4719.spb.edu>
* configure.ac, libtiff/Makefile.am: Use libtool machinery to pass
rpath option.
2005-03-21 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tif_dir.c, tif_print.c}: Handle all data types in custom
tags.
2005-03-18 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/dirinfo.c: Added DNG tags.
* libtiff/{tif_dir.c, tif_print.c}: More improvements in custom tag
handling code.
* libtiff/tiff.h: More comments; added missed DNG tag (LensInfo);
added DNG 1.1.0.0 tags.
* tools/tif2pdf.c: Fixed problem with alpha channel handling as per
bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=794
* man/TIFFGetField.3tiff: Add a note about autoregistered tags.
2005-03-17 Andrey Kiselev <dron@ak4719.spb.edu>
* nmake.opt: Build with Win32 CRT library by default.
* tools/tiff2ps.c: Fixed typo in page size handling code.
* libtiff/{tif_dir.c, tif_print.c}: Support for custom tags, passed
by value.
* libtiff/{tiff.h, tif_dirinfo.c, tiffiop.h}: Added EXIF related tags.
2005-03-15 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff 3.7.2 released.
2005-03-09 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/tiffcmp.c: Added ability to compare the 32-bit integer and
floating point data; complain on unsupported bit depths.
2005-03-05 Andrey Kiselev <dron@ak4719.spb.edu>
* tif_stream.cxx: Use ios namespace instead of ios_base to support
GCC 2.95.
* libtiff/{tiff.h, tif_fax3.tif, tif_jpeg.c}: Applied correct patch from
Lee Howard for HylaFax DCS tag
(see http://bugzilla.remotesensing.org/show_bug.cgi?id=771)
2005-03-04 Andrey Kiselev <dron@ak4719.spb.edu>
* configure, configure.ac: Use -rpath option instead of -R as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=732
* libtiff/{tiff.h, tif_fax3.tif, tif_jpeg.c}: Applied patch from Lee
Howard to support a new tag TIFFTAG_FAXDCS (34911) used in HylaFax
software. As per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=771
* nmake.opt, html/build.html: Add more comments, change the config
file organization a bit as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=764
* tools/tiffcmp.c: Use properly sized buffer in short arrays comparison
as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=785
2005-03-03 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_dirread.c: More logic to guess missed strip size as per
bug http://bugzilla.remotesensing.org/show_bug.cgi?id=705
* tools/fax2ps.c: Replace insecure mktemp() function with the
tmpfile() as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=786
2005-02-04 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tiff.h: Changed the int8 definition to be always signed char
as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=727
* libtiff/tiffio.h: Move TIFFOpenW() function into the extern "C"{}
block as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=763
2005-02-03 Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
* tools/tiffgt.c: Fix problem on big-endian CPUs so that images
display more correctly. Images display brighter than they should
on a Sun workstation.
2005-02-03 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_dirread.c: Estimate strip size in case of wrong or
suspicious values in the tags. As per bugs
http://bugzilla.remotesensing.org/show_bug.cgi?id=705
and
http://bugzilla.remotesensing.org/show_bug.cgi?id=320
* tools/tiff2ps.c: Fixed problem with page sizes as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=742
2005-01-31 Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
* libtiff/tiff.h (TIFFTAG_TILEWIDTH): Corrected description.
(TIFFTAG_TILELENGTH): Corrected description.
2005-01-30 Andrey Kiselev <dron@ak4719.spb.edu>
* configure.ac: Fixes for --with-docdir option as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=759
* libtiff/tif_open.c: Remove unnesessary TIFFSeekFile() call as per
bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=756
* libtiff/tif_stream.cxx: Fixes for C++ stream interface from
Michael Rinne and Edward Lam.
2005-01-15 Andrey Kiselev <dron@ak4719.spb.edu>
* configure.ac: Make the documentation directory location configurable
via the --with-docdir option (as suggested by Jeremy C. Reed).
* libtiff/tif_color.c: Use double as the second argument of pow()
function in TIFFCIELabToRGBInit(). As per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=741
* libtiff/tif_pixarlog.c: Avoid warnings when converting float to
integer as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=740
* libtiff/tif_getimage.c: Always fill the error message buffer in
TIFFRGBAImageBegin() as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=739
2005-01-12 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_jpeg.c: Added ability to read/write the fax specific
TIFFTAG_FAXRECVPARAMS, TIFFTAG_FAXSUBADDRESS and TIFFTAG_FAXRECVTIME
tags as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=736
* libtiff/tif_win32.c: Fixed message formatting in functions
Win32WarningHandler() and Win32ErrorHandler() as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=735
* tools/tiff2ps.c: Interpret the -w and -h options independently. As
per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=689
2005-01-11 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tiffio.h: Move the color conversion routines in the 'extern
"C"' section as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=727
* libtiff/tiff.h: Restore back the workaround for AIX Visual Age C
compiler to avoid double definition of BSD types as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=39
* libtiff/Makefile.am: Place the C++ stream API in the separate
library called libtiffxx to avoid unneeded dependencies. Probably
there will be more C++ API in the future. As per bugs
http://bugzilla.remotesensing.org/show_bug.cgi?id=733
and
http://bugzilla.remotesensing.org/show_bug.cgi?id=730
2005-01-05 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/tiffdump.c: Fixed problem when read broken TIFFs with the
wrong tag counts (Dmitry V. Levin, Martin Pitt).
* configure.ac: Replace --disable-c++ with the --disable-cxx option as
per bug http://bugzilla.remotesensing.org/show_bug.cgi?id=730
2004-12-25 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_getimage.c: More fixes for multiple-alpha-channelled
RGB-images as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=713
* tools/tiffset.c: Convert character option to integer value as per
bug http://bugzilla.remotesensing.org/show_bug.cgi?id=725
2004-12-20 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff 3.7.1 released.
* html/tiffset.1.html: Add missed manual page as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=678
* libtiff/tiff.h: Revert back libtiff data type definitions as per
bug http://bugzilla.remotesensing.org/show_bug.cgi?id=687
2004-12-19 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_dirread.c: Do not forget about TIFF_VARIABLE2 when
checking for tag count in TIFFReadDirectory() function. As per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=713
* libtiff/{tif_dirread.c, tif_fax3.c}: More argument checking in
CheckMallock() function.
* libtiff/tif_getimage.c: Support for multiple-alpha-channelled
RGB-images as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=718
2004-12-15 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_getimage.c: #define A1 bracketing for clean build on
SunPro compiler.
2004-12-11 Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
* autogen.sh: aclocal and autoheader should be executed after
libtoolize. Also add '-I .' to aclocal invocation to check
current directory for macros.
2004-12-10 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_dirwrite.c: Always write TIFFTAG_SUBIFD using LONG type
as per bugs
http://bugzilla.remotesensing.org/show_bug.cgi?id=703
and
http://bugzilla.remotesensing.org/show_bug.cgi?id=704
2004-12-04 Andrey Kiselev <dron@ak4719.spb.edu>
* nmake.opt: Link with the user32.lib in windowed mode. As per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=697
* libtiff/tif_win32.c: Use char* strings instead of TCHAR in windowed
mode as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=697
* libtiff/tif_config.in.vc: Removed unneded definitions for
read/open/close/lseek functions to fix the
http://bugzilla.remotesensing.org/show_bug.cgi?id=680
2004-12-03 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tif_dir.c, tif_dirread.c}: Remove TIFFReassignTagToIgnore()
call from the TIFFReadDirectory() function. TIFFReassignTagToIgnore
must be removed in the future, as it was never used properly. As per
bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=692
2004-11-30 Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
* libtiff/tif_jpeg.c: Added a work-around in order to allow
compilation with the heavily modified version of libjpeg delivered
with Cygwin.
2004-11-29 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_dir.c: Properly handle tags, which have the uint32
counts. As per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=693
* tools/fax2ps.c: Be able to extract the first page (#0). As per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=690
2004-11-28 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_unix.c: Make UNIX module compilable (and usable)
on Windows.
* nmake.opt: Add missed DLLNAME variable.
2004-11-26 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/makefile.vc: make it easier to rename the libtiff DLL.
2004-11-24 Andrey Kiselev <dron@ak4719.spb.edu>
* man/libtiff.3tiff: Improvements in the "LIST OF ROUTINES" table as
per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=545
* man/tiffset.1: Added manual page for tiffset tool written by Jay
Berkenbilt. As per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=678
2004-11-23 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_error.c: fixed TIFFerror call to be TIFFError.
2004-11-21 Frank Warmerdam <warmerdam@pobox.com>
* html/document.html: Updated Adobe web links as per email from Joris.
2004-11-21 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tiffio.hxx, tiffio.h}: C++ stream interface moved to new
file tiffio.hxx. We don't have any C++ in tiffio.h, those who want to
use C++ streams should #include <tiffio.hxx>.
2004-11-13 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tiff.h: Added Adobe DNG tags.
* libtiff/tif_win32.c: Typo fixed.
* libtiff/{tif_stream.cxx, tiffio.h}: C++ stream interface updated to
be compliant with the latest standard. Appropriate additions in
makefiles now completed.
2004-11-11 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/tiffset.c, libtiff/tif_dirinfo.c: Properly handle the
different tag types. As per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=600
2004-11-10 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_aux.c: Set the appropriate ReferenceBlackWhite array for
YCbCr image which lacks that tag (noted by Hans Petter Selasky).
2004-11-09 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_color.c: Division by zero fixed (Hans Petter Selasky).
2004-11-07 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tif_stream.cxx, tiffio.h}: Added C++ stream interface
contributed by Edward Lam (see
http://bugzilla.remotesensing.org/show_bug.cgi?id=654 for details).
Though no changes in any makefiles yet.
2004-11-05 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_open.c: Removed close() in TIFFClientOpen() if file
is bad. This is the callers responsibility.
http://bugzilla.remotesensing.org/show_bug.cgi?id=651
2004-11-05 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tiffio.h, tif_win32.c, libtiff.def}: Added TIFFOpenW()
function to work with the double byte strings (used to represent
filenames in some locales). As per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=625
* libtiff/tif_dirread.c: Fixed problem when fetching BitsPerSample and
Compression tags of type LONG from broken TIFFS as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=662
* libtiff/tif_dirinfo.c: Fixed definition for TIFFTAG_RICHTIFFIPTC,
the writecount should have uint32 type. As per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=662
* libtiff/tif_write.c: Fixed wrong if() statement in
TIFFAppendToStrip() function as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=660
2004-11-04 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_dirinfo.c: Change definition for TIFFTAG_EXTRASAMPLES
field. The caller should supply a count when setting this field. As
per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=648
* libtiff/{tif_jpeg.c, tif_ojpeg.c}: TIFFTAG_JPEGTABLES should have
uint32 count. Use this type everywhere.
2004-11-03 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_next.c: avoid use of u_long and u_char types. Bug 653.
2004-11-02 Frank Warmerdam <warmerdam@pobox.com>
* tools/tiff2rgba.c: removed extra newlines in usage message.
2004-10-30 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_dirwrite.c: Improvements in tag writing code.
* tools/tiff2ps.c: Fixed wrong variable data type when read Position
tags (Tristan Hill).
2004-10-30 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tiffiop.h: added fallback definition of assert() if we
don't have assert.h.
2004-10-29 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_fax3.c: Fixed case with the wrong decode routines
choosing when the incorrect Group4Options tag set. As per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=323
* libtiff/tif_dirwrite.c: Fixed problem with passing count variable of
wrong type when writing the TIFF_BYTE/TIFF_SBYTE tags in
TIFFWriteNormalTag().
2004-10-28 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/tiff2ps.c: Fixed wrong variable data type when read Resolution
tags (Peter Fales).
* tools/{bmp2tiff.c, raw2tiff.c}: Get rid of stream I/O functions.
2004-10-28 Frank Warmerdam <warmerdam@pobox.com>
* tools/tiff2pdf.c: added casts to avoid warnings.
* libtiff/libtiff.def: Added several more entry points required
to link fax2tiff.c against the DLL on windows.
2004-10-27 Andrey Kiselev <dron@ak4719.spb.edu>
* configure, configure.ac: Added --enable-rpath option to embed linker
paths into library binary.
2004-10-26 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/tiffset.c: Check the malloc return value (Dmitry V. Levin).
* libtiff/{tif_strip.c, tif_tile.c}: Zero division problem fixed
(Vladimir Nadvornik, Dmitry V. Levin).
2004-10-16 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff 3.7.0 released.
2004-10-15 Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
* libtiff/tif_jpeg.c: There seems to be no need to include stdio.h
in this file so its inclusion is removed. Including stdio.h
sometimes incurs an INT32 typedef conflict between MinGW's
basetsd.h and libjpeg's jmorecfg.h.
2004-10-15 Andrey Kiselev <dron@ak4719.spb.edu>
* man/bmp2tiff.1: Added manual page for bmp2tiff utility.
2004-10-13 Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
* tools/tiffcmp.c (leof): Renamed from 'eof' in order to avoid
conflict noticed under MinGW.
* ltmain.sh: Fix for MinGW compilation.
2004-10-13 Frank Warmerdam <warmerdam@pobox.com>
* man/tiffsplit.1: Fixed to indicate using aaa-zzz, not aa-zz.
http://bugzilla.remotesensing.org/show_bug.cgi?id=635
2004-10-12 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tif_dirread.c, tif_jpeg.c, tif_luv.c, tif_ojpeg.c,
tif_pixarlog.c, tif_write.c}: Handle the zero strip/tile sizes
properly (Dmitry V. Levin, Marcus Meissner).
2004-10-11 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_dirinfo.c: Type of the TIFFTAG_SUBIFD field changed
to TIFF_IFD.
2004-10-10 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/bmp2tif.c: Check the space allocation results.
2004-10-09 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_dir.c: Initialize td_tilewidth and td_tilelength fields
of the TIFFDirectory structure with the 0 instead of -1 to avoid
confusing integer overflows in TIFFTileRowSize() for striped images.
* tools/tiff2pdf.c: Fixed TransferFunction tag handling reported
by Ross A. Finlayson.
* libtiff/tif_dir.c: Fixed custom tags handling as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=629
2004-10-08 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_dirinfo.c: Fix bug with tif_foundfield and reallocation
of tif_fieldinfo.
http://bugzilla.remotesensing.org/show_bug.cgi?id=630
2004-10-04 Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
* contrib/iptcutil/README: Added the missing README which goes
along with iptcutil.
2004-10-03 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_compress.c: Improved error reporting in
TIFFGetConfiguredCODECs() (Dmitry V. Levin).
2004-10-02 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff 3.7.0beta2 released.
* libtiff/{tif_aux.c, tif_compress.c, tif_dirinfo.c, tif_dirwrite.c,
tif_extension.c, tif_fax3.c, tif_luv.c, tif_packbits.c,
tif_pixarlog.c, tif_write.c}: Added checks for failed memory
allocations and integer overflows (Dmitry V. Levin).
* libtiff/tiff.h: Missed TIFF_BIGTIFF_VERSION constant added.
2004-10-01 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_open.c: added a more informative message if a BigTIFF
file is opened.
2004-09-30 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_dirinfo.c: changed type of XMLPacket (tag 700) to
TIFFTAG_BYTE instead of TIFFTAG_UNDEFINED to comply with the info
in the Adobe XMP Specification.
2004-09-29 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tif_jpeg.c, tif_pixarlog.c}: Use _TIFFmemset() instead of
memset().
* libtiff/{tif_dirread.c, tif_strip.c, tif_tile.c}: Applied patches
from Dmitry V. Levin to fix possible integer overflow problems.
2004-09-28 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_getimage.c: Check for allocated buffers before clearing
(Dmitry V. Levin).
2004-09-26 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tif_dir.h, tif_dir.c, tif_dirread.c, tif_write.c}:
Optimize checking for the strip bounds.
* libtiff/{tif_dirread.c, tif_strip.c}: TIFFScanlineSize() and
TIFFRasterScanlineSize() functions report zero in the case of integer
overflow now. Properly handle this case in TIFFReadDirectory()
(patches from Dmitry V. Levin).
2004-09-25 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tif_dirinfo.c, tif_strip.c, tif_tile.c}: Use TIFFhowmany8()
macro where appropriate.
* tools/tiff2bw.c: Write ImageWidth/Height tags to output file, as
noted by Gennady Khokhorin.
* libtiff/tif_dirread.c: Always check the return values, returned
by the _TIFFmalloc() (Dmitry V. Levin).
* libtiff/tif_dir.c: Fixed possible integer overflow _TIFFset*Array()
functions (Dmitry V. Levin).
* libtiff/{tif_dirread.c, tif_dir.c, tif_write.c}:
Potential memory leak fixed in TIFFReadDirectory(), _TIFFVSetField(),
TIFFGrowStrips() (found by Dmitry V. Levin).
2004-09-24 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tiffio.h, tif_compress.c}: Added TIFFGetConfiguredCODECs()
to get the list of configured codecs.
* libtiff/{tiffiop.h, tif_dirread.c}: More overflow fixes from
Dmitry V. Levin.
2004-09-23 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_dirread.c: Applied patch from Dmitry V. Levin to fix
possible integer overflow in CheckMalloc() function.
2004-09-22 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tiffiop.h, tif_strip.c}: Use TIFFhowmany8() macro instead
of plain TIFFhowmany() where appropriate.
2004-09-21 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_getimage.c: Initialize arrays after space allocation.
2004-09-19 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff 3.7.0beta released.
* libtiff/{tif_luv.c, tif_next.c, tif_thunder.c}: Several buffer
overruns fixed, as noted by Chris Evans.
2004-09-14 Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
* commit: Added a script to make it more convenient to commit
updates. The CVS commit message is extracted from this ChangeLog
file.
2004-09-14 Andrey Kiselev <dron@ak4719.spb.edu>
* configure.ac, configure, aclocal.m4, libtiff/{mkspans.c, tif_fax3.c,
tif_getimage.c, tif_luv.c, tif_lzw.c, tif_ojpeg.c, tif_packbits.c,
tif_predict.c, tif_read.c, tif_swab.c, tif_thunder.c, tif_write.c,
tif_dir.c, tif_dirread.c, tif_dirwrite.c, tif_jpeg.c, tif_dirinfo.c,
tif_vms.c, tif_print.c, tif_strip.c, tif_tile.c, tif_dir.h,
tif_config.h.in, tiffiop.h}:
Get rid of BSD data types (u_char, u_short, u_int, u_long).
2004-09-13 Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
* libtiff/tiff.h: Fix column tagging. Reference current Adobe XMP
specification. Reference libtiff bug tracking system to submit
private tag additions.
2004-09-12 Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
* tools/tiffgt.c: Include "tif_config.h".
* configure.ac: Use AM_PROG_CC_C_O since it is now needed to build
tiffgt. This results in the 'compile' script being added to the
project.
* tools/Makefile.am (tiffgt_CFLAGS): Add extra build options
required to find OpenGL headers necessary to build tiffgt. Also
ensure that the libtiff that we built is used rather than some other
libtiff installed on the system.
2004-09-12 Andrey Kiselev <dron@ak4719.spb.edu>
* configure.ac, acinclude.m4, aclocal.m4: New macros to detect GLUT
libraries.
2004-09-11 Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
* configure.ac: Pass library configuration defines via
tif_config.h rather than extending CPPFLAGS. Configure a
libtiff/tiffconf.h in order to satisfy application requirements
(not used by library build). Do not define _POSIX_C_SOURCE=2 since
this causes failure to build on systems which properly respect
this request.
* libtiff/tiffconf.h.in: New file to act as the template for the
configured tiffconf.h
* libtiff/files.lst (HDRS): Install the configured tiffconf.h.
2004-09-10 Frank Warmerdam <warmerdam@pobox.com>
* html/internals.html: Split off a discussion of adding new tags
into addingtags.html.
2004-09-10 Andrey Kiselev <dron@ak4719.spb.edu>
* test/{ascii_tag.c, long_tag.c}: Preliminary test suite added.
* tools/tiff2pdf.c: Fixed reading TransferFunction tag as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=590
* libtiff/tif_print.c: Fixes in InkNames and NumberOfInks reporting.
* libtiff/tif_dirread.c: Don't reject to read tags of the
SamplesPerPixel size when the tag count is greater than number of
samples as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=576
* libtiff/tiff.h: Use _TIFF_DATA_TYPEDEFS_ guardian to switch off
defining int8/uint8/... etc. types. As per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=607
2004-09-09 Frank Warmerdam <warmerdam@pobox.com>
* tools/tiff2ps.c, tools/tiffmedian.c: fiddle with include files
to avoid compile warnings about getopt() and a few other things.
2004-09-02 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_dirread.c: Use memcpy() function instead of pointer
assigning magic in TIFFFetchFloat().
2004-09-01 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tiffio.h, tif_open.c}: Applied patches from Joris Van Damme
to avoid requirement for tiffiop.h inclusion in some applications. See
here
http://www.asmail.be/msg0054799560.html
for details.
* tools/fax2tiff.c: Use the new functions in the code.
2004-08-25 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/tiff2pdf.c: Initialize arrays properly.
* tools/tiff2ps.c: Avoid zero division in setupPageState() function;
properly initialize array in PSDataBW().
2004-08-24 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/tiff2pdf.c: More fixes for bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=590
from Ross Finlayson.
2004-08-23 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/tiff2ps.c: Fixed problem with uninitialized values.
* libtiff/tif_dir.c: Initialize tif_foundfield data member in the
TIFFDefaultDirectory() (in addition to 2004-08-19 fix).
* tools/tiff2pdf.c: Fixed a bunch of problems as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=590
2004-08-20 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/tiff2pdf.c: Applied patch from Ross Finlayson that checks
that the input file has compression, photometric interpretation,
etcetra, tags or if not than a more descriptive error is returned.
* libtiff/tif_dirread.c: Fixed problem in TIFFReadDirectory() in the
code, responsible for tag data type checking.
2004-08-19 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tiffiop.h, tif_dirinfo.c}: Fixed problem with the static
variable as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=593
2004-08-16 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/ras2tiff.c: Fixed issue with missed big-endian checks as per
bug http://bugzilla.remotesensing.org/show_bug.cgi?id=586
2004-08-01 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tif_config.h.in, tif_config.h.vc}: config.h.in and
config.h.vc files renamed in the tif_config.h.in and tif_config.h.vc.
2004-07-24 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_lzw.c: LZW compression code is merged back from the
separate package. All libtiff tools are updated to not advertise an
abcence of LZW support.
2004-07-12 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tiffio.h: Revert thandle_t back to void* type.
2004-07-11 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tif_read.c, tif_tile.c, tif_strip.c}: Fixes in error
messages, as suggested by Bernd Herd.
2004-07-03 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_dir.c: Call TIFFError() instead of producing warnings
when setting custom tags by value. Reported by Eric Fieleke.
2004-06-14 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/bmp2tiff.c: Add missed RawsPerStrip setting.
2004-06-08 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/bmp2tiff.c: Added new utility to convert Windows BMP files
into TIFFs.
2004-06-07 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff 3.7.0alpha released.
2004-06-06 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tiff.h, tif_dirwrite.c, tif_fax3.c, tif_packbits.c,}: Get rid
of ugly 64-bit hacks, replace them with the clever (autoconf based )
ones :-).
* libtiff/tiffio.h: Define thandle_t as int, not void* (may cause
problems in 64-bit environment).
2004-06-05 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/tiffset.c: tiffset now can set any libtiff supported tags.
Tags can be supplied by the mnemonic name or number.
* libtiff/{tiffio.h, tif_dir.h, tif_dirinfo.c,}: Added two new
functions TIFFFindFieldInfoByName() and TIFFFieldWithName().
2004-05-27 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_ojpeg.c: Fixed problem with duplicated SOI and SOF
markers as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=581
2004-05-24 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/tiffsplit.c: Don't forget to copy Photometric
Interpretation tag.
2004-05-20 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tif_open.c, tiffio.h}: New function added:
TIFFIsBigEndian(). Function returns nonzero if given was file written
in big-endian order.
* tools/tiffsplit.c: Fixed problem with unproperly written multibyte
files. Now output files will be written using the same byte order
flag as in the input image. See
http://bugzilla.remotesensing.org/show_bug.cgi?id=574
for details.
2004-05-19 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_print.c: added (untested) support for printing
SSHORT, SLONG and SRATIONAL fields.
* tools/tiffcp.c: close output file on normal exit.
2004-05-17 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_fax3.c: Avoid reading CCITT compression options
if compression type mismatches. See
http://bugzilla.remotesensing.org/show_bug.cgi?id=565
2004-04-30 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_strip.c: Never return 0 from the
TIFFNumberOfStrips().
2004-04-29 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_dirread.c: Workaround for broken TIFF writers which
store single SampleFormat value for multisampled images. See
http://bugzilla.remotesensing.org/show_bug.cgi?id=562
2004-04-25 Andrey Kiselev <dron@ak4719.spb.edu>
* configure.ac, libtiff/{tiff.h, config.h.in}: Added tests for int8,
int16 and int32 types to avoid complains on some compilers. Details at
http://bugzilla.remotesensing.org/show_bug.cgi?id=39
2004-04-20 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/tiff2pdf.c: Fixed problem with unaligned access as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=555
2004-04-14 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_write.c: Allow in-place updating of the compressed
images (don't work properly with all codecs). For details see GDAL bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=534
2004-04-06 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_jpeg.c: Workaround for wrong sampling factors used
in the Intergarph JPEG compressed TIFF images as per bug:
http://bugzilla.remotesensing.org/show_bug.cgi?id=532
2004-04-04 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_open.c: close clientdata if TIFFClientOpen() fails
via bad2.
2004-03-26 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/tiffcp.c: Properly set Photometric Interpretation in case of
JPEG compression of grayscale images.
* tools/tiffcp.c: Don't emit warnings when Orientation tag does not
present in the input image.
2004-03-19 Andrey Kiselev <dron@ak4719.spb.edu>
* {many}: The first attempt to switch to autotools.
2004-03-03 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_open.c: Use dummy mmap/munmap functions in
TIFFClientOpen() when the appropriate client functions was not
supplied by user.
2004-03-02 Frank Warmerdam <warmerdam@pobox.com>
* tools/ycbcr.c: fixed main() declaration as per:
http://bugzilla.remotesensing.org/show_bug.cgi?id=513
2004-02-26 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/tiffsplit.c: Copy JPEGTables tag contents for JPEG compressed
images. Reported by Artem Mirolubov.
* libtiff/tif_dirread.c: Fixed problem with handling TIFF_UNDEFINED
tag type in TIFFFetchNormalTag() as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=508
2004-02-17 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_codec.c: Fixed typo in TIFFInitPackBits name as per:
http://bugzilla.remotesensing.org/show_bug.cgi?id=494
2004-02-05 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_fax3.c: Fixed problem with CCITT encoding modes as per
bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=483
But we need more work on fax codec to support update mode.
2004-01-30 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/libtiff.def: Added TIFFCurrentDirOffset, TIFFWriteCheck,
TIFFRGBAImageOK, and TIFFNumberOfDirectories as suggested by
Scott Reynolds.
2004-01-29 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tiff.h: Fixed tag definitions for TIFFTAG_YCLIPPATHUNITS
and TIFFTAG_INDEXED as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=475
* libtiff/{tif_win32.c, tif_unix.c}: Check whether the pointer is
NULL before proceeding further as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=474
Check results, returned by the TIFFFdOpen() before returning and close
file if TIFFFdOpen() failed as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=468
* libtiff/tif_open.c: More fixes for
http://bugzilla.remotesensing.org/show_bug.cgi?id=468
2004-01-28 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{libtiff.def, tif_close.c, tiffio.h, tif_open.c}: Separate
TIFFCleanup() from the TIFFClose() in order to fix the bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=468
* tools/tiffcp.c: Fixed problem with wrong interpretation of the
InkNames tag as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=466
Memory leak fixed.
2004-01-21 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_dirwrite.c: Fixed handling of writable ASCII tags that
are field_passcount=TRUE properly. Arguably anonymous custom tags
should be declared as passcount=FALSE, but I don't want to change
that without a careful review.
2004-01-20 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_write.c: Fixed reporting size of the buffer in case of
stripped image in TIFFWriteBufferSetup(). As per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=460
2004-01-11 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_dir.c: Incomplete cleanup in TIFFFreeDirectory(),
patch from Gerben Koopmans.
* libtiff/tif_dirread.c: Check field_passcount value before setting
the value of undefined type, patch from Gerben Koopmans.
2004-01-02 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/tiffcp.c: Fixed problem with wrong Photometric setting for
non-RGB images.
2003-12-31 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_win32.c: Fixed problem with _TIFFrealloc() when the NULL
pointer passed. Patch supplied by Larry Grill.
* libtiff/{tiff.h, tif_fax3.c}:Fixes for AMD 64 platform as
suggested by Jeremy C. Reed.
2003-12-26 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff 3.6.1 released.
2003-12-24 Andrey Kiselev <dron@ak4719.spb.edu>
* config.guess, config.sub: Updated from the recent upstream.
2003-12-22 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tif_color, tif_getimage.c, tiffio.h}, man/TIFFcolor.3t:
More cleanups in color conversion interface, added appropriate manual
page.
2003-12-19 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tif_extension.c, tif_dirinfo.c, tiff.h}: Warnings fixed as
per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=357
* tools/tiff2ps.c: Added support for alpha channel. Fixes
http://bugzilla.remotesensing.org/show_bug.cgi?id=428
* libtiff/{libtiff.def, tif_color.c, tif_getimage.c, tiffio.h}:
Interface for Lab->RGB color conversion is finally cleaned up.
Added support for ReferenceBlackWhite tag handling when converted from
YCbCr color space. The latter closes
http://bugzilla.remotesensing.org/show_bug.cgi?id=120
2003-12-07 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tif_getimage.c, tiffio.h}: Avoid warnings.
* libtiff/makefile.vc, tools/makefile.vc: Support for IJG JPEG
library.
2003-12-06 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tif_getimage.c, tif_aux.c}: Read WhitePoint tag from the
file and properly use it for CIE Lab->RGB transform.
2003-12-04 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tif_getimage.c, tif_color.c, tiffio.h}: YCbCr->RGB
conversion routines now in the tif_color.c module. New function
TIFFYCbCrtoRGB() available in TIFF API.
* libtiff/tif_dirwrite.c: Handle TIFF_IFD tag type correctly.
2003-12-03 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tif_getimage.c, tif_color.c, tiffio.h}: Improvements in
CIE Lab conversion code. Start moving YCbCr stuff to the tif_color.c
module.
* libtiff/{tif_getimage.c, tiffio.h}, man{TIFFReadRGBAImage.3t,
TIFFReadRGBAStrip.3t, TIFFReadRGBATile.3t, TIFFRGBAImage.3t}:
Finally resolved problems with orientation handling. TIFFRGBAImage
interface now properly supports all possible orientations, i.e. images
will be flipped both in horizontal and vertical directions if
required. 'Known bugs' section now removed from the appropriate manual
pages. Closed bug entry:
http://bugzilla.remotesensing.org/show_bug.cgi?id=322
2003-12-02 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_dir.c: Fixed order of the parameters in TIFFError()
function calls as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=440
2003-11-28 Ross Finlayson <libtiff@apexinternetsoftware.com>
* tools/tiff2pdf.c: Some bugs fixed.
2003-11-27 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_luv.c: Fixed bug in 48-bit to 24-bit conversion routine,
reported by Antonio Scuri.
* man/tiff2pdf.1: Few improvements in page layout.
* Makefile.in, /man/Makefile.in, /html/man/tiff2pdf.1.html:
Added support fpr tiff2pdf manual page.
2003-11-26 Ross Finlayson <libtiff@apexinternetsoftware.com>
* /man/tiff2pdf.1: File added to repository.
2003-11-26 Andrey Kiselev <dron@ak4719.spb.edu>
* Makefile.in, /tools/{Makefile.in, makefile.vc}:
Added support fpr tiff2pdf utility.
2003-11-25 Ross Finlayson <libtiff@apexinternetsoftware.com>
* /tools/tiff2pdf.c: File added to repository.
2003-11-22 Andrey Kiselev <dron@ak4719.spb.edu>
* /tools/raw2tiff.c: sqrtf() replaced with sqrt().
2003-11-21 Andrey Kiselev <dron@ak4719.spb.edu>
* /tools/raw2tiff.c: #include <getopt.h> removed.
* tools/{Makefile.in, tiffgt.c}: Unmaintained and platform dependent
sgigt utility removed and replaced with the completely rewritten
portable tiffgt tool (depend on OpenGL and GLUT). Initial revision,
there is a lot of things to improve.
* libtiff/tif_ojpeg.c: TIFFVGetField() function now can properly
extract the fields from the OJPEG files. Patch supplied by Ross
Finlayson.
* libtiff/{tiffio.h, tif_codec.c}, man/{libtiff.3t, TIFFcodec.3t}:
Added new function TIFFIsCODECConfigured(), suggested by Ross
Finlayson.
2003-11-18 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_dirinfo.c: Implemented binary search in
_TIFFMergeFieldInfo(). Patch supplied by Ross Finlayson.
* libtiff/tif_dir.h: _TIFFFindOrRegisterdInfo declaration replaced
with _TIFFFindOrRegisterFieldInfo as reported by Ross Finlayson.
2003-11-17 Frank Warmerdam <warmerdam@pobox.com>
* tif_dirread.c: do not mark all anonymously defined tags to be
IGNOREd.
2003-11-17 Andrey Kiselev <dron@ak4719.spb.edu>
* contrib/pds/{tif_pdsdirread.c, tif_pdsdirwrite.c}: Use
TIFFDataWidth() function insted of tiffDataWidth array.
2003-11-16 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tiff.h, tif_dirinfo.c}: Added support for IFD (13)
datatype, intruduced in "Adobe PageMaker TIFF Tech. Notes".
2003-11-15 Frank Warmerdam <warmerdam@pobox.com>
* Makefile.in: fixed missing backslash for tif_color.c in list.
2003-11-13 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tif_color.c, tif_getimage.c, tiffio.h, Makefile.in}:
New color space conversion code: CIE L*a*b* 1976 images now supported
by the TIFFRGBAImage interface. All introduced routines go to new
module tif_color.c. Eventually all color conversion functions should
be moved there.
2003-11-12 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/{ras2tiff.c, rasterfile.h}: Properly determine SUN Rasterfiles
with the reverse byte order (it is reported by the magic header
field). Problem reported by Andreas Wiesmann.
* tools/raw2tiff.c, man/raw2tiff.1: Few improvements in correlation
calculation function. Guessing mechanics now documented in manual page.
2003-11-11 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/raw2tiff.c: Implemented image size guessing using
correlation coefficient calculation between two neighbour lines.
2003-11-09 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_tile.c: remove spurious use of "s" (sample) in the
planarconfig_contig case in TIFFComputeTile().
http://bugzilla.remotesensing.org/show_bug.cgi?id=387
2003-11-09 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tiffiop.h: New macros: TIFFmax, TIFFmin and TIFFrint.
2003-11-07 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tiffio.h, tif_strip.c}, man/{TIFFstrip.3t, libtiff.3t}:
Added TIFFRawStripSize() function as suggested by Chris Hanson.
2003-11-03 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tif_lzw.c, tif_fax3.c}: Proper support for update mode as
per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=424
2003-10-29 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/libtiff.def: Added TIFFReadRGBAImageOriented.
* html/build.html: Added note about GNU make requirement.
2003-10-25 Andrey Kiselev <dron@ak4719.spb.edu>
* Makefile.in: Fixes in using MAKEFLAGS as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=418
* port/install.sh.in: Option -p added to the mkdir command to create
all directory tree structure before installing.
2003-10-18 Andrey Kiselev <dron@ak4719.spb.edu>
* /tools/tiff2ps.c: #include <strings.h> replaced with the
#include <string.h>.
2003-10-16 Andrey Kiselev <dron@ak4719.spb.edu>
* Makefile.in: Add an absolute path to the test_pics.sh call.
2003-10-12 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tiffcomp.h: #define _BSDTYPES_DEFINED when defining BSD
typedefs.
2003-10-09 Andrey Kiselev <dron@ak4719.spb.edu>
* configure, libtiff/{Makefile.in, mkversion.c}:
Relative buildings fixed.
* tools/Makefile.in: Added "-I../libtiff" to the tiffset building
rule.
2003-10-07 Andrey Kiselev <dron@ak4719.spb.edu>
* Makefile.in: Added missed v3.6.0.html.
* libtiff/tiffio.h: Typo fixed: ORIENTATION_BOTTOMLEFT replaced with
ORIENTATION_BOTLEFT.
2003-10-04 Andrey Kiselev <dron@ak4719.spb.edu>
* 3.6.0 final release.
2003-10-03 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tif_getimage.c, tiffio.h}, man/TIFFReadRGBAImage.3t: New
function TIFFReadRGBAImageOriented() implemented to retrieve raster
array with user-specified origin position as suggested by Jason Frank.
See
http://bugzilla.remotesensing.org/show_bug.cgi?id=322
for details.
* tools/tiff2rgba.c: Switched to use TIFFReadRGBAImageOriented()
instead of TIFFReadRGBAImage().
* tools/tiff2ps.c: Fixed possible endless loop as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=404
2003-09-30 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_dirread.c: Check field counter against number of fields
in order to fix
http://bugzilla.remotesensing.org/show_bug.cgi?id=366
* libtiff/tif_fax3.c: Fix wrong line numbering as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=342
2003-09-25 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/{tiffiop.h, tif_dirread.c, tif_dir.c, tif_open.c,
tif_close.c}: Store a list of opened IFD to prevent looping as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=383
2003-09-23 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_dirread.c: More fixes for EstimateStripByteCounts(). See
http://bugzilla.remotesensing.org/show_bug.cgi?id=358
2003-08-21 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/tiffmedian.c: int declaration replaced with the uint32 to
support large images as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=382
2003-08-12 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/Makefile.in: Fixed problem with building in different
directory.
* tools/tiff2ps.c: Added missing #include <strings.h>.
* libtiff/tif_dirwrite.c: More fixes for custom tags code
from Ashley Dreier.
2003-08-07 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/tiff2ps.c: Added page size setting when creating PS Level 2.
Patch submitted by Balatoni Denes (with corrections from Tom
Kacvinsky).
* tools/tiff2ps.c: Fixed PS comment emitted when FlateDecode is
being used. Reported by Tom Kacvinsky.
* libtiff/tif_dirwrite.c: Fixed problem with custom tags writing,
reported by Ashley Dreier.
* libtiff/tif_print.c: Fixed problem with float tags reading, support
for printing RATIONAL and BYTE tags added.
2003-08-05 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_lzw.c: Move LZW codec state block allocation back to
TIFFInitLZW(), because its initialization in LZWSetupDecode() cause
problems with predictor initialization. Remove O_RDONLY check during
state block allocation to be able open LZW compressed files in update
mode.
Problem exist for libtiff version of the tif_lzw.c module. One from
lzw-compression-kit hasn't such troubles.
2003-08-04 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_write.c: modified tif_write.c so that the various
encoded write functions use tif_postdecode() to apply byte order
swapping (swab) to the application passed data buffer if the same
would be done when reading. This allows us to write pixel data with
more than 8 bits per sample to existing files of a non-native byte
order. One side effect of this change is the applications buffer
itself is altered in this case by the act of writing.
http://bugzilla.remotesensing.org/show_bug.cgi?id=171
2003-07-25 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_open.c: avoid signed/unsigned casting warning
initializing typemask as per patch from J.A. Strother.
* tools/tiffcp.c: fixed signed/unsigned casting warning.
* libtiff/tif_print.c: dos2unix conversion.
* tools/tiffsplit.c: increased the maximum number of pages that
can be split. Patch provided by Andrew J. Montalenti.
2003-07-11 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/raw2tiff.c: Added option `-p' to explicitly select color
space of input image data. Closes
http://bugzilla.remotesensing.org/show_bug.cgi?id=364
2003-07-08 Frank Warmerdam <warmerdam@pobox.com>
* tif_aux.c, tif_codec.c, tif_dir.c, tif_dirread.c, tif_extension.c,
tif_fax3.c, tif_getimage.c, tif_luv.c, tif_lzw.c, tif_next.c,
tif_packbits.c, tif_predict.c, tif_print.c, tif_swab.c, tif_thunder.c:
avoid casting warning at /W4.
2003-07-03 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/thumbnail.c: Memory leak fixed as reported by Robert S. Kissel.
2003-06-30 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_pixarlog.c: Unused variables removed.
* libtiff/{tif_dirread.c, tif_dir.c}: Fixed problem with
EstimateStripByteCounts() as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=358
* libtiff/{tif_dirwrite.c, tif_packbits.c}: Fixed compilation on
64-bit architectures as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=357
* libtiff/tif_dirinfo.c: TIFFDataWidth() returns 0 in case of
unknown data type.
2003-06-19 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_print.c: fixed some serious bugs when printing
custom tags ... almost certain to crash.
* libtiff/tif_dirread.c: Don't ignore custom fields that are
autodefined. Not sure how this got to be like this.
2003-06-18 Andrey Kiselev <dron@ak4719.spb.edu>
* 3.6.0 Beta2 released.
* tools/tiffcmp.c, man/tiffcmp.1: Fixed problem with unused data
comparing as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=349
`-z' option now can be used to set the number of reported different
bytes.
2003-06-09 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/tiffcp.c, man/tiffcp.1: Added possibility to specify value -1
to -r option to get the entire image as one strip. See
http://bugzilla.remotesensing.org/show_bug.cgi?id=343
for details.
2003-06-04 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/tiffcp.c: Set the correct RowsPerStrip and PageNumber
values as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=343
2003-05-27 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_jpeg.c: modified segment_height calculation to always
be a full height tile for tiled images. Also changed error to just
be a warning.
2003-05-25 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/fax2tiff.c: Page numbering fixed, as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=341
2003-05-20 Andrey Kiselev <dron@ak4719.spb.edu>
* contrib/ojpeg/{Makefile.in, jdhuff.h, jinclude.h, ojpeg.c, README},
configure, Makefile.in: Switched back to the old behaviour. Likely
better solution should be found for OJPEG support.
2003-05-11 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/mkversion.c: Fixed problem with wrong string size when
reading RELEASE-DATE file.
2003-05-07 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/tiff2ps.c: Fixed bug in Ascii85EncodeBlock() function: array
index was out of range.
2003-05-06 Andrey Kiselev <dron@ak4719.spb.edu>
* contrib/ojpeg/{Makefile.in, jdhuff.h, jinclude.h, ojpeg.c, README},
configure, Makefile.in: Improved libtiff compilation with OJPEG
support. Now no need for patching IJG JPEG library, hack requred by
libtiff will be compiled and used in-place. Implemented with
suggestion and help from Bill Allombert, Debian's libjpeg maintainer.
* libtiff/tif_aux.c: Properly handle TIFFTAG_PREDICTOR in
TIFFVGetFieldDefaulted() function.
2003-05-05 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/ppm2tiff.c: PPM header parser improved: now able to skip
comments.
* tools/tiffdither.c: Fixed problem with bit fill order tag setting:
was not copied from source image.
* libtiff/getimage.c: Workaround for some images without correct
info about alpha channel as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=331
2003-04-29 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/tiff2ps.c, man/tiff2ps.1: Add ability to generate PS Level 3.
It basically allows one to use the /flateDecode filter for ZIP
compressed TIFF images. Patch supplied by Tom Kacvinsky. Fixes
http://bugzilla.remotesensing.org/show_bug.cgi?id=328
* tools/tiff2ps.c: Force deadzone printing when EPS output specified
as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=325
2003-04-17 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_dirread.c: Removed additional check for StripByteCounts
due to problems with multidirectory images. Quality of error messages
improved.
2003-04-16 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/tiffcp.c: Fixed problem with colorspace conversion for JPEG
encoded images. See bug entries
http://bugzilla.remotesensing.org/show_bug.cgi?id=275
and
http://bugzilla.remotesensing.org/show_bug.cgi?id=23
* libtiff/tif_dirread.c: Additional check for StripByteCounts
correctness. Fixes
http://bugzilla.remotesensing.org/show_bug.cgi?id=320
2003-03-12 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/{fax2ps.c, fax2tiff.c, gif2tiff.c, pal2rgb.c, ppm2tiff.c,
ras2tiff.c, raw2tiff.c, rgb2ycbcr.c, thumbnail.c, tiff2bw.c,
tiff2ps.c, tiff2rgba.c, tiffcp.c, tiffdither.c, tiffinfo.c,
tiffmedian.c}: Added library version reporting facility to all tools.
2003-03-06 Frank Warmerdam <warmerdam@pobox.com>
* port/install.sh.in: Fixed problems with install producing paths
like ///usr/local/lib on cygwin.
2003-02-27 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/fax2tiff.c, man/fax2tiff.1: New switch (-X) to set width of
raw input page. Patch supplied by Julien Gaulmin. See
http://bugzilla.remotesensing.org/show_bug.cgi?id=293
for details.
2003-02-26 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_dir.c: fixed up the tif_postdecode settings
responsible for byte swapping complex image data.
* libtiff/tif_lzw.c: fixed so that decoder state isn't allocated till
LZWSetupDecode(). Needed to read LZW files in "r+" mode.
2003-02-07 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/ppm2tiff.c: Fixed problem with too many arguments.
2003-02-04 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/raw2tiff.c: Memory leak fixed.
2003-02-03 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/fax2tiff.c, man/fax2tiff.1: Applied patch from Julien Gaulmin
(thanks, Julien!). More switches for fax2tiff tool for better control
of input and output. Details at
http://bugzilla.remotesensing.org/show_bug.cgi?id=272
2003-02-03 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_jpeg.c: Modified to defer initialization of jpeg
library so that we can check if there is already any tile/strip data
before deciding between creating a compressor or a decompressor.
2003-01-31 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_write.c: TIFFWriteCheck() now fails if the image is
a pre-existing compressed image. That is, image writing to
pre-existing compressed images is not allowed.
* libtiff/tif_open.c: Removed error if opening a compressed file
in update mode.
http://bugzilla.remotesensing.org/show_bug.cgi?id=198
2003-01-31 Andrey Kiselev <dron@ak4719.spb.edu>
* config.guess, config.sub: Updated to recent upstream versions.
2003-01-15 Frank Warmerdam <warmerdam@pobox.com>
* cut 3.6.0 Beta release.
2002-12-20 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/fax2ps.c, man/fax2ps.1: Page size was determined
in wrong way as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=239
2002-12-17 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_dirread.c: Allow wrong sized arrays in
TIFFFetchStripThing().
http://bugzilla.remotesensing.org/show_bug.cgi?id=49
2002-12-02 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_dir.c: fix problem with test on td_customValueCount.
Was using realloc even first time. Fix by Igor Venevtsev.
2002-11-30 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_dir.c: fixed bug with resetting an existing custom
field value.
* libtiff/tif_dir.c: Fixed potential problem with ascii "custom"
tags in TIFFVGetField() ... added missing break.
2002-10-14 Frank Warmerdam <warmerdam@pobox.com>
* tools/tiff2ps.c: fixes a problem where "tiff2ps -1e" did not make
the scanline buffer long enough when writing rgb triplets.
The scanline needs to be 3 X the number of dots or else it will
contain an incomplete triplet and programs that try to separate
the eps by redefining the colorimage operator will get messed up.
Patch supplied by William Bader.
* Makefile.in: added tif_extension.c to file list as per
http://bugzilla.remotesensing.org/show_bug.cgi?id=218.
2002-10-11 Andrey Kiselev <dron@ak4719.spb.edu>
* configure, config.site, libtiff/{tif_unix.c, Makefile.in}: Fix for
large files (>2GiB) supporting. New option in the config.site:
LARGEFILE="yes". Should be enough for I/O of the large files.
2002-10-10 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/html/v3.6.0.html: new release notes.
* libtiff/index.html: removed faq, cvs snapshot cruft. Added email
link for Andrey. Pointer to v3.6.0.html.
* libtiff/Makefile.in: added direct rule for tiffvers.h for release.
2002-10-07 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/tiff2ps.c, man/tiff2ps.1: Applied patch form Sebastian Eken
(thanks, Sebastian!). New switches:
-b # for a bottom margin of # inches
-c center image
-l # for a left margin of # inches
-r rotate the image by 180 degrees
New features merged with code for shrinking/overlapping.
Previously added -c and -n switches (for overriding PS units) renamed
in -x and -y respectively.
http://bugzilla.remotesensing.org/show_bug.cgi?id=200
* html/man/*.html: Updated from actual manual pages.
2002-10-06 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_jpeg.c: fixed problem with boolean defined with wrong
size on windows. Use #define boolean hack.
http://bugzilla.remotesensing.org/show_bug.cgi?id=188
* libtiff/tiff.h: Don't do special type handling in tiff.h unless
USING_VISUALAGE is defined.
http://bugzilla.remotesensing.org/show_bug.cgi?id=39
2002-10-03 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tiff.h: added COMPRESSION_JP2000.
2002-10-02 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_dirread.c: Another fix for the fetching SBYTE arrays
by the TIFFFetchByteArray() function. Should finally resolve
http://bugzilla.remotesensing.org/show_bug.cgi?id=52
* configure: Set -DPIXARLOG_SUPPORT option along with -DZIP_SUPPORT
* html/Makefile.in: New targets added: html and groffhtml for
producing HTML representations of the manual pages automatically.
html target uses man2html tool, groffhtml uses groff tool.
2002-09-29 Frank Warmerdam <warmerdam@pobox.com>
* configure, libtiff/Makefile.in: Added SCO OpenServer 5.0.6 support
from John H. DuBois III.
2002-09-15 Andrey Kiselev <dron@ak4719.spb.edu>
* Makefile.in, /man/{raw2tiff.1, Makefile.in, libtiff.3}: Added
manual page for raw2tiff(1) tool.
2002-09-12 Andrey Kiselev <dron@ak4719.spb.edu>
* /libtiff/{tiffio.h, tif_dir.h}: TIFFDataWidth() declaration moved to
the tiffio.h header file.
* Makefile.in, /man/{TIFFDataWidth.3t, Makefile.in, libtiff.3}: Added
manual page for TIFFDataWidth() function
2002-09-08 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_dirread.c: Expand v[2] to v[4] in TIFFFetchShortPair()
as per http://bugzilla.remotesensing.org/show_bug.cgi?id=196.
* tools/tiff2ps.c: Don't emit BeginData/EndData DSC comments
since we are unable to properly include the amount to skip.
http://bugzilla.remotesensing.org/show_bug.cgi?id=80
2002-09-02 Andrey Kiselev <dron@ak4719.spb.edu>
* /libtiff/tif_dirread.c: Fixed problem with SBYTE type data fetching
in TIFFFetchByteArray(). Problem described at
http://bugzilla.remotesensing.org/show_bug.cgi?id=52
2002-08-22 Andrey Kiselev <dron@ak4719.spb.edu>
* /libtiff/tif_dirinfo.c: Further additions to free custom fields
in _TIFFSetupFieldInfo() function.
See http://bugzilla.remotesensing.org/show_bug.cgi?id=169 for details.
* /libtiff/tif_lzw.c: Additional consistency checking added in
LZWDecode() and LZWDecodeCompat().
Fixes http://bugzilla.remotesensing.org/show_bug.cgi?id=190
and http://bugzilla.remotesensing.org/show_bug.cgi?id=100
* /libtiff/tif_lzw.c:
Added check for valid code lengths in LZWDecode() and
LZWDecodeCompat(). Fixes
http://bugzilla.remotesensing.org/show_bug.cgi?id=115
2002-08-16 Andrey Kiselev <dron@ak4719.spb.edu>
* /libtiff/{Makefile.vc, libtiff.def}:
Missed declarations added.
2002-08-15 Frank Warmerdam <warmerdam@pobox.com>
* tif_getimage.c: Ensure that TIFFRGBAImageBegin() returns the
return code from the underlying pick function.
http://bugzilla.remotesensing.org/show_bug.cgi?id=177
* tif_dir.h: changed FIELD_CODEC to 66 from 64 to avoid overlap
with FIELD_CUSTOM as mentioned in bug 169.
* tif_close.c: added logic to free dynamically created anonymous
field definitions to correct a small memory leak.
http://bugzilla.remotesensing.org/show_bug.cgi?id=169
2002-08-10 Andrey Kiselev <dron@ak4719.spb.edu>
* /tools/{raw2tiff.c, Makefile.in, Makefile.lcc, Makefile.vc}:
New tool: raw2tiff --- raw images to TIFF converter. No manual page yet.
2002-07-31 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_jpeg.c: Fixed problem with setting of nrows in
JPEGDecode() as per bugzilla bug (issue 1):
http://bugzilla.remotesensing.org/show_bug.cgi?id=129
* libtiff/{tif_jpeg.c,tif_strip.c,tif_print.c}: Hacked tif_jpeg.c to
fetch TIFFTAG_YCBCRSUBSAMPLING from the jpeg data stream if it isn't
present in the tiff tags.
http://bugzilla.remotesensing.org/show_bug.cgi?id=168
* libtiff/tif_read.c, libtiff/tif_write.c: TIFFReadScanline() and
TIFFWriteScanline() now set tif_row explicitly in case the codec has
fooled with the value.
http://bugzilla.remotesensing.org/show_bug.cgi?id=129
2002-06-22 Andrey Kiselev <dron@ak4719.spb.edu>
* /tools/tiff2ps.c: Added workaround for some software that may crash
when last strip of image contains fewer number of scanlines than
specified by the `/Height' variable. See
http://bugzilla.remotesensing.org/show_bug.cgi?id=164
for explanation.
2002-06-21 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/tiff2ps, man/tiff2ps.1: New functionality for tiff2ps utility:
splitting long images in several pages. See
http://bugzilla.remotesensing.org/show_bug.cgi?id=142 for explanation.
Patch granted by John Williams <williams@morinda.com>.
2002-06-11 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/contrib/win95: renamed to contrib/win_dib. Added new
Tiffile.cpp example of converting TIFF files into a DIB on Win32.
This one is described in:
http://bugzilla.remotesensing.org/show_bug.cgi?id=143
* libtiff/tif_ojpeg.c: Major upgrade from Scott. See details at:
http://bugzilla.remotesensing.org/show_bug.cgi?id=156
2002-05-10 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/tiff2ps: New commandline switches to override resolution
units obtained from the input file. Closes
http://bugzilla.remotesensing.org/show_bug.cgi?id=131
2002-04-26 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/libtiff.def: Added missed declaration.
2002-04-22 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/fax2tiff.c: Updated to reflect latest changes in libtiff.
Closes http://bugzilla.remotesensing.org/show_bug.cgi?id=125
2002-04-20 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_open.c: Pointers to custom procedures
in TIFFClientOpen() are checked to be not NULL-pointers.
2002-04-18 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/libtiff.def: Added missed declarations.
* libtiff/tif_pixarlog.c: Updated for using tif_tagmethods structure.
2002-04-16 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_lzw.c: Additional checks for data integrity introduced.
Should finally close
http://bugzilla.remotesensing.org/show_bug.cgi?id=100
2002-04-10 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/tiff2ps: Division by zero fixed.
Closes http://bugzilla.remotesensing.org/show_bug.cgi?id=88
2002-04-09 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/: tif_dirwrite.c, tif_write.c, tiffio.h:
TIFFCheckpointDirectory() routine added.
Closes http://bugzilla.remotesensing.org/show_bug.cgi?id=124
* man/: TIFFWriteDirectory.3t, Makefile.in: Added description
for the new function.
2002-04-08 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/: tif_codec.c, tif_compress.c, tiffiop.h: Introduced
additional members tif->tif_decodestatus and tif->tif_encodestatus
for correct handling of unconfigured codecs (we should not try to read
data or to define data size without correct codecs).
* libtiff/tif_getimage.c: The way of codecs checking in TIFFRGBAImageOK
changed. Now it has used tif->tif_decodestatus and
tif->tif_encodestatus.
Should fix http://bugzilla.remotesensing.org/show_bug.cgi?id=119 (in
case of __cvs_8.tif test image).
* libtiff/: tif_dirinfo.c, tif_dirread.c: Somebody makes a bug in
tif_dirread.c when TIFFCreateAnonFieldInfo was introduced.
Closes http://bugzilla.remotesensing.org/show_bug.cgi?id=119 in case
of _cvs_00000-00.tif, _cvs_00000-01.tif and _cvs_00000-02.tif.
2002-04-04 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/: tif_lzw.c: Assertions in LZWDecode and LZWDecodeCompat
replaced by warnings. Now libtiff should read corrupted LZW-compressed
files by skipping bad strips.
Closes http://bugzilla.remotesensing.org/show_bug.cgi?id=100
2002-04-03 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_dirwrite.c: Removed some dead code.
* libtiff/*: Cleanup some warnings.
* libtiff/tif_dir.c: Fixed bug with count returned by TIFFGetField()
for variable length FIELD_CUSTOM values. Was int * but should be
u_short *.
2002-04-01 Andrey Kiselev <dron@ak4719.spb.edu>
* tools/: tifcp.c: Added support for 'Orientation' tag in tiffcp
utility (at cpStripToTile routine).
2002-03-27 Frank Warmerdam <warmerdam@pobox.com>
* tif_dirread.c: avoid div-by-zero if rowbytes is zero in chop func.
http://bugzilla.remotesensing.org/show_bug.cgi?id=111
* tif_print.c: Fixed so that ASCII FIELD_CUSTOM values with
passcount set FALSE can be printed (such as TIFFTAG_SOFTWARE).
* libtiff/tif_dir.c,tif_dirinfo.c,tif_dir.h,tif_ojpeg.c: modified so
that TIFFTAG_SOFTWARE uses FIELD_CUSTOM as an example.
2002-03-26 Dwight Kelly <dbmalloc@remotesensing.org>
* libtiff/: tiff.h, tif_dir.c, tif_dir.h, tif_dirinfo.c, tif_dirread.c,
tif_dirwrite.c: Added get/put code for new tag XMLPACKET as defined
in Adobe XMP Technote. Added missing INKSET tag value from TIFF 6.0 spec
INKSET_MULTIINK (=2). Added missing tags from Adobe TIFF technotes:
CLIPPATH, XCLIPPATHUNITS, YCLIPPATHUNITS, OPIIMAGEID, OPIPROXY and
INDEXED. Added PHOTOMETRIC tag value from TIFF technote 4 ICCLAB (=9).
2002-03-26 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/: tif_getimage.c: TIFFReadRGBAStrip and TIFFReadRGBATile
now also uses TIFFRGBAImageOK before reading. This is additional fix
for http://bugzilla.remotesensing.org/show_bug.cgi?id=110
2002-03-25 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/: tif_getimage.c: Additional check for supported
codecs added in TIFFRGBAImageOK and TIFFReadRGBAImage now uses
TIFFRGBAImageOK before reading.
Closes http://bugzilla.remotesensing.org/show_bug.cgi?id=110
2002-03-15 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/: tif_dir.c, tif_dir.h, tif_dirinfo.c, tif_dirread.c,
tif_dirwrite.c: Added routine TIFFDataWidth for detrmining
TIFFDataType sizes instead of working with tiffDataWidth array
directly. Should prevent out-of-borders bugs in case of unknown or
broken data types. EstimateStripByteCounts routine modified, so it
won't work when tags with uknown sizes founded.
Closes http://bugzilla.remotesensing.org/show_bug.cgi?id=109
2002-03-13 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/tif_getimage.c: Added support for correct handling
`Orientation' tag in gtTileContig. Should be added in other gt*
functions as well, but I have not images for testing yet. Partially
resolves http://bugzilla.remotesensing.org/show_bug.cgi?id=23
2002-03-10 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/: tif_dirinfo.c, tif_dirwrite.c: Added possibility to
read broken TIFFs with LONG type used for TIFFTAG_COMPRESSION,
TIFFTAG_BITSPERSAMPLE, TIFFTAG_PHOTOMETRIC. Closes
http://bugzilla.remotesensing.org/show_bug.cgi?id=99
2002-03-08 Andrey Kiselev <dron@ak4719.spb.edu>
* libtiff/Makefile.in, tools/Makefile.in: Shared library will not
be stripped when installing, utility binaries will do. Closes
http://bugzilla.remotesensing.org/show_bug.cgi?id=93
2002-02-28 Frank Warmerdam <warmerdam@pobox.com>
* man/TIFFGetField: fixed type of TIFFTAG_COPYRIGHT.
* man/libtiff.3t: added copyright tag info.
2002-02-11 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/{tiff.h,tif_fax3.c}: Add support for __arch64__.
http://bugzilla.remotesensing.org/show_bug.cgi?id=94
* man/Makefile.in: Patch DESTDIR handling
http://bugzilla.remotesensing.org/show_bug.cgi?id=95
* configure: OpenBSD changes for Sparc64 and DSO version.
http://bugzilla.remotesensing.org/show_bug.cgi?id=96
2002-02-05 Frank Warmerdam <warmerdam@pobox.com>
* config.site/configure: added support for OJPEG=yes option to enable
OJPEG support from config.site.
2002-01-27 Frank Warmerdam <warmerdam@pobox.com>
* html/document.html: fixed links for TIFf 6 docs.
2002-01-18 Frank Warmerdam <warmerdam@pobox.com>
* config.guess, config.sub: Updated from ftp.gnu.org/pub/config.
* libtiff/tif_read.c: Fixed TIFFReadEncodedStrip() to fail if the
decodestrip function returns anything not greater than zero as per
http://bugzilla.remotesensing.org/show_bug.cgi?id=97
* configure: Modify CheckForBigEndian so it can work in a cross
compiled situation.
2002-01-16 Frank Warmerdam <warmerdam@pobox.com>
* tools/tiffdump.c: include TIFFTAG_JPEGTABLES in tag list.
* tools/tiffset.c: fix bug in error reporting.
* tools/tiffcp.c: fix several warnings that show up with -Wall.
2002-01-04 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_jpeg.c: fixed computation of segment_width for
tiles files to avoid error about it not matching the
cinfo.d.image_width values ("JPEGPreDecode: Improper JPEG strip/tile
size.") for ITIFF files. Apparently the problem was incorporated since
3.5.5, presumably during the OJPEG/JPEG work recently.
2001-12-15 Frank Warmerdam <warmerdam@pobox.com>
* configure, libtiff/Makefile.in: Changes for building on MacOS 10.1.
http://bugzilla.remotesensing.org/show_bug.cgi?id=94
* libtiff/tif_getimage.c: If DEFAULT_EXTRASAMPLE_AS_ALPHA is 1
(defined in tiffconf.h - 1 by default) then the RGBA interface
will assume that a fourth extra sample is ASSOCALPHA if the
EXTRASAMPLE value isn't set for it. This changes the behaviour of
the library, but makes it work better with RGBA files produced by
lots of applications that don't mark the alpha values properly.
http://bugzilla.remotesensing.org/show_bug.cgi?id=93
http://bugzilla.remotesensing.org/show_bug.cgi?id=65
2001-12-12 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_jpeg.c: allow jpeg data stream sampling values to
override those from tiff directory. This makes this work with
ImageGear generated files.
2001-12-07 Frank Warmerdam <warmerdam@pobox.com>
* html/Makefile.in: added missing images per bug 92.
* port/Makefile.in: fixed clean target per bug 92.
2001-11-28 Frank Warmerdam <warmerdam@pobox.com>
* Reissue 3.5.7 release.
* libtiff/mkversion.c: Fix output of TIFF_VERSION to be
YYYYMMDD so that it is increasing over time.
* Makefile.in: Ensure that tiffvers.h is regenerated in the
make release target.
* Makefile.in: added libtiff/tiffvers.h to the release file list.
2001-11-23 Frank Warmerdam <warmerdam@pobox.com>
* added html/v3.5.7.html, updated html/index.html.
* Makefile.in: added contrib/addtiffo/tif_ovrcache.{c,h}.
2001-11-15 Frank Warmerdam <warmerdam@pobox.com>
* configure: fixed test for -lm.
2001-11-02 Frank Warmerdam <warmerdam@pobox.com>
* Added PHOTOMETRIC_ITULAB as per bug 90.
http://bugzilla.remotesensing.org/show_bug.cgi?id=90
2001-10-10 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tiff.h: I have created COMPRESSION_CCITT_T4,
COMPRESSION_CCITT_T6, TIFFTAG_T4OPTIONS and TIFFTAG_T6OPTIONS aliases
in keeping with TIFF 6.0 standard in tiff.h
http://bugzilla.remotesensing.org/show_bug.cgi?id=83
2001-09-26 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_dirwrite.c: added TIFFRewriteDirectory() function.
Updated TIFFWriteDirectory man page to include TIFFRewriteDirectory.
2001-09-24 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_lzw.c: Avoid MS VC++ 5.0 optimization bug.
http://bugzilla.remotesensing.org/show_bug.cgi?id=78
* libtiff/tif_lzw.c: added dummy LZWSetupEncode() to report an
error about LZW not being available.
* libtiff/tif_dir.c: propagate failure to initialize compression
back from TIFFSetField() as an error status, so applications can
detect failure.
* libtiff/tif_dir.c: removed the auto replacement of
COMPRESSION_LZW with COMPRESSION_NONE in _TIFFVSetField().
* Removed Makefile, tools/Makefile, port/install.sh, man/Makefile
from CVS as they are all supposed to be auto-generated by configure.
2001-09-22 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_ojpeg.c: new update from Scott.
2001-09-09 Frank Warmerdam <warmerdam@pobox.com>
* libtif/tif_fax3.c: Removed #ifdef PURIFY logic, and modified to
always use the "safe" version, even if there is a very slight
cost in performance.
http://bugzilla.remotesensing.org/show_bug.cgi?id=54
* libtiff/Makefile.in: Fixed @DSOSUB_VERSION to be @DSOSUF_VERSION@
in two places.
* libtiff/tif_getimage.c: Fixed problem with reading strips or
tiles that don't start on a tile boundary. Fix contributed by
Josep Vallverdu (from HP), and further described in bug 47.
http://bugzilla.remotesensing.org/show_bug.cgi?id=47
* tools/tiff2ps.c: added OJPEG YCbCr to RGB support.
* libtiff/tif_ojpeg.c: Applied substantial patch from Scott.
2001-09-06 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_packbits.c: fixed memory overrun error.
http://bugzilla.remotesensing.org/show_bug.cgi?id=77
2001-08-31 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_getimage.c: relax handling of contig case where
there are extra samples that are supposed to be ignored. This
should now work for 8bit greyscale or palletted images.
http://bugzilla.remotesensing.org/show_bug.cgi?id=75
2001-08-28 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_getimage.c: Don't complain for CMYK (separated)
images with more than four samples per pixel. See:
http://bugzilla.remotesensing.org/show_bug.cgi?id=73
2001-08-10 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_getimage.c: Use memmove() instead of TIFFmemcpy()
in TIFFReadRGBATile() to avoid issues in cases of overlapping
buffers. See Bug 69 in Bugzilla.
http://bugzilla.remotesensing.org/show_bug.cgi?id=69
* tools/tiff2rgba.c: fixed getopt() call so that -b works again.
2001-08-09 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tiff.h, libtiff/tif_fax3.c: added check for __LP64__
when checking for 64 bit architectures as per bugzilla bug 67.
2001-07-27 Frank Warmerdam <warmerdam@pobox.com>
* man/Makefile.in: add TIFFClientOpen link as per debian submitted
bug 66.
2001-07-20 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_jpeg.c: Define HAVE_BOOLEAN on windows if RPCNDR.H
has been included.
2001-07-19 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_open.c: Seek back to zero after failed read,
before writing header.
2001-07-18 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_ojpeg.c: updates from Scott. Handles colors
much better. Now depends on having patched libjpeg as per
patch in contrib/ojpeg/*.
2001-07-17 Frank Warmerdam <warmerdam@pobox.com>
* */Makefile.in: added DESTDIR support.
http://bugzilla.remotesensing.org/show_bug.cgi?id=60
2001-07-16 Frank Warmerdam <warmerdam@pobox.com>
* configure, libtiff/Makefile.in: applied OpenBSD patches
as per:
http://bugzilla.remotesensing.org/show_bug.cgi?id=61
2001-06-28 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_getimage.c: Fixed so that failure is properly
reported by gtTileContig, gtStripContig, gtTileSeparate and
gtStripSeparate.
See http://bugzilla.remotesensing.org/show_bug.cgi?id=51
* tiffcmp.c: Fixed multi samples per pixel support for ContigCompare.
Updated bug section of tiffcmp.1 to note tiled file issues.
See http://bugzilla.remotesensing.org/show_bug.cgi?id=53
2001-06-22 Frank Warmerdam <warmerdam@pobox.com>
* configure: Changes for DSO generation on AIX provided by
John Marquart <jomarqua@indiana.edu>.
* configure, libtiff/Makeifle.in: Modified to build DSOs properly
on Darwin thanks to Robert Krajewski (rpk@alum.mit.edu) and
Keisuke Fujii (fujiik@jlcuxf.kek.jp).
2001-06-13 Frank Warmerdam <warmerdam@pobox.com>
* tools/tiff2rgba.c: added -n flag to avoid emitting alpha component.
* man/tiff2rgba.1: new
2001-05-22 Frank Warmerdam <warmerdam@pobox.com>
* Added tiffset and tif_ojpeg to the dist lists in Makefile.in.
2001-05-13 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tools/thumbnail.c: changed default output compression
to packbits from LZW since LZW isn't generally available.
2001-05-12 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_ojpeg.c: New.
libtiff/tif_jpeg.c, tiffconf.h, tif_getimage.c: changes related
to OJPEG support.
Scott Marovich <marovich@hpl.hp.com> supplied OJPEG support.
2001-05-11 Frank Warmerdam <warmerdam@pobox.com>
* tiff.h: removed, it duplicates libtiff/tiff.h.
2001-05-08 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_dirinfo.c: moved pixar and copyright flags to
ensure everything is in order.
* libtiff/libtiff.def: added TIFFCreateDirectory and
TIFFDefaultStripSize as per:
http://bugzilla.remotesensing.org/show_bug.cgi?id=46
2001-05-02 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_dirinfo.c: Modified the TIFF_BYTE definition for
TIFFTAG_PHOTOSHOP to use a writecount of TIFF_VARIABLE2 (-3) to
force use of uint32 counts instead of short counts.
* libtiff/tif_dirwrite.c: Added support for TIFF_VARIABLE2 in the
case of writing TIFF_BYTE/TIFF_SBYTE fields.
http://bugzilla.remotesensing.org/show_bug.cgi?id=43
2001-05-01 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_dirinfo.c: removed duplicate TIFFTAG_PHOTOSHOP as per
bug report http://bugzilla.remotesensing.org/show_bug.cgi?id=44
2001-04-05 Frank Warmerdam <warmerdam@pobox.com>
* tiffio.h: removed C++ style comment.
* configure: fixed up SCRIPT_SH/SHELL handling.
* Makefile.in: Fixed SCRIPT_SH/SHELL handling.
* config.guess: documented more variables as per bug 40.
2001-04-03 Frank Warmerdam <warmerdam@pobox.com>
* configure, *Makefile.in: Various changes to improve configuration
for HP/UX specifically, and also in general. They include:
- Try to handle /usr/bin/sh instead of /bin/sh where necessary.
- Upgrade to HP/UX 10.x+ compiler, linker and dso options.
- Fixed mmap() test to avoid MMAP_FIXED ... it isn't available on HP
- Use -${MAKEFLAGS} in sub makes from makefiles.
http://bugzilla.remotesensing.org/show_bug.cgi?id=40
2001-04-02 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tiff.h: Applied hac to try and resolve the problem
with the inttypes.h include file on AIX.
See http://bugzilla.remotesensing.org/show_bug.cgi?id=39
* VERSION: update to 3.5.7 beta in preparation for release.
* configure/config.site: modified to check if -lm is needed for
MACHDEPLIBS if not supplied by config.site. Needed for Darwin.
* config.guess: updated wholesale to an FSF version apparently
from 1998 (as opposed to 1994). This is mainly inspired by
providing for MacOS X support.
2001-03-29 Frank Warmerdam <warmerdam@pobox.com>
* configure, Makefile.in, etc: added support for OPTIMIZER being
set from config.site.
2001-03-28 Frank Warmerdam <warmerdam@pobox.com>
* fax2ps.c: Helge (libtiff at oldach.net) submitted fix:
Here's a fix for fax2ps that corrects behaviour for non-Letter paper
sizes. It fixes two problems:
Without scaling (-S) the fax is now centered on the page size specified
with -H and/or -W. Before, fax2ps was using an obscure and practially
useless algorithm to allocate the image relative to Letter sized paper
which sometime sled to useless whitespace on the paper, while at the
same time cutting of the faxes printable area at the opposite border.
Second, scaling now preserves aspect ratio, which makes unusual faxes
(in particular short ones) print properly.
See http://bugzilla.remotesensing.org/show_bug.cgi?id=35
* tiff2ps.c/tiff2ps.1: Substantial changes to tiff2ps by
Bruce A. Mallett. See check message for detailed information
on all the changes, including a faster encoder, fixes for level
2 PostScript, and support for the imagemask operator.
2001-03-27 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tiffio.h: Changed "#if LOGLUV_PUBLIC" to
"#ifdef LOGLUV_PUBLIC" so it will work with VisualAge on AIX.
http://bugzilla.remotesensing.org/show_bug.cgi?id=39
2001-03-16 Frank Warmerdam <warmerdam@pobox.com>
* tif_dirinfo.c: moved definition of copyright tag in field list.
Apparently they have to be in sorted order by tag id.
2001-03-13 Frank Warmerdam <warmerdam@pobox.com>
* tif_getimage.c: Added support for 16bit minisblack/miniswhite
images in RGBA interface.
2001-03-02 Frank Warmerdam <warmerdam@pobox.com>
* Added TIFFTAG_COPYRIGHT support.
2001-02-19 Frank Warmerdam <warmerdam@pobox.com>
* Brent Roman contributed updated tiffcp utility (and tiffcp.1)
with support for extracting subimages with the ,n syntax, and also
adding the -b bias removal flag.
2001-02-16 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/libtiff.def: Brent Roman submitted new version adding
serveral missing entry points.
* libtiff/tif_dirinfo.c: don't declare tiffFieldInfo static on VMS.
Some sort of weird VMS thing.
http://bugzilla.remotesensing.org/show_bug.cgi?id=31
* tif_luv.c/tiff.h/tiffio.h:
New version of TIFF LogLuv (SGILOG) modules contributed by Greg Ward
(greg@shutterfly.com). He writes:
1) I improved the gamut-mapping function in tif_luv.c for imaginary
colors, because some images were being super-saturated on the input
side and this resulted in some strange color shifts in the output.
2) I added a psuedotag in tiff.h to control random dithering during
LogLuv encoding. This is turned off by default for 32-bit LogLuv and
on for 24-bit LogLuv output. Dithering improves the average color
accuracy over the image.
3) I added a #define for LOG_LUV_PUBLIC, which is enabled by default in
tiffio.h, to expose internal routines for converting between LogLuv and
XYZ coordinates. This is helpful for writing more efficient,
specialized conversion routines, especially for reading LogLuv files.
Changes applied with minor edits.
2001-01-23 Frank Warmerdam <warmerdam@pobox.com>
* tif_fax3.c: keep rw_mode flag internal to fax3 state to remember
whether we are encoding or decoding. This is to ensure graceful
recovery if TIFFClientOpen() discovers an attempt to open a compressed
file for "r+" access, and subsequently close it, as it resets the
tif_mode flag to O_RDONLY in this case to avoid writes, confusing the
compressor's concept of whether it is in encode or decode mode.
2001-01-08 Mike Welles <mike@bangstate.com>
* Makefile.in: Now cleaning up after itself after creating the .tar.gz and .zip
2001-01-07 Frank Warmerdam <warmerdam@pobox.com>
* html/libtiff.html: Fixed arguments in example for TIFFRGBAImageGet()
as per bug report by Patrick Connor.
2000-12-28 Frank Warmerdam <warmerdam@pobox.com>
* Added RELEASE-DATE file to release file list.
* Fixed libtiff/makefile.vc to make tiffvers.h not version.h.
2000-12-22 Mike Welles <mike@bangstate.com>
* added link to CVS mirror from index.html
* updated html/internals.html to note that LZW compression is
not supported by default.
2000-12-22 Frank Warmerdam <warmerdam@pobox.com>
* updated html/libtiff.html to not point at Niles' old JPL web site
for the man pages, point at www.libtiff.org.
2000-12-21 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/tif_apple.c: Applied "Carbon" support patches supplied by
Leonard Rosenthol <leonardr@lazerware.com>. May interfere
with correct building on older systems. If so, please let me know.
2000-12-19 Mike Welles <mike@bangsate.com>
* Took out LZW Encoding from tif_lzw.c
* Created HOWTO-RELEASE
* Created html/v3.5.6.html
* updated index.html
2000-12-01 Frank Warmerdam <warmerdam@pobox.com>
* Added patches for EOFB support in tif_fax3.c and tif_fax3.h.
Patches supplied by Frank Cringle <fdc@cliwe.ping.de>
Example file at: ftp://ftp.remotesensing.org/pub/libtiff/eofb_396.tif
2000-11-24 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/Makefile.in: Added an installPrivateHdrs and install-private
target so that the private headers required by libgeotiff can be
installed with the others. They are not installed by default.
* libtiff/Makefile.in: Added @MACHLIBDEPS@ to LINUXdso and GNULDdso
targets so libtiff.so will be built with an explicit dependency
on libm.so.
* libtiff/Makefile.in: Use softlinks to link libtiff.so.3 to
libtiff.so.3.5.5.
* libtiff/Makefile.in & configure: Remove all references to the ALPHA
file, or ALPHA version logic. Added stuff about DIST_POINT in
place of DIST_TYPE and the alpha release number stuff.
2000-11-22 Frank Warmerdam <warmerdam@pobox.com>
* I have applied a patch from Steffen Moeller <moeller@ebi.ac.uk> to
the configure script so that it now accepts the --prefix, and
--exec-prefix directives.
2000-11-13 Frank Warmerdam <warmerda@cs46980-c>
* I have made a variety of modifications in an effort to ensure the
TIFFLIB_VERSION macro is automatically generated from the RELEASE-DATE
file which seems to be updated regularly.
o mkversion.c now reads RELEASE-DATE and emits TIFFLIB_VERSION in
version include file.
o renamed version.h to tiffvers.h because we now have to install it
with the public libtiff include files.
o include tiffvers.h in tiffio.h.
o updated tif_version.c to use tiffvers.h.
o Updated Makefile.in accordingly.
* As per http://bugzilla.remotesensing.org/show_bug.cgi?id=25
I have updated the win32 detection rules in tiffcomp.h.
2000-10-20 Frank Warmerdam <warmerda@cs46980-c>
* tif_getimage.c: Fixed RGBA translation for YCbCr images for which
the strip/tile width and height aren't multiples of the sampling size.
See http://bugzilla.remotesensing.org/show_bug.cgi?id=20
Some patches from Rick LaMont of Dot C Software.
* Modified tif_packbits.c encoder to avoid compressing more
data than provided if rowsize doesn't factor into provided data
(such as occurs for YCbCr).
2000-10-19 Frank Warmerdam <warmerda@cs46980-c>
* tools/rgb2ycbcr.c: fixed output strip size to account for vertical
roundup if rows_per_strip not a multiple of vertical sample size.
2000-10-16 Frank Warmerdam <warmerda@cs46980-c>
* tif_dir.c: Clear TIFF_ISTILED flag in TIFFDefaultDirectory
as per http://bugzilla.remotesensing.org/show_bug.cgi?id=18
from vandrove@vc.cvut.cz.
* Modified tif_packbits.c decoding to avoid overrunning the
output buffer, and to issue a warning if data needs to be
discarded. See http://bugzilla.remotesensing.org/show_bug.cgi?id=18
2000-10-12 Frank Warmerdam <warmerda@cs46980-c>
* Modified tiff2bw to ensure portions add to 100%, and that
white is properly recovered.
See bug http://bugzilla.remotesensing.org/show_bug.cgi?id=15
Patch c/o Stanislav Brabec <utx@penguin.cz>
2000-09-30 Frank Warmerdam <warmerda@cs46980-c>
* Modified TIFFClientOpen() to emit an error on an attempt to
open a comperessed file for update (O_RDWR/r+) access. This is
because the compressor/decompressor code gets very confused when
the mode is O_RDWR, assuming this means writing only. See
bug http://bugzilla.remotesensing.org/show_bug.cgi?id=13
2000-09-27 Frank Warmerdam <warmerda@cs46980-c>
* Added GNULDdso target an`d switched linux and freebsd to use it.
2000-09-26 Frank Warmerdam <warmerda@cs46980-c>
* Applied patch for 0x0000 sequences in tif_fax3.h's definition
of EXPAND1D() as per bug 11 (from Roman).
2000-09-25 Frank Warmerdam <warmerda@cs46980-c>
* Fixed tiffcomp.h to avoid win32 stuff if unix #defined, to improve
cygwin compatibility.
* Applied patch from Roman Shpount to tif_fax3.c. This seems to
be a proper fix to the buffer sizing problem. See
http://bugzilla.remotesensing.org/show_bug.cgi?id=11
* Fixed tif_getimage.c to fix overrun bug with YCbCr images without
downsampling. http://bugzilla.remotesensing.org/show_bug.cgi?id=10
Thanks to Nick Lamb <njl98r@ecs.soton.ac.uk> for reporting the
bug and proving the patch.
2000-09-18 Frank Warmerdam <warmerda@cs46980-c>
* Fixed tif_jpeg.c so avoid destroying the decompressor before
we are done access data thanks to bug report from:
Michael Eckstein <eckstein@gepro.cz>.
* Reverted tif_flush change.
2000-09-14 Frank Warmerdam <warmerda@cs46980-c>
* tif_flush.c: Changed so that TIFFFlushData() doesn't return an
error when TIFF_BEENWRITING is not set. This ensures that the
directory contents can still be flushed by TIFFFlush().
2000-08-14 Frank Warmerdam <warmerda@rommel.atlsci.com>
* tif_open.c: Don't set MMAP for O_RDWR files.
* tif_open.c: Set STRIPCHOP_DEFAULT for O_RDWR as well as O_RDONLY
so that files opened for update can be strip chopped too.
* tif_read.c: fixed up bug with files missing rowsperstrip and
the strips per separation fix done a few weeks ago.
2000-07-17 Frank Warmerdam <warmerda@cs46980-c>
* Tentatively added support for SAMPLEFORMAT_COMPLEXIEEEFP, and
SAMPLEFORMAT_COMPLEXINT.
2000-07-13 Mike Welles <mike@onshore.com>
* index.html, bugs.html: added bugzilla info.
2000-07-12 Frank Warmerdam <warmerda@rommel.atlsci.com>
* tif_read.c: fix subtle bug with determining the number of
rows for strips that are the last strip in a separation but
not the last strip of all in TIFFReadEncodedStrip().
* Applied 16/32 bit fix to tif_fax3.c. Fix supplied by
Peter Skarpetis <peters@serendipity-software.com.au>
2000-06-15 Frank Warmerdam <warmerda@rommel.atlsci.com>
* Modified tiffio.h logic with regard to including windows.h. It
won't include it when building with __CYGWIN__.
2000-05-11 Frank Warmerdam <warmerda@cs46980-c>
* README: update to mention www.libtiff.org, don't list Sam's old
email address.
* configure: Fixed DSO test for Linux as per patch from
Jan Van Buggenhout <chipzz@Ace.ULYSSIS.Student.KULeuven.Ac.Be>.
2000-04-21 Frank Warmerdam <warmerda@rommel.atlsci.com>
* libtiff/tif_dirread.c: Don't use estimate strip byte count for
one tile/strip images with an offset, and byte count of zero. These
could be "unpopulated" images.
2000-04-18 Frank Warmerdam <warmerda@rommel.atlsci.com>
* contrib/addtiffo: Added "averaging" resampling option.
* tools/tiffsplit.c: Copy TIFFTAG_SAMPLEFORMAT.
Tue Apr 18 16:18:08 2000 Frank Warmerdam <warmerda@esabot.atlsci.com>
* tools/Makefile.in: Modified to install properly on SGI.
2000-04-12 Mike Welles <mike@onshore.com>
* configure: Fixed stupid mistake in libc6 test on Linux
2000-04-04 Mike Welles <mike@onshore.com>
* tif_win32.c: Applied patch to fix overreads and ovverwrites
caught by BoundsChecker. From Arvan Pritchard
<arvan.pritchard@infomatix.co.uk> (untested).
* tif_getimage.c: Applied patch to silence VC6 warnings. From
Arvan Pritchard <arvan.pritchard@informatix.co.uk>
* tif_lzw.c: Applied patch to silence VC6 warnings. From
Arvan Pritchard <arvan.pritchard@informatix.co.uk>
2000-03-28 Frank Warmerdam <warmerda@cs46980-c>
* Added contrib/stream (stream io) code submitted by Avi Bleiweiss.
2000-03-28 Frank Warmerdam <warmerda@cs46980-c> *** 3.5.5 release ***
* fax2ps: Fixed mixup of width and height in bounding box statement
as per submission by Nalin Dahyabhai <nalin@redhat.com>.
2000-03-27 Mike Welles <mike@onshore.com>
* fax2ps: Modified printruns to take uint32 instead of uint16.
Patch courtesy of Bernt Herd <herd@herdsoft.com>
2000-03-20 Mike Welles <mike@onshore.com>
* configure: added test for libc6 for linux targets. Bug reported by
Stanislav Brabec <utx@k332.feld.cvut.cz>
* Added 3.5 docs to html/Makefile.in.
Thanks to Stanislav Brabec <utx@k332.feld.cvut.cz>
* configure: fixed bugs in sed scripts
(applied sed script s:/@:s;@:;s:/s;;:;: to configure).
fix submitted to Stanislav Brabec <utx@k332.feld.cvut.cz>
* tools/iptcutil was not in files list, and wasn't being
added to tar archive. Updated Makefile.in.
2000-03-17 Frank Warmerdam <warmerda@cs46980-c>
* tif_fax3.c: Fixed serious bug introduced during the uint16->uint32
conversion for the run arrays.
2000-03-03 Frank Warmerdam <warmerda@cs46980-c.mtnk1.on.wave.home.com>
* Set td_sampleformat default to SAMPLEFORMAT_UINT instead of
SAMPLEFORMAT_VOID in TIFFDefaultDirectory() in tif_dir.c.
2000-03-02 Frank Warmerdam <warmerda@cs46980-c.mtnk1.on.wave.home.com>
* Added "GetDefaulted" support for TIFFTAG_SAMPLEFORMAT in tif_aux.c.
* Patched tif_fax3.c so that dsp->runs is allocated a bit bigger
to avoid overruns encountered with frle_bug.tif.
Tue Feb 15 22:01:05 2000 Frank Warmerdam <warmerda@gdal.velocet.ca>
* Fixed tools/tiffcmp so that stopondiff testing works.
Patch care of Joseph Orost <joe@sanskrit.lz.att.com>.
2000-01-28 <warmerda@CS46980-B>
* Modified tif_unix.c to support 2-4GB seeks if USE_64BIT_API is
set to 1, and added default (off) setting in tiffconf.h. This
should eventually be set by the configure script somehow.
The original work on all these 2-4GB changes was done by
Peter Smith (psmith@creo.com).
* Modified tif_win32.c to support 2-4GB seeks.
* tentatively changed toff_t to be unsigned instead of signed to
facilitate support for 2-4GB files.
* Updated a variety of files to use toff_t. Fixed some mixups
between toff_t and tsize_t.
Fri Jan 28 10:13:49 2000 Frank Warmerdam <warmerda@gdal.velocet.ca>
* Largely reimplemented contrib/addtiffo to avoid temp files,
updating the TIFF file in place. Fixed a few other bugs to.
* Set tif_rawdatasize to zero when freeing raw data buffer in
TIFFWriteDirectory().
* Enabled "REWRITE_HACK" in tif_write.c by default.
* Fix bug in tif_write.c when switching between reading one directory
and writing to another.
* Made TIFFWriteCheck() public, and added TIFFCreateDirectory()
Wed Jan 5 12:37:48 2000 Frank Warmerdam <warmerda@gdal.velocet.ca>
* Added TIFFmemory(3t) functions to libtiff.def.
Tue Jan 4 13:39:00 2000 Frank Warmerdam <warmerda@gdal.velocet.ca>
* Added libtiff/libtiff.def to TIFFILES distribution list.
Mon Dec 27 12:13:39 EST 1999 Mike Welles <mike@onshore.com>
* Created lzw compression kit, as a new module (libtiff-lzw-compression-kit).
* Altered descriptions in tools to reflect "by default" lzw not supported
* Updated index.html to note lzw compression kit.
Tue Dec 21 14:01:51 1999 Frank Warmerdam <warmerda@gdal.velocet.ca>
* Added fax3sm_winnt.c to distribution list in Makefile.in.
Tue Dec 21 11:04:45 EST 1999 Mike Welles <mike@onshore.com> *** 3.5.4 release ***
* Aadded Pixar tag support. Contributed by Phil Beffery <phil@pixar.com>
* Made one more change to tif_dir.c for removal of LZW compression. Also added notice
when LZW compression invoked.
* Changed default compression in tools to TIFF_PACKBITS, and changed usage descriptions
in tools to reflect removal of LZW compression
Mon Dec 20 18:39:02 EST 1999 Mike Welles <mike@onshore.com>
* Fixed bug that caused LZW (non) compression to segfault. Added
warning about LZW compression removed being removed, and why.
* Added nostrip to install in tools/Makefile.in so that debugging
symbols are kept.
Tue Dec 7 12:04:47 EST 1999 Mike Welles <mike@onshore.com>
* Added patch from Ivo Penzar <ivo.penzar@infolink-software.com>,
supporting Adobe ZIP deflate. Untested.
Sat Dec 4 15:47:11 1999 Frank Warmerdam <warmerda@gdal.velocet.ca>
* Made Packbits the default compression in tools/tiff2rgba.c instead
of LZW.
Tue Nov 30 14:41:43 1999 Frank Warmerdam <warmerda@gdal.velocet.ca> *** 3.5.3. release ***
* Added tif_luv to contrib/djgpp/Makefile.lib.
Tue Nov 30 14:15:32 EST 1999 Mike Welles <mike@onshore.com>
* Added zip creation to relase makefile target
* Added html for TIFFWriteTile.3t man page.
Tue Nov 30 09:20:16 1999 Frank Warmerdam <warmerda@gdal.velocet.ca>
* Added some changes to tif_write.c to support rewriting existing
fixed sized tiles and strips. Code mods disabled by default, only
enabled if REWRITE_HACK is defined for now.
Mon Nov 29 11:43:42 1999 Frank Warmerdam <warmerda@gdal.velocet.ca>
* Added TIFFWriteTile.3t man page.
Sun Nov 28 20:36:18 1999 Frank Warmerdam <warmerda@gdal.velocet.ca>
* Added notes on use of makefile.vc in build.html, and fixed
email subscription address.
199-11-28 Mike Welles <mike@onshore.com>
* Fixed apocalypse-inducing y2k bug in contrib/ras/ras2tiff.c
* Did some casts cleaning up to reduce compiler warnings in tif_fax3.c,
from Bruce Carmeron <cameron@petris.com> -- modifications of
changes made by Frank (sun cc still complained on cast).
* Added tiffconf.h to install target per request from Bill
Radcliffe <billr@corbis.com>: "We need a way for ImageMagick to
know features have been compiled into the TIFF library in order to
handle things properly".
Sat Nov 27 16:49:21 1999 Frank Warmerdam <warmerda@gdal.velocet.ca>
* fixed various VC++ warnings as suggested by Gilles Vollant
<info@winimage.com>.
Wed Nov 24 12:08:16 1999 Frank Warmerdam <warmerda@gdal.velocet.ca>
* Modified TIFFquery.3t man pages info on TIFFIsByteSwapped() to
not imply applications are responsible for image data swapping.
1999-11-22 Mike Welles <mike@onshore.com>
* HTML-ized the man pages, added to html/man
* Removed LZW Compression to comply with Unisys patent extortion.
1999-09-29 Mike Welles <mike@onshore.com>
* Corrected one remaining 16 -> 32 bit value in tif_fax3.c,
From Ivo Penzar <ivo.penzar@infolink-software.com.
* Added patch from Ivo Penzar to have TiffAdvanceDirectory handle
memory mapped files. <ivo.penzar@infolink-software.com>
1999-09-26 Mike Welles <mike@onshore.com> *** 3.5.2 release ***
* Corrected alpha versioning.
* Removed distinction between alpha and release targets in Makefile.in.
* added release.stamp target, which tags cvs tree, and updates
"RELEASE-DATE"
* added releasediff target, which diffs tree with source as of
date in "RELEASE-DATE"
* Ticked up version to 3.5.2 (alpha 01 -- but I think we'll moving
away from alpha/non-alpha distinctions).
* updated html to reflect release
1999-09-23 <warmerda@CS46980-B>
* Set O_BINARY for tif_unix.c open() ... used on cygwin for instance.
* Added CYGWIN case in configure.
Fri Sep 17 00:13:51 CEST 1999 Mike Welles <mike@onshore.com>
* Applied Francois Dagand's patch to handle fax decompression bug.
(sizes >= 65536 were failing)
Tue Sep 14 21:31:43 1999 Frank Warmerdam <warmerda@gdal.velocet.ca>
* Applied "a" mode fix to tif_win32.c/TIFFOpen() as suggested
by Christopher Lawton <clawton@mathworks.com>
Wed Sep 8 08:19:18 1999 Frank Warmerdam <warmerda@gdal.velocet.ca>
* Added IRIX/gcc, and OSF/1 4.x support on behalf of
Albert Chin-A-Young <china@thewrittenword.com>
* Added TIFFReassignTagToIgnore() API on behalf of
Bruce Cameron <cameron@petris.com>. Man page still pending.
Wed Aug 25 11:39:07 1999 Frank Warmerdam <warmerda@gdal.velocet.ca>
* Added test target in Makefile, test_pics.sh script and pics/*.rpt
files to provide for a rudimentary testsuite.
* Added contrib/tags back from old distribution ... fixed up a bit.
1999-08-16 <warmerda@CS46980-B>
* Added simple makefile.vc makefiles for building with MS VC++
on Windows NT/98/95 in console mode. Stuff in contrib/win* make give
better solutions for some users.
Mon Aug 16 21:52:11 1999 Frank Warmerdam <warmerda@gdal.velocet.ca>
* Added addtiffo (add overviews to a TIFF file) in contrib. Didn't
put it in tools since part of it is in C++.
1999-08-16 Michael L. Welles <mike@kurtz.fake>
* Updated html/index.html with anon CVS instructions.
Mon Aug 16 13:18:41 1999 Frank Warmerdam <warmerda@gdal.velocet.ca>
* pre-remove so link before softlink in LINUXdso action in
libtiff/Makefile.in to avoid failure on LINUXdso builds other than
the first.
* Fixed problem with cvtcmap() in tif_getimage.c modifying the
colormaps owned by the TIFF handle itself when trying to fixup wrong
(eight bit) colormaps. Corrected by maintaining a private copy of
the colormap.
* Added TIFFReadRGBATile()/TIFFReadRGBAStrip() support in
tif_getimage.c.
* CVS Repository placed at remotesensing.org. ChangeLog added.
|