1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337
|
{Portable Network Graphics Delphi 1.4361 (8 March 2003) }
{This is the latest implementation for TPngImage component }
{It's meant to be a full replacement for the previous one. }
{There are lots of new improvements, including cleaner code, }
{full partial transparency support, speed improvements, }
{saving using ADAM 7 interlacing, better error handling, also }
{the best compression for the final image ever. And now it's }
{truly able to read about any png image. }
{
Version 1.4361
2003-03-04 - Fixed important bug for simple transparency when using
RGB, Grayscale color modes
Version 1.436
2003-03-04 - * NEW * Property Pixels for direct access to pixels
* IMPROVED * Palette property (TPngObject) (read only)
Slovenian traslation for the component (Miha Petelin)
Help file update (scanline article/png->jpg example)
Version 1.435
2003-11-03 - * NEW * New chunk implementation zTXt (method AddzTXt)
* NEW * New compiler flags to store the extra 8 bits
from 16 bits samples (when saving it is ignored), the
extra data may be acessed using ExtraScanline property
* Fixed * a bug on tIMe chunk
French translation included (Thanks to IBE Software)
Bugs fixed
Version 1.432
2002-08-24 - * NEW * A new method, CreateAlpha will transform the
current image into partial transparency.
Help file updated with a new article on how to handle
partial transparency.
Version 1.431
2002-08-14 - Fixed and tested to work on:
C++ Builder 3
C++ Builder 5
Delphi 3
There was an error when setting TransparentColor, fixed
New method, RemoveTransparency to remove image
BIT TRANSPARENCY
Version 1.43
2002-08-01 - * NEW * Support for Delphi 3 and C++ Builder 3
Implements mostly some things that were missing,
a few tweaks and fixes.
Version 1.428
2002-07-24 - More minor fixes (thanks to Ian Boyd)
Bit transparency fixes
* NEW * Finally support to bit transparency
(palette / rgb / grayscale -> all)
Version 1.427
2002-07-19 - Lots of bugs and leaks fixed
* NEW * method to easy adding text comments, AddtEXt
* NEW * property for setting bit transparency,
TransparentColor
Version 1.426
2002-07-18 - Clipboard finally fixed (hope)
Changed UseDelphi trigger to UseDelphi
* NEW * Support for bit transparency bitmaps
when assigning from/to TBitmap objects
Altough it does not support drawing transparent
parts of bit transparency pngs (only partial)
it is closer than ever
Version 1.425
2002-07-01 - Clipboard methods implemented
Lots of bugs fixed
Version 1.424
2002-05-16 - Scanline and AlphaScanline are now working correctly.
New methods for handling the clipboard
Version 1.423
2002-05-16 - * NEW * Partial transparency for 1, 2, 4 and 8 bits is
also supported using the tRNS chunk (for palette and
grayscaling).
New bug fixes (Peter Haas).
Version 1.422
2002-05-14 - Fixed some critical leaks, thanks to Peter Haas tips.
New translation for German (Peter Haas).
Version 1.421
2002-05-06 - Now uses new ZLIB version, 1.1.4 with some security
fixes.
LoadFromResourceID and LoadFromResourceName added and
help file updated for that.
The resources strings are now located in pnglang.pas.
New translation for Brazilian Portuguese.
Bugs fixed.
IMPORTANT: I'm currently looking for bugs on the library. If
anyone has found one, please send me an email and
I will fix right away. Thanks for all the help and
ideias I'm receiving so far.}
{My new email is: gubadaud@terra.com.br}
{Website link : pngdelphi.sourceforge.net}
{Gustavo Huffenbacher Daud}
unit pngimage;
interface
{Triggers avaliable (edit the fields bellow)}
{$DEFINE UseDelphi} //Disable fat vcl units (perfect to small apps)
{$DEFINE ErrorOnUnknownCritical} //Error when finds an unknown critical chunk
{$DEFINE CheckCRC} //Enables CRC checking
{$DEFINE RegisterGraphic} //Registers TPNGObject to use with TPicture
{$DEFINE PartialTransparentDraw} //Draws partial transparent images
{.$DEFINE Store16bits} //Stores the extra 8 bits from 16bits/sample
{.$DEFINE Debug} //For programming purposes
{$RANGECHECKS OFF} {$J+}
uses
Windows {$IFDEF UseDelphi}, Classes, Graphics, SysUtils{$ENDIF} {$IFDEF Debug},
dialogs{$ENDIF}, pngzlib, pnglang, math;
{$IFNDEF UseDelphi}
const
soFromBeginning = 0;
soFromCurrent = 1;
soFromEnd = 2;
{$ENDIF}
const
{ZLIB constants}
ZLIBErrors: Array[-6..2] of string = ('incompatible version (-6)',
'buffer error (-5)', 'insufficient memory (-4)', 'data error (-3)',
'stream error (-2)', 'file error (-1)', '(0)', 'stream end (1)',
'need dictionary (2)');
Z_NO_FLUSH = 0;
Z_FINISH = 4;
Z_STREAM_END = 1;
{Avaliable PNG filters for mode 0}
FILTER_NONE = 0;
FILTER_SUB = 1;
FILTER_UP = 2;
FILTER_AVERAGE = 3;
FILTER_PAETH = 4;
{Avaliable color modes for PNG}
COLOR_GRAYSCALE = 0;
COLOR_RGB = 2;
COLOR_PALETTE = 3;
COLOR_GRAYSCALEALPHA = 4;
COLOR_RGBALPHA = 6;
type
{$IFNDEF UseDelphi}
{Custom exception handler}
Exception = class(TObject)
constructor Create(Msg: String);
end;
ExceptClass = class of Exception;
TColor = ColorRef;
{$ENDIF}
{Error types}
EPNGOutMemory = class(Exception);
EPngError = class(Exception);
EPngUnexpectedEnd = class(Exception);
EPngInvalidCRC = class(Exception);
EPngInvalidIHDR = class(Exception);
EPNGMissingMultipleIDAT = class(Exception);
EPNGZLIBError = class(Exception);
EPNGInvalidPalette = class(Exception);
EPNGInvalidFileHeader = class(Exception);
EPNGIHDRNotFirst = class(Exception);
EPNGNotExists = class(Exception);
EPNGSizeExceeds = class(Exception);
EPNGMissingPalette = class(Exception);
EPNGUnknownCriticalChunk = class(Exception);
EPNGUnknownCompression = class(Exception);
EPNGUnknownInterlace = class(Exception);
EPNGNoImageData = class(Exception);
EPNGCouldNotLoadResource = class(Exception);
EPNGCannotChangeTransparent = class(Exception);
EPNGHeaderNotPresent = class(Exception);
type
{Direct access to pixels using R,G,B}
TRGBLine = array[word] of TRGBTriple;
pRGBLine = ^TRGBLine;
{Same as TBitmapInfo but with allocated space for}
{palette entries}
TMAXBITMAPINFO = packed record
bmiHeader: TBitmapInfoHeader;
bmiColors: packed array[0..255] of TRGBQuad;
end;
{Transparency mode for pngs}
TPNGTransparencyMode = (ptmNone, ptmBit, ptmPartial);
{Pointer to a cardinal type}
pCardinal = ^Cardinal;
{Access to a rgb pixel}
pRGBPixel = ^TRGBPixel;
TRGBPixel = packed record
B, G, R: Byte;
end;
{Pointer to an array of bytes type}
TByteArray = Array[Word] of Byte;
pByteArray = ^TByteArray;
{Forward}
TPNGObject = class;
pPointerArray = ^TPointerArray;
TPointerArray = Array[Word] of Pointer;
{Contains a list of objects}
TPNGPointerList = class
private
fOwner: TPNGObject;
fCount : Cardinal;
fMemory: pPointerArray;
function GetItem(Index: Cardinal): Pointer;
procedure SetItem(Index: Cardinal; const Value: Pointer);
protected
{Removes an item}
function Remove(Value: Pointer): Pointer; virtual;
{Inserts an item}
procedure Insert(Value: Pointer; Position: Cardinal);
{Add a new item}
procedure Add(Value: Pointer);
{Returns an item}
property Item[Index: Cardinal]: Pointer read GetItem write SetItem;
{Set the size of the list}
procedure SetSize(const Size: Cardinal);
{Returns owner}
property Owner: TPNGObject read fOwner;
public
{Returns number of items}
property Count: Cardinal read fCount write SetSize;
{Object being either created or destroyed}
constructor Create(AOwner: TPNGObject);
destructor Destroy; override;
end;
{Forward declaration}
TChunk = class;
TChunkClass = class of TChunk;
{Same as TPNGPointerList but providing typecasted values}
TPNGList = class(TPNGPointerList)
private
{Used with property Item}
function GetItem(Index: Cardinal): TChunk;
public
{Removes an item}
procedure RemoveChunk(Chunk: TChunk); overload;
{Add a new chunk using the class from the parameter}
function Add(ChunkClass: TChunkClass): TChunk;
{Returns pointer to the first chunk of class}
function ItemFromClass(ChunkClass: TChunkClass): TChunk;
{Returns a chunk item from the list}
property Item[Index: Cardinal]: TChunk read GetItem;
end;
{$IFNDEF UseDelphi}
{The STREAMs bellow are only needed in case delphi provided ones is not}
{avaliable (UseDelphi trigger not set)}
{Object becomes handles}
TCanvas = THandle;
TBitmap = HBitmap;
{Trick to work}
TPersistent = TObject;
{Base class for all streams}
TStream = class
protected
{Returning/setting size}
function GetSize: Longint; virtual;
procedure SetSize(const Value: Longint); virtual; abstract;
{Returns/set position}
function GetPosition: Longint; virtual;
procedure SetPosition(const Value: Longint); virtual;
public
{Returns/sets current position}
property Position: Longint read GetPosition write SetPosition;
{Property returns/sets size}
property Size: Longint read GetSize write SetSize;
{Allows reading/writing data}
function Read(var Buffer; Count: Longint): Cardinal; virtual; abstract;
function Write(const Buffer; Count: Longint): Cardinal; virtual; abstract;
{Copies from another Stream}
function CopyFrom(Source: TStream;
Count: Cardinal): Cardinal; virtual;
{Seeks a stream position}
function Seek(Offset: Longint; Origin: Word): Longint; virtual; abstract;
end;
{File stream modes}
TFileStreamMode = (fsmRead, fsmWrite, fsmCreate);
TFileStreamModeSet = set of TFileStreamMode;
{File stream for reading from files}
TFileStream = class(TStream)
private
{Opened mode}
Filemode: TFileStreamModeSet;
{Handle}
fHandle: THandle;
protected
{Set the size of the file}
procedure SetSize(const Value: Longint); override;
public
{Seeks a file position}
function Seek(Offset: Longint; Origin: Word): Longint; override;
{Reads/writes data from/to the file}
function Read(var Buffer; Count: Longint): Cardinal; override;
function Write(const Buffer; Count: Longint): Cardinal; override;
{Stream being created and destroy}
constructor Create(Filename: String; Mode: TFileStreamModeSet);
destructor Destroy; override;
end;
{Stream for reading from resources}
TResourceStream = class(TStream)
constructor Create(Instance: HInst; const ResName: String; ResType:PChar);
private
{Variables for reading}
Size: Integer;
Memory: Pointer;
Position: Integer;
protected
{Set the size of the file}
procedure SetSize(const Value: Longint); override;
public
{Stream processing}
function Read(var Buffer; Count: Integer): Cardinal; override;
function Seek(Offset: Integer; Origin: Word): Longint; override;
function Write(const Buffer; Count: Longint): Cardinal; override;
end;
{$ENDIF}
{Forward}
TChunkIHDR = class;
{Interlace method}
TInterlaceMethod = (imNone, imAdam7);
{Compression level type}
TCompressionLevel = 0..9;
{Filters type}
TFilter = (pfNone, pfSub, pfUp, pfAverage, pfPaeth);
TFilters = set of TFilter;
{Png implementation object}
TPngObject = class{$IFDEF UseDelphi}(TGraphic){$ENDIF}
protected
{Gamma table values}
GammaTable, InverseGamma: Array[Byte] of Byte;
procedure InitializeGamma;
private
{Temporary palette}
TempPalette: HPalette;
{Filters to test to encode}
fFilters: TFilters;
{Compression level for ZLIB}
fCompressionLevel: TCompressionLevel;
{Maximum size for IDAT chunks}
fMaxIdatSize: Cardinal;
{Returns if image is interlaced}
fInterlaceMethod: TInterlaceMethod;
{Chunks object}
fChunkList: TPngList;
{Clear all chunks in the list}
procedure ClearChunks;
{Returns if header is present}
function HeaderPresent: Boolean;
{Returns linesize and byte offset for pixels}
procedure GetPixelInfo(var LineSize, Offset: Cardinal);
procedure SetMaxIdatSize(const Value: Cardinal);
function GetAlphaScanline(const LineIndex: Integer): pByteArray;
function GetScanline(const LineIndex: Integer): Pointer;
{$IFDEF Store16bits}
function GetExtraScanline(const LineIndex: Integer): Pointer;
{$ENDIF}
function GetTransparencyMode: TPNGTransparencyMode;
function GetTransparentColor: TColor;
procedure SetTransparentColor(const Value: TColor);
protected
{Returns the image palette}
function GetPalette: HPALETTE; {$IFDEF UseDelphi}override;{$ENDIF}
{Returns/sets image width and height}
function GetWidth: Integer; {$IFDEF UseDelphi}override;{$ENDIF}
function GetHeight: Integer; {$IFDEF UseDelphi}override; {$ENDIF}
procedure SetWidth(Value: Integer); {$IFDEF UseDelphi}override; {$ENDIF}
procedure SetHeight(Value: Integer); {$IFDEF UseDelphi}override;{$ENDIF}
{Assigns from another TPNGObject}
procedure AssignPNG(Source: TPNGObject);
{Returns if the image is empty}
function GetEmpty: Boolean; {$IFDEF UseDelphi}override; {$ENDIF}
{Used with property Header}
function GetHeader: TChunkIHDR;
{$IFDEF UseDelphi}
{Returns if the image is transparent}
function GetTransparent: Boolean; override;
{$ENDIF}
{Returns a pixel}
function GetPixels(const X, Y: Integer): TColor; virtual;
procedure SetPixels(const X, Y: Integer; const Value: TColor); virtual;
public
{Draws using partial transparency}
procedure DrawPartialTrans(DC: HDC; Rect: TRect;
Transparency: Integer = 0; OnlyGrayscale: Boolean = False;
Darken: Integer = 0; Highlight: Integer = 0);
{Generates alpha information}
procedure CreateAlpha;
{Removes the image transparency}
procedure RemoveTransparency;
{Transparent color}
property TransparentColor: TColor read GetTransparentColor write
SetTransparentColor;
{Add text chunk, TChunkTEXT, TChunkzTXT}
procedure AddtEXt(const Keyword, Text: String);
procedure AddzTXt(const Keyword, Text: String);
{$IFDEF UseDelphi}
{Saves to clipboard format (thanks to Antoine Pottern)}
procedure SaveToClipboardFormat(var AFormat: Word; var AData: THandle;
var APalette: HPalette); override;
procedure LoadFromClipboardFormat(AFormat: Word; AData: THandle;
APalette: HPalette); override;
{$ENDIF}
{Calling errors}
procedure RaiseError(ExceptionClass: ExceptClass; Text: String);
{Returns a scanline from png}
property Scanline[const Index: Integer]: Pointer read GetScanline;
{$IFDEF Store16bits}
property ExtraScanline[const Index: Integer]: Pointer read GetExtraScanline;
{$ENDIF}
property AlphaScanline[const Index: Integer]: pByteArray read GetAlphaScanline;
{Returns pointer to the header}
property Header: TChunkIHDR read GetHeader;
{Returns the transparency mode used by this png}
property TransparencyMode: TPNGTransparencyMode read GetTransparencyMode;
{Assigns from another object}
procedure Assign(Source: TPersistent);{$IFDEF UseDelphi}override;{$ENDIF}
{Assigns to another object}
procedure AssignTo(Dest: TPersistent);{$IFDEF UseDelphi}override;{$ENDIF}
{Assigns from a windows bitmap handle}
procedure AssignHandle(Handle: HBitmap; Transparent: Boolean;
TransparentColor: ColorRef);
procedure ConvertToNonAlphaBitmap(Bitmap: TBitmap; Background: TColor);
{Draws the image into a canvas}
procedure Draw(ACanvas: TCanvas; const Rect: TRect);
{$IFDEF UseDelphi}override;{$ENDIF}
{Draws the image into a canvas using the Transparency parameter}
procedure DrawFaded(ACanvas: TCanvas; const Rect: TRect;
Transparency: Integer = 127);
{Draws the image into a canvas in grayscale only}
procedure DrawGrayscale(ACanvas: TCanvas; const Rect: TRect;
Transparency: Integer = 127);
{Width and height properties}
property Width: Integer read GetWidth;
property Height: Integer read GetHeight;
{Returns if the image is interlaced}
property InterlaceMethod: TInterlaceMethod read fInterlaceMethod
write fInterlaceMethod;
{Filters to test to encode}
property Filters: TFilters read fFilters write fFilters;
{Maximum size for IDAT chunks, default and minimum is 65536}
property MaxIdatSize: Cardinal read fMaxIdatSize write SetMaxIdatSize;
{Property to return if the image is empty or not}
property Empty: Boolean read GetEmpty;
{Compression level}
property CompressionLevel: TCompressionLevel read fCompressionLevel
write fCompressionLevel;
{Access to the chunk list}
property Chunks: TPngList read fChunkList;
{Object being created and destroyed}
constructor Create; {$IFDEF UseDelphi}override;{$ENDIF}
destructor Destroy; override;
{$IFNDEF UseDelphi}procedure LoadFromFile(const Filename: String);{$ENDIF}
{$IFNDEF UseDelphi}procedure SaveToFile(const Filename: String);{$ENDIF}
procedure LoadFromStream(Stream: TStream); {$IFDEF UseDelphi}override;{$ENDIF}
procedure SaveToStream(Stream: TStream); {$IFDEF UseDelphi}override;{$ENDIF}
{Loading the image from resources}
procedure LoadFromResourceName(Instance: HInst; const Name: String);
procedure LoadFromResourceID(Instance: HInst; ResID: Integer);
{Access to the png pixels}
property Pixels[const X, Y: Integer]: TColor read GetPixels write SetPixels;
{Palette property}
{$IFNDEF UseDelphi}property Palette: HPalette read GetPalette;{$ENDIF}
end;
{Chunk name object}
TChunkName = Array[0..3] of Char;
{Global chunk object}
TChunk = class
private
{Contains data}
fData: Pointer;
fDataSize: Cardinal;
{Stores owner}
fOwner: TPngObject;
{Stores the chunk name}
fName: TChunkName;
{Returns pointer to the TChunkIHDR}
function GetHeader: TChunkIHDR;
{Used with property index}
function GetIndex: Integer;
{Should return chunk class/name}
class function GetName: String; virtual;
{Returns the chunk name}
function GetChunkName: String;
public
{Returns index from list}
property Index: Integer read GetIndex;
{Returns pointer to the TChunkIHDR}
property Header: TChunkIHDR read GetHeader;
{Resize the data}
procedure ResizeData(const NewSize: Cardinal);
{Returns data and size}
property Data: Pointer read fData;
property DataSize: Cardinal read fDataSize;
{Assigns from another TChunk}
procedure Assign(Source: TChunk); virtual;
{Returns owner}
property Owner: TPngObject read fOwner;
{Being destroyed/created}
constructor Create(Owner: TPngObject); virtual;
destructor Destroy; override;
{Returns chunk class/name}
property Name: String read GetChunkName;
{Loads the chunk from a stream}
function LoadFromStream(Stream: TStream; const ChunkName: TChunkName;
Size: Integer): Boolean; virtual;
{Saves the chunk to a stream}
function SaveData(Stream: TStream): Boolean;
function SaveToStream(Stream: TStream): Boolean; virtual;
end;
{Chunk classes}
TChunkIEND = class(TChunk); {End chunk}
{IHDR data}
pIHDRData = ^TIHDRData;
TIHDRData = packed record
Width, Height: Cardinal;
BitDepth,
ColorType,
CompressionMethod,
FilterMethod,
InterlaceMethod: Byte;
end;
{Information header chunk}
TChunkIHDR = class(TChunk)
private
{Current image}
ImageHandle: HBitmap;
ImageDC: HDC;
{Output windows bitmap}
HasPalette: Boolean;
BitmapInfo: TMaxBitmapInfo;
BytesPerRow: Integer;
{Stores the image bytes}
{$IFDEF Store16bits}ExtraImageData: Pointer;{$ENDIF}
ImageData: pointer;
ImageAlpha: Pointer;
{Contains all the ihdr data}
IHDRData: TIHDRData;
protected
{Resizes the image data to fill the color type, bit depth, }
{width and height parameters}
procedure PrepareImageData;
{Release allocated ImageData memory}
procedure FreeImageData;
public
{Properties}
property Width: Cardinal read IHDRData.Width write IHDRData.Width;
property Height: Cardinal read IHDRData.Height write IHDRData.Height;
property BitDepth: Byte read IHDRData.BitDepth write IHDRData.BitDepth;
property ColorType: Byte read IHDRData.ColorType write IHDRData.ColorType;
property CompressionMethod: Byte read IHDRData.CompressionMethod
write IHDRData.CompressionMethod;
property FilterMethod: Byte read IHDRData.FilterMethod
write IHDRData.FilterMethod;
property InterlaceMethod: Byte read IHDRData.InterlaceMethod
write IHDRData.InterlaceMethod;
{Loads the chunk from a stream}
function LoadFromStream(Stream: TStream; const ChunkName: TChunkName;
Size: Integer): Boolean; override;
{Saves the chunk to a stream}
function SaveToStream(Stream: TStream): Boolean; override;
{Destructor/constructor}
constructor Create(Owner: TPngObject); override;
destructor Destroy; override;
{Assigns from another TChunk}
procedure Assign(Source: TChunk); override;
end;
{Gamma chunk}
TChunkgAMA = class(TChunk)
private
{Returns/sets the value for the gamma chunk}
function GetValue: Cardinal;
procedure SetValue(const Value: Cardinal);
public
{Returns/sets gamma value}
property Gamma: Cardinal read GetValue write SetValue;
{Loading the chunk from a stream}
function LoadFromStream(Stream: TStream; const ChunkName: TChunkName;
Size: Integer): Boolean; override;
{Being created}
constructor Create(Owner: TPngObject); override;
{Assigns from another TChunk}
procedure Assign(Source: TChunk); override;
end;
{ZLIB Decompression extra information}
TZStreamRec2 = packed record
{From ZLIB}
ZLIB: TZStreamRec;
{Additional info}
Data: Pointer;
fStream : TStream;
end;
{Palette chunk}
TChunkPLTE = class(TChunk)
private
{Number of items in the palette}
fCount: Integer;
{Contains the palette handle}
function GetPaletteItem(Index: Byte): TRGBQuad;
public
{Returns the color for each item in the palette}
property Item[Index: Byte]: TRGBQuad read GetPaletteItem;
{Returns the number of items in the palette}
property Count: Integer read fCount;
{Loads the chunk from a stream}
function LoadFromStream(Stream: TStream; const ChunkName: TChunkName;
Size: Integer): Boolean; override;
{Saves the chunk to a stream}
function SaveToStream(Stream: TStream): Boolean; override;
{Assigns from another TChunk}
procedure Assign(Source: TChunk); override;
end;
{Transparency information}
TChunktRNS = class(TChunk)
private
fBitTransparency: Boolean;
function GetTransparentColor: ColorRef;
{Returns the transparent color}
procedure SetTransparentColor(const Value: ColorRef);
public
{Palette values for transparency}
PaletteValues: Array[Byte] of Byte;
{Returns if it uses bit transparency}
property BitTransparency: Boolean read fBitTransparency;
{Returns the transparent color}
property TransparentColor: ColorRef read GetTransparentColor write
SetTransparentColor;
{Loads/saves the chunk from/to a stream}
function LoadFromStream(Stream: TStream; const ChunkName: TChunkName;
Size: Integer): Boolean; override;
function SaveToStream(Stream: TStream): Boolean; override;
{Assigns from another TChunk}
procedure Assign(Source: TChunk); override;
end;
{Actual image information}
TChunkIDAT = class(TChunk)
private
{Holds another pointer to the TChunkIHDR}
Header: TChunkIHDR;
{Stores temporary image width and height}
ImageWidth, ImageHeight: Integer;
{Size in bytes of each line and offset}
Row_Bytes, Offset : Cardinal;
{Contains data for the lines}
Encode_Buffer: Array[0..5] of pByteArray;
Row_Buffer: Array[Boolean] of pByteArray;
{Variable to invert the Row_Buffer used}
RowUsed: Boolean;
{Ending position for the current IDAT chunk}
EndPos: Integer;
{Filter the current line}
procedure FilterRow;
{Filter to encode and returns the best filter}
function FilterToEncode: Byte;
{Reads ZLIB compressed data}
function IDATZlibRead(var ZLIBStream: TZStreamRec2; Buffer: Pointer;
Count: Integer; var EndPos: Integer; var crcfile: Cardinal): Integer;
{Compress and writes IDAT data}
procedure IDATZlibWrite(var ZLIBStream: TZStreamRec2; Buffer: Pointer;
const Length: Cardinal);
procedure FinishIDATZlib(var ZLIBStream: TZStreamRec2);
{Prepares the palette}
procedure PreparePalette;
protected
{Decode interlaced image}
procedure DecodeInterlacedAdam7(Stream: TStream;
var ZLIBStream: TZStreamRec2; const Size: Integer; var crcfile: Cardinal);
{Decode non interlaced imaged}
procedure DecodeNonInterlaced(Stream: TStream;
var ZLIBStream: TZStreamRec2; const Size: Integer;
var crcfile: Cardinal);
protected
{Encode non interlaced images}
procedure EncodeNonInterlaced(Stream: TStream;
var ZLIBStream: TZStreamRec2);
{Encode interlaced images}
procedure EncodeInterlacedAdam7(Stream: TStream;
var ZLIBStream: TZStreamRec2);
protected
{Memory copy methods to decode}
procedure CopyNonInterlacedRGB8(
Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
procedure CopyNonInterlacedRGB16(
Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
procedure CopyNonInterlacedPalette148(
Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
procedure CopyNonInterlacedPalette2(
Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
procedure CopyNonInterlacedGray2(
Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
procedure CopyNonInterlacedGrayscale16(
Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
procedure CopyNonInterlacedRGBAlpha8(
Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
procedure CopyNonInterlacedRGBAlpha16(
Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
procedure CopyNonInterlacedGrayscaleAlpha8(
Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
procedure CopyNonInterlacedGrayscaleAlpha16(
Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
procedure CopyInterlacedRGB8(const Pass: Byte;
Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
procedure CopyInterlacedRGB16(const Pass: Byte;
Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
procedure CopyInterlacedPalette148(const Pass: Byte;
Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
procedure CopyInterlacedPalette2(const Pass: Byte;
Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
procedure CopyInterlacedGray2(const Pass: Byte;
Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
procedure CopyInterlacedGrayscale16(const Pass: Byte;
Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
procedure CopyInterlacedRGBAlpha8(const Pass: Byte;
Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
procedure CopyInterlacedRGBAlpha16(const Pass: Byte;
Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
procedure CopyInterlacedGrayscaleAlpha8(const Pass: Byte;
Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
procedure CopyInterlacedGrayscaleAlpha16(const Pass: Byte;
Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
protected
{Memory copy methods to encode}
procedure EncodeNonInterlacedRGB8(Src, Dest, Trans: pChar);
procedure EncodeNonInterlacedRGB16(Src, Dest, Trans: pChar);
procedure EncodeNonInterlacedGrayscale16(Src, Dest, Trans: pChar);
procedure EncodeNonInterlacedPalette148(Src, Dest, Trans: pChar);
procedure EncodeNonInterlacedRGBAlpha8(Src, Dest, Trans: pChar);
procedure EncodeNonInterlacedRGBAlpha16(Src, Dest, Trans: pChar);
procedure EncodeNonInterlacedGrayscaleAlpha8(Src, Dest, Trans: pChar);
procedure EncodeNonInterlacedGrayscaleAlpha16(Src, Dest, Trans: pChar);
procedure EncodeInterlacedRGB8(const Pass: Byte; Src, Dest, Trans: pChar);
procedure EncodeInterlacedRGB16(const Pass: Byte; Src, Dest, Trans: pChar);
procedure EncodeInterlacedPalette148(const Pass: Byte;
Src, Dest, Trans: pChar);
procedure EncodeInterlacedGrayscale16(const Pass: Byte;
Src, Dest, Trans: pChar);
procedure EncodeInterlacedRGBAlpha8(const Pass: Byte;
Src, Dest, Trans: pChar);
procedure EncodeInterlacedRGBAlpha16(const Pass: Byte;
Src, Dest, Trans: pChar);
procedure EncodeInterlacedGrayscaleAlpha8(const Pass: Byte;
Src, Dest, Trans: pChar);
procedure EncodeInterlacedGrayscaleAlpha16(const Pass: Byte;
Src, Dest, Trans: pChar);
public
{Loads the chunk from a stream}
function LoadFromStream(Stream: TStream; const ChunkName: TChunkName;
Size: Integer): Boolean; override;
{Saves the chunk to a stream}
function SaveToStream(Stream: TStream): Boolean; override;
end;
{Image last modification chunk}
TChunktIME = class(TChunk)
private
{Holds the variables}
fYear: Word;
fMonth, fDay, fHour, fMinute, fSecond: Byte;
public
{Returns/sets variables}
property Year: Word read fYear write fYear;
property Month: Byte read fMonth write fMonth;
property Day: Byte read fDay write fDay;
property Hour: Byte read fHour write fHour;
property Minute: Byte read fMinute write fMinute;
property Second: Byte read fSecond write fSecond;
{Loads the chunk from a stream}
function LoadFromStream(Stream: TStream; const ChunkName: TChunkName;
Size: Integer): Boolean; override;
{Saves the chunk to a stream}
function SaveToStream(Stream: TStream): Boolean; override;
end;
{Textual data}
TChunktEXt = class(TChunk)
private
fKeyword, fText: String;
public
{Keyword and text}
property Keyword: String read fKeyword write fKeyword;
property Text: String read fText write fText;
{Loads the chunk from a stream}
function LoadFromStream(Stream: TStream; const ChunkName: TChunkName;
Size: Integer): Boolean; override;
{Saves the chunk to a stream}
function SaveToStream(Stream: TStream): Boolean; override;
{Assigns from another TChunk}
procedure Assign(Source: TChunk); override;
end;
{zTXT chunk}
TChunkzTXt = class(TChunktEXt)
{Loads the chunk from a stream}
function LoadFromStream(Stream: TStream; const ChunkName: TChunkName;
Size: Integer): Boolean; override;
{Saves the chunk to a stream}
function SaveToStream(Stream: TStream): Boolean; override;
end;
{Here we test if it's c++ builder or delphi version 3 or less}
{$IFDEF VER110}{$DEFINE DelphiBuilder3Less}{$ENDIF}
{$IFDEF VER100}{$DEFINE DelphiBuilder3Less}{$ENDIF}
{$IFDEF VER93}{$DEFINE DelphiBuilder3Less}{$ENDIF}
{$IFDEF VER90}{$DEFINE DelphiBuilder3Less}{$ENDIF}
{$IFDEF VER80}{$DEFINE DelphiBuilder3Less}{$ENDIF}
{Registers a new chunk class}
procedure RegisterChunk(ChunkClass: TChunkClass);
{Calculates crc}
function update_crc(crc: {$IFNDEF DelphiBuilder3Less}Cardinal{$ELSE}Integer
{$ENDIF}; buf: pByteArray; len: Integer): Cardinal;
{Invert bytes using assembly}
function ByteSwap(const a: integer): integer;
implementation
var
ChunkClasses: TPngPointerList;
{Table of CRCs of all 8-bit messages}
crc_table: Array[0..255] of Cardinal;
{Flag: has the table been computed? Initially false}
crc_table_computed: Boolean;
{Draw transparent image using transparent color}
procedure DrawTransparentBitmap(dc: HDC; srcBits: Pointer;
var srcHeader: TBitmapInfoHeader;
srcBitmapInfo: pBitmapInfo; Rect: TRect; cTransparentColor: COLORREF);
var
cColor: COLORREF;
bmAndBack, bmAndObject, bmAndMem: HBITMAP;
bmBackOld, bmObjectOld, bmMemOld: HBITMAP;
hdcMem, hdcBack, hdcObject, hdcTemp: HDC;
ptSize, orgSize: TPOINT;
OldBitmap, DrawBitmap: HBITMAP;
begin
hdcTemp := CreateCompatibleDC(dc);
// Select the bitmap
DrawBitmap := CreateDIBitmap(dc, srcHeader, CBM_INIT, srcBits, srcBitmapInfo^,
DIB_RGB_COLORS);
OldBitmap := SelectObject(hdcTemp, DrawBitmap);
// Sizes
OrgSize.x := abs(srcHeader.biWidth);
OrgSize.y := abs(srcHeader.biHeight);
ptSize.x := Rect.Right - Rect.Left; // Get width of bitmap
ptSize.y := Rect.Bottom - Rect.Top; // Get height of bitmap
// Create some DCs to hold temporary data.
hdcBack := CreateCompatibleDC(dc);
hdcObject := CreateCompatibleDC(dc);
hdcMem := CreateCompatibleDC(dc);
// Create a bitmap for each DC. DCs are required for a number of
// GDI functions.
// Monochrome DCs
bmAndBack := CreateBitmap(ptSize.x, ptSize.y, 1, 1, nil);
bmAndObject := CreateBitmap(ptSize.x, ptSize.y, 1, 1, nil);
bmAndMem := CreateCompatibleBitmap(dc, ptSize.x, ptSize.y);
// Each DC must select a bitmap object to store pixel data.
bmBackOld := SelectObject(hdcBack, bmAndBack);
bmObjectOld := SelectObject(hdcObject, bmAndObject);
bmMemOld := SelectObject(hdcMem, bmAndMem);
// Set the background color of the source DC to the color.
// contained in the parts of the bitmap that should be transparent
cColor := SetBkColor(hdcTemp, cTransparentColor);
// Create the object mask for the bitmap by performing a BitBlt
// from the source bitmap to a monochrome bitmap.
StretchBlt(hdcObject, 0, 0, ptSize.x, ptSize.y, hdcTemp, 0, 0,
orgSize.x, orgSize.y, SRCCOPY);
// Set the background color of the source DC back to the original
// color.
SetBkColor(hdcTemp, cColor);
// Create the inverse of the object mask.
BitBlt(hdcBack, 0, 0, ptSize.x, ptSize.y, hdcObject, 0, 0,
NOTSRCCOPY);
// Copy the background of the main DC to the destination.
BitBlt(hdcMem, 0, 0, ptSize.x, ptSize.y, dc, Rect.Left, Rect.Top,
SRCCOPY);
// Mask out the places where the bitmap will be placed.
BitBlt(hdcMem, 0, 0, ptSize.x, ptSize.y, hdcObject, 0, 0, SRCAND);
// Mask out the transparent colored pixels on the bitmap.
// BitBlt(hdcTemp, 0, 0, ptSize.x, ptSize.y, hdcBack, 0, 0, SRCAND);
StretchBlt(hdcTemp, 0, 0, OrgSize.x, OrgSize.y, hdcBack, 0, 0,
PtSize.x, PtSize.y, SRCAND);
// XOR the bitmap with the background on the destination DC.
StretchBlt(hdcMem, 0, 0, ptSize.x, ptSize.y, hdcTemp, 0, 0,
OrgSize.x, OrgSize.y, SRCPAINT);
// Copy the destination to the screen.
BitBlt(dc, Rect.Left, Rect.Top, ptSize.x, ptSize.y, hdcMem, 0, 0,
SRCCOPY);
// Delete the memory bitmaps.
DeleteObject(SelectObject(hdcBack, bmBackOld));
DeleteObject(SelectObject(hdcObject, bmObjectOld));
DeleteObject(SelectObject(hdcMem, bmMemOld));
DeleteObject(SelectObject(hdcTemp, OldBitmap));
// Delete the memory DCs.
DeleteDC(hdcMem);
DeleteDC(hdcBack);
DeleteDC(hdcObject);
DeleteDC(hdcTemp);
end;
{Make the table for a fast CRC.}
procedure make_crc_table;
var
c: Cardinal;
n, k: Integer;
begin
{fill the crc table}
for n := 0 to 255 do
begin
c := Cardinal(n);
for k := 0 to 7 do
begin
if Boolean(c and 1) then
c := $edb88320 xor (c shr 1)
else
c := c shr 1;
end;
crc_table[n] := c;
end;
{The table has already being computated}
crc_table_computed := true;
end;
{Update a running CRC with the bytes buf[0..len-1]--the CRC
should be initialized to all 1's, and the transmitted value
is the 1's complement of the final running CRC (see the
crc() routine below)).}
function update_crc(crc: {$IFNDEF DelphiBuilder3Less}Cardinal{$ELSE}Integer
{$ENDIF}; buf: pByteArray; len: Integer): Cardinal;
var
c: Cardinal;
n: Integer;
begin
c := crc;
{Create the crc table in case it has not being computed yet}
if not crc_table_computed then make_crc_table;
{Update}
for n := 0 to len - 1 do
c := crc_table[(c XOR buf^[n]) and $FF] XOR (c shr 8);
{Returns}
Result := c;
end;
{$IFNDEF UseDelphi}
function FileExists(Filename: String): Boolean;
var
FindFile: THandle;
FindData: TWin32FindData;
begin
FindFile := FindFirstFile(PChar(Filename), FindData);
Result := FindFile <> INVALID_HANDLE_VALUE;
if Result then Windows.FindClose(FindFile);
end;
{$ENDIF}
{$IFNDEF UseDelphi}
{Exception implementation}
constructor Exception.Create(Msg: String);
begin
end;
{$ENDIF}
{Calculates the paeth predictor}
function PaethPredictor(a, b, c: Byte): Byte;
var
pa, pb, pc: Integer;
begin
{ a = left, b = above, c = upper left }
pa := abs(b - c); { distances to a, b, c }
pb := abs(a - c);
pc := abs(a + b - c * 2);
{ return nearest of a, b, c, breaking ties in order a, b, c }
if (pa <= pb) and (pa <= pc) then
Result := a
else
if pb <= pc then
Result := b
else
Result := c;
end;
{Invert bytes using assembly}
function ByteSwap(const a: integer): integer;
asm
bswap eax
end;
function ByteSwap16(inp:word): word;
asm
bswap eax
shr eax, 16
end;
{Calculates number of bytes for the number of pixels using the}
{color mode in the paramenter}
function BytesForPixels(const Pixels: Integer; const ColorType,
BitDepth: Byte): Integer;
begin
case ColorType of
{Palette and grayscale contains a single value, for palette}
{an value of size 2^bitdepth pointing to the palette index}
{and grayscale the value from 0 to 2^bitdepth with color intesity}
COLOR_GRAYSCALE, COLOR_PALETTE:
Result := (Pixels * BitDepth + 7) div 8;
{RGB contains 3 values R, G, B with size 2^bitdepth each}
COLOR_RGB:
Result := (Pixels * BitDepth * 3) div 8;
{Contains one value followed by alpha value booth size 2^bitdepth}
COLOR_GRAYSCALEALPHA:
Result := (Pixels * BitDepth * 2) div 8;
{Contains four values size 2^bitdepth, Red, Green, Blue and alpha}
COLOR_RGBALPHA:
Result := (Pixels * BitDepth * 4) div 8;
else
Result := 0;
end {case ColorType}
end;
type
pChunkClassInfo = ^TChunkClassInfo;
TChunkClassInfo = record
ClassName: TChunkClass;
end;
{Register a chunk type}
procedure RegisterChunk(ChunkClass: TChunkClass);
var
NewClass: pChunkClassInfo;
begin
{In case the list object has not being created yet}
if ChunkClasses = nil then ChunkClasses := TPngPointerList.Create(nil);
{Add this new class}
new(NewClass);
NewClass^.ClassName := ChunkClass;
ChunkClasses.Add(NewClass);
end;
{Free chunk class list}
procedure FreeChunkClassList;
var
i: Integer;
begin
if (ChunkClasses <> nil) then
begin
FOR i := 0 TO ChunkClasses.Count - 1 do
Dispose(pChunkClassInfo(ChunkClasses.Item[i]));
ChunkClasses.Free;
end;
end;
{Registering of common chunk classes}
procedure RegisterCommonChunks;
begin
{Important chunks}
RegisterChunk(TChunkIEND);
RegisterChunk(TChunkIHDR);
RegisterChunk(TChunkIDAT);
RegisterChunk(TChunkPLTE);
RegisterChunk(TChunkgAMA);
RegisterChunk(TChunktRNS);
{Not so important chunks}
RegisterChunk(TChunktIME);
RegisterChunk(TChunktEXt);
RegisterChunk(TChunkzTXt);
end;
{Creates a new chunk of this class}
function CreateClassChunk(Owner: TPngObject; Name: TChunkName): TChunk;
var
i : Integer;
NewChunk: TChunkClass;
begin
{Looks for this chunk}
NewChunk := TChunk; {In case there is no registered class for this}
{Looks for this class in all registered chunks}
if Assigned(ChunkClasses) then
FOR i := 0 TO ChunkClasses.Count - 1 DO
begin
if pChunkClassInfo(ChunkClasses.Item[i])^.ClassName.GetName = Name then
begin
NewChunk := pChunkClassInfo(ChunkClasses.Item[i])^.ClassName;
break;
end;
end;
{Returns chunk class}
Result := NewChunk.Create(Owner);
Result.fName := Name;
end;
{ZLIB support}
const
ZLIBAllocate = High(Word);
{Initializes ZLIB for decompression}
function ZLIBInitInflate(Stream: TStream): TZStreamRec2;
begin
{Fill record}
Fillchar(Result, SIZEOF(TZStreamRec2), #0);
{Set internal record information}
with Result do
begin
GetMem(Data, ZLIBAllocate);
fStream := Stream;
end;
{Init decompression}
InflateInit_(Result.zlib, zlib_version, SIZEOF(TZStreamRec));
end;
{Initializes ZLIB for compression}
function ZLIBInitDeflate(Stream: TStream;
Level: TCompressionlevel; Size: Cardinal): TZStreamRec2;
begin
{Fill record}
Fillchar(Result, SIZEOF(TZStreamRec2), #0);
{Set internal record information}
with Result, ZLIB do
begin
GetMem(Data, Size);
fStream := Stream;
next_out := Data;
avail_out := Size;
end;
{Inits compression}
deflateInit_(Result.zlib, Level, zlib_version, sizeof(TZStreamRec));
end;
{Terminates ZLIB for compression}
procedure ZLIBTerminateDeflate(var ZLIBStream: TZStreamRec2);
begin
{Terminates decompression}
DeflateEnd(ZLIBStream.zlib);
{Free internal record}
FreeMem(ZLIBStream.Data, ZLIBAllocate);
end;
{Terminates ZLIB for decompression}
procedure ZLIBTerminateInflate(var ZLIBStream: TZStreamRec2);
begin
{Terminates decompression}
InflateEnd(ZLIBStream.zlib);
{Free internal record}
FreeMem(ZLIBStream.Data, ZLIBAllocate);
end;
{Decompresses ZLIB into a memory address}
function DecompressZLIB(const Input: Pointer; InputSize: Integer;
var Output: Pointer; var OutputSize: Integer;
var ErrorOutput: String): Boolean;
var
StreamRec : TZStreamRec;
Buffer : Array[Byte] of Byte;
InflateRet: Integer;
begin
with StreamRec do
begin
{Initializes}
Result := True;
OutputSize := 0;
{Prepares the data to decompress}
FillChar(StreamRec, SizeOf(TZStreamRec), #0);
InflateInit_(StreamRec, zlib_version, SIZEOF(TZStreamRec));
next_in := Input;
avail_in := InputSize;
{Decodes data}
repeat
{In case it needs an output buffer}
if (avail_out = 0) then
begin
next_out := @Buffer;
avail_out := SizeOf(Buffer);
end {if (avail_out = 0)};
{Decompress and put in output}
InflateRet := inflate(StreamRec, 0);
if (InflateRet = Z_STREAM_END) or (InflateRet = 0) then
begin
{Reallocates output buffer}
inc(OutputSize, total_out);
if Output = nil then
GetMem(Output, OutputSize) else ReallocMem(Output, OutputSize);
{Copies the new data}
CopyMemory(Ptr(Longint(Output) + OutputSize - total_out),
@Buffer, total_out);
end {if (InflateRet = Z_STREAM_END) or (InflateRet = 0)}
{Now tests for errors}
else if InflateRet < 0 then
begin
Result := False;
ErrorOutput := StreamRec.msg;
InflateEnd(StreamRec);
Exit;
end {if InflateRet < 0}
until InflateRet = Z_STREAM_END;
{Terminates decompression}
InflateEnd(StreamRec);
end {with StreamRec}
end;
{Compresses ZLIB into a memory address}
function CompressZLIB(Input: Pointer; InputSize, CompressionLevel: Integer;
var Output: Pointer; var OutputSize: Integer;
var ErrorOutput: String): Boolean;
var
StreamRec : TZStreamRec;
Buffer : Array[Byte] of Byte;
DeflateRet: Integer;
begin
with StreamRec do
begin
Result := True; {By default returns TRUE as everything might have gone ok}
OutputSize := 0; {Initialize}
{Prepares the data to compress}
FillChar(StreamRec, SizeOf(TZStreamRec), #0);
DeflateInit_(StreamRec, CompressionLevel,zlib_version, SIZEOF(TZStreamRec));
next_in := Input;
avail_in := InputSize;
while avail_in > 0 do
begin
{When it needs new buffer to stores the compressed data}
if avail_out = 0 then
begin
{Restore buffer}
next_out := @Buffer;
avail_out := SizeOf(Buffer);
end {if avail_out = 0};
{Compresses}
DeflateRet := deflate(StreamRec, Z_FINISH);
if (DeflateRet = Z_STREAM_END) or (DeflateRet = 0) then
begin
{Updates the output memory}
inc(OutputSize, total_out);
if Output = nil then
GetMem(Output, OutputSize) else ReallocMem(Output, OutputSize);
{Copies the new data}
CopyMemory(Ptr(Longint(Output) + OutputSize - total_out),
@Buffer, total_out);
end {if (InflateRet = Z_STREAM_END) or (InflateRet = 0)}
{Now tests for errors}
else if DeflateRet < 0 then
begin
Result := False;
ErrorOutput := StreamRec.msg;
DeflateEnd(StreamRec);
Exit;
end {if InflateRet < 0}
end {while avail_in > 0};
{Finishes compressing}
DeflateEnd(StreamRec);
end {with StreamRec}
end;
{TPngPointerList implementation}
{Object being created}
constructor TPngPointerList.Create(AOwner: TPNGObject);
begin
inherited Create; {Let ancestor work}
{Holds owner}
fOwner := AOwner;
{Memory pointer not being used yet}
fMemory := nil;
{No items yet}
fCount := 0;
end;
{Removes value from the list}
function TPngPointerList.Remove(Value: Pointer): Pointer;
var
I, Position: Integer;
begin
{Gets item position}
Position := -1;
FOR I := 0 TO Count - 1 DO
if Value = Item[I] then Position := I;
{In case a match was found}
if Position >= 0 then
begin
Result := Item[Position]; {Returns pointer}
{Remove item and move memory}
Dec(fCount);
if Position < Integer(FCount) then
System.Move(fMemory^[Position + 1], fMemory^[Position],
(Integer(fCount) - Position) * SizeOf(Pointer));
end {if Position >= 0} else Result := nil
end;
{Add a new value in the list}
procedure TPngPointerList.Add(Value: Pointer);
begin
Count := Count + 1;
Item[Count - 1] := Value;
end;
{Object being destroyed}
destructor TPngPointerList.Destroy;
begin
{Release memory if needed}
if fMemory <> nil then
FreeMem(fMemory, fCount * sizeof(Pointer));
{Free things}
inherited Destroy;
end;
{Returns one item from the list}
function TPngPointerList.GetItem(Index: Cardinal): Pointer;
begin
if (Index <= Count - 1) then
Result := fMemory[Index]
else
{In case it's out of bounds}
Result := nil;
end;
{Inserts a new item in the list}
procedure TPngPointerList.Insert(Value: Pointer; Position: Cardinal);
begin
if (Position < Count) then
begin
{Increase item count}
SetSize(Count + 1);
{Move other pointers}
if Position < Count then
System.Move(fMemory^[Position], fMemory^[Position + 1],
(Count - Position - 1) * SizeOf(Pointer));
{Sets item}
Item[Position] := Value;
end;
end;
{Sets one item from the list}
procedure TPngPointerList.SetItem(Index: Cardinal; const Value: Pointer);
begin
{If index is in bounds, set value}
if (Index <= Count - 1) then
fMemory[Index] := Value
end;
{This method resizes the list}
procedure TPngPointerList.SetSize(const Size: Cardinal);
begin
{Sets the size}
if (fMemory = nil) and (Size > 0) then
GetMem(fMemory, Size * SIZEOF(Pointer))
else
if Size > 0 then {Only realloc if the new size is greater than 0}
ReallocMem(fMemory, Size * SIZEOF(Pointer))
else
{In case user is resize to 0 items}
begin
FreeMem(fMemory);
fMemory := nil;
end;
{Update count}
fCount := Size;
end;
{TPNGList implementation}
{Removes an item}
procedure TPNGList.RemoveChunk(Chunk: TChunk);
begin
Remove(Chunk);
Chunk.Free
end;
{Add a new item}
function TPNGList.Add(ChunkClass: TChunkClass): TChunk;
var
IHDR: TChunkIHDR;
IEND: TChunkIEND;
IDAT: TChunkIDAT;
PLTE: TChunkPLTE;
begin
Result := nil; {Default result}
{Adding these is not allowed}
if (ChunkClass = TChunkIHDR) or (ChunkClass = TChunkIDAT) or
(ChunkClass = TChunkPLTE) or (ChunkClass = TChunkIEND) then
fOwner.RaiseError(EPngError, EPNGCannotAddChunkText)
{Two of these is not allowed}
else if ((ChunkClass = TChunkgAMA) and (ItemFromClass(TChunkgAMA) <> nil)) or
((ChunkClass = TChunktRNS) and (ItemFromClass(TChunktRNS) <> nil)) then
fOwner.RaiseError(EPngError, EPNGCannotAddChunkText)
{There must have an IEND and IHDR chunk}
else if (ItemFromClass(TChunkIEND) = nil) or
(ItemFromClass(TChunkIHDR) = nil) then
fOwner.RaiseError(EPngError, EPNGCannotAddInvalidImageText)
else
begin
{Get common chunks}
IHDR := ItemFromClass(TChunkIHDR) as TChunkIHDR;
IEND := ItemFromClass(TChunkIEND) as TChunkIEND;
{Create new chunk}
Result := ChunkClass.Create(Owner);
{Add to the list}
if (ChunkClass = TChunkgAMA) then
Insert(Result, IHDR.Index + 1)
{Transparency chunk (fix by Ian Boyd)}
else if (ChunkClass = TChunktRNS) then
begin
{Transparecy chunk must be after PLTE; before IDAT}
IDAT := ItemFromClass(TChunkIDAT) as TChunkIDAT;
PLTE := ItemFromClass(TChunkPLTE) as TChunkPLTE;
if Assigned(PLTE) then
Insert(Result, PLTE.Index + 1)
else if Assigned(IDAT) then
Insert(Result, IDAT.Index)
else
Insert(Result, IHDR.Index + 1)
end
else {All other chunks}
Insert(Result, IEND.Index);
end {if}
end;
{Returns item from the list}
function TPNGList.GetItem(Index: Cardinal): TChunk;
begin
Result := inherited GetItem(Index);
end;
{Returns first item from the list using the class from parameter}
function TPNGList.ItemFromClass(ChunkClass: TChunkClass): TChunk;
var
i: Integer;
begin
Result := nil; {Initial result}
FOR i := 0 TO Count - 1 DO
{Test if this item has the same class}
if Item[i] is ChunkClass then
begin
{Returns this item and exit}
Result := Item[i];
break;
end {if}
end;
{$IFNDEF UseDelphi}
{TStream implementation}
{Copies all from another stream}
function TStream.CopyFrom(Source: TStream; Count: Cardinal): Cardinal;
const
MaxBytes = $f000;
var
Buffer: PChar;
BufSize, N: Cardinal;
begin
{If count is zero, copy everything from Source}
if Count = 0 then
begin
Source.Seek(0, soFromBeginning);
Count := Source.Size;
end;
Result := Count; {Returns the number of bytes readed}
{Allocates memory}
if Count > MaxBytes then BufSize := MaxBytes else BufSize := Count;
GetMem(Buffer, BufSize);
{Copy memory}
while Count > 0 do
begin
if Count > BufSize then N := BufSize else N := Count;
Source.Read(Buffer^, N);
Write(Buffer^, N);
dec(Count, N);
end;
{Deallocates memory}
FreeMem(Buffer, BufSize);
end;
{Set current stream position}
procedure TStream.SetPosition(const Value: Longint);
begin
Seek(Value, soFromBeginning);
end;
{Returns position}
function TStream.GetPosition: Longint;
begin
Result := Seek(0, soFromCurrent);
end;
{Returns stream size}
function TStream.GetSize: Longint;
var
Pos: Cardinal;
begin
Pos := Seek(0, soFromCurrent);
Result := Seek(0, soFromEnd);
Seek(Pos, soFromCurrent);
end;
{TFileStream implementation}
{Filestream object being created}
constructor TFileStream.Create(Filename: String; Mode: TFileStreamModeSet);
{Makes file mode}
function OpenMode: DWORD;
begin
Result := 0;
if fsmRead in Mode then Result := GENERIC_READ;
if (fsmWrite in Mode) or (fsmCreate in Mode) then
Result := Result OR GENERIC_WRITE;
end;
const
IsCreate: Array[Boolean] of Integer = (OPEN_ALWAYS, CREATE_ALWAYS);
begin
{Call ancestor}
inherited Create;
{Create handle}
fHandle := CreateFile(PChar(Filename), OpenMode, FILE_SHARE_READ or
FILE_SHARE_WRITE, nil, IsCreate[fsmCreate in Mode], 0, 0);
{Store mode}
FileMode := Mode;
end;
{Filestream object being destroyed}
destructor TFileStream.Destroy;
begin
{Terminates file and close}
if FileMode = [fsmWrite] then
SetEndOfFile(fHandle);
CloseHandle(fHandle);
{Call ancestor}
inherited Destroy;
end;
{Writes data to the file}
function TFileStream.Write(const Buffer; Count: Longint): Cardinal;
begin
if not WriteFile(fHandle, Buffer, Count, Result, nil) then
Result := 0;
end;
{Reads data from the file}
function TFileStream.Read(var Buffer; Count: Longint): Cardinal;
begin
if not ReadFile(fHandle, Buffer, Count, Result, nil) then
Result := 0;
end;
{Seeks the file position}
function TFileStream.Seek(Offset: Integer; Origin: Word): Longint;
begin
Result := SetFilePointer(fHandle, Offset, nil, Origin);
end;
{Sets the size of the file}
procedure TFileStream.SetSize(const Value: Longint);
begin
Seek(Value, soFromBeginning);
SetEndOfFile(fHandle);
end;
{TResourceStream implementation}
{Creates the resource stream}
constructor TResourceStream.Create(Instance: HInst; const ResName: String;
ResType: PChar);
var
ResID: HRSRC;
ResGlobal: HGlobal;
begin
{Obtains the resource ID}
ResID := FindResource(hInstance, PChar(ResName), RT_RCDATA);
if ResID = 0 then raise EPNGError.Create('');
{Obtains memory and size}
ResGlobal := LoadResource(hInstance, ResID);
Size := SizeOfResource(hInstance, ResID);
Memory := LockResource(ResGlobal);
if (ResGlobal = 0) or (Memory = nil) then EPNGError.Create('');
end;
{Setting resource stream size is not supported}
procedure TResourceStream.SetSize(const Value: Integer);
begin
end;
{Writing into a resource stream is not supported}
function TResourceStream.Write(const Buffer; Count: Integer): Cardinal;
begin
Result := 0;
end;
{Reads data from the stream}
function TResourceStream.Read(var Buffer; Count: Integer): Cardinal;
begin
//Returns data
CopyMemory(@Buffer, Ptr(Longint(Memory) + Position), Count);
//Update position
inc(Position, Count);
//Returns
Result := Count;
end;
{Seeks data}
function TResourceStream.Seek(Offset: Integer; Origin: Word): Longint;
begin
{Move depending on the origin}
case Origin of
soFromBeginning: Position := Offset;
soFromCurrent: inc(Position, Offset);
soFromEnd: Position := Size + Offset;
end;
{Returns the current position}
Result := Position;
end;
{$ENDIF}
{TChunk implementation}
{Resizes the data}
procedure TChunk.ResizeData(const NewSize: Cardinal);
begin
fDataSize := NewSize;
ReallocMem(fData, NewSize + 1);
end;
{Returns index from list}
function TChunk.GetIndex: Integer;
var
i: Integer;
begin
Result := -1; {Avoiding warnings}
{Searches in the list}
FOR i := 0 TO Owner.Chunks.Count - 1 DO
if Owner.Chunks.Item[i] = Self then
begin
{Found match}
Result := i;
exit;
end {for i}
end;
{Returns pointer to the TChunkIHDR}
function TChunk.GetHeader: TChunkIHDR;
begin
Result := Owner.Chunks.Item[0] as TChunkIHDR;
end;
{Assigns from another TChunk}
procedure TChunk.Assign(Source: TChunk);
begin
{Copy properties}
fName := Source.fName;
{Set data size and realloc}
ResizeData(Source.fDataSize);
{Copy data (if there's any)}
if fDataSize > 0 then CopyMemory(fData, Source.fData, fDataSize);
end;
{Chunk being created}
constructor TChunk.Create(Owner: TPngObject);
var
ChunkName: String;
begin
{Ancestor create}
inherited Create;
{If it's a registered class, set the chunk name based on the class}
{name. For instance, if the class name is TChunkgAMA, the GAMA part}
{will become the chunk name}
ChunkName := Copy(ClassName, Length('TChunk') + 1, Length(ClassName));
if Length(ChunkName) = 4 then CopyMemory(@fName[0], @ChunkName[1], 4);
{Initialize data holder}
GetMem(fData, 1);
fDataSize := 0;
{Record owner}
fOwner := Owner;
end;
{Chunk being destroyed}
destructor TChunk.Destroy;
begin
{Free data holder}
FreeMem(fData, fDataSize + 1);
{Let ancestor destroy}
inherited Destroy;
end;
{Returns the chunk name 1}
function TChunk.GetChunkName: String;
begin
Result := fName
end;
{Returns the chunk name 2}
class function TChunk.GetName: String;
begin
{For avoid writing GetName for each TChunk descendent, by default for}
{classes which don't declare GetName, it will look for the class name}
{to extract the chunk kind. Example, if the class name is TChunkIEND }
{this method extracts and returns IEND}
Result := Copy(ClassName, Length('TChunk') + 1, Length(ClassName));
end;
{Saves the data to the stream}
function TChunk.SaveData(Stream: TStream): Boolean;
var
ChunkSize, ChunkCRC: Cardinal;
begin
{First, write the size for the following data in the chunk}
ChunkSize := ByteSwap(DataSize);
Stream.Write(ChunkSize, 4);
{The chunk name}
Stream.Write(fName, 4);
{If there is data for the chunk, write it}
if DataSize > 0 then Stream.Write(Data^, DataSize);
{Calculates and write CRC}
ChunkCRC := update_crc($ffffffff, @fName[0], 4);
ChunkCRC := Byteswap(update_crc(ChunkCRC, Data, DataSize) xor $ffffffff);
Stream.Write(ChunkCRC, 4);
{Returns that everything went ok}
Result := TRUE;
end;
{Saves the chunk to the stream}
function TChunk.SaveToStream(Stream: TStream): Boolean;
begin
Result := SaveData(Stream)
end;
{Loads the chunk from a stream}
function TChunk.LoadFromStream(Stream: TStream; const ChunkName: TChunkName;
Size: Integer): Boolean;
var
CheckCRC: Cardinal;
{$IFDEF CheckCRC}RightCRC: Cardinal;{$ENDIF}
begin
{Copies data from source}
ResizeData(Size);
if Size > 0 then Stream.Read(fData^, Size);
{Reads CRC}
Stream.Read(CheckCRC, 4);
CheckCrc := ByteSwap(CheckCRC);
{Check if crc readed is valid}
{$IFDEF CheckCRC}
RightCRC := update_crc($ffffffff, @ChunkName[0], 4);
RightCRC := update_crc(RightCRC, fData, Size) xor $ffffffff;
Result := RightCRC = CheckCrc;
{Handle CRC error}
if not Result then
begin
{In case it coult not load chunk}
Owner.RaiseError(EPngInvalidCRC, EPngInvalidCRCText);
exit;
end
{$ELSE}Result := TRUE; {$ENDIF}
end;
{TChunktIME implementation}
{Chunk being loaded from a stream}
function TChunktIME.LoadFromStream(Stream: TStream;
const ChunkName: TChunkName; Size: Integer): Boolean;
begin
{Let ancestor load the data}
Result := inherited LoadFromStream(Stream, ChunkName, Size);
if not Result or (Size <> 7) then exit; {Size must be 7}
{Reads data}
fYear := ((pByte(Longint(Data) )^) * 256)+ (pByte(Longint(Data) + 1)^);
fMonth := pByte(Longint(Data) + 2)^;
fDay := pByte(Longint(Data) + 3)^;
fHour := pByte(Longint(Data) + 4)^;
fMinute := pByte(Longint(Data) + 5)^;
fSecond := pByte(Longint(Data) + 6)^;
end;
{Saving the chunk to a stream}
function TChunktIME.SaveToStream(Stream: TStream): Boolean;
begin
{Update data}
ResizeData(7); {Make sure the size is 7}
pWord(Data)^ := Year;
pByte(Longint(Data) + 2)^ := Month;
pByte(Longint(Data) + 3)^ := Day;
pByte(Longint(Data) + 4)^ := Hour;
pByte(Longint(Data) + 5)^ := Minute;
pByte(Longint(Data) + 6)^ := Second;
{Let inherited save data}
Result := inherited SaveToStream(Stream);
end;
{TChunkztXt implementation}
{Loading the chunk from a stream}
function TChunkzTXt.LoadFromStream(Stream: TStream;
const ChunkName: TChunkName; Size: Integer): Boolean;
var
ErrorOutput: String;
CompressionMethod: Byte;
Output: Pointer;
OutputSize: Integer;
begin
{Load data from stream and validate}
Result := inherited LoadFromStream(Stream, ChunkName, Size);
if not Result or (Size < 4) then exit;
fKeyword := PChar(Data); {Get keyword and compression method bellow}
CompressionMethod := pByte(Longint(fKeyword) + Length(fKeyword))^;
fText := '';
{In case the compression is 0 (only one accepted by specs), reads it}
if CompressionMethod = 0 then
begin
Output := nil;
if DecompressZLIB(PChar(Longint(Data) + Length(fKeyword) + 2),
Size - Length(fKeyword) - 2, Output, OutputSize, ErrorOutput) then
begin
SetLength(fText, OutputSize);
CopyMemory(@fText[1], Output, OutputSize);
end {if DecompressZLIB(...};
FreeMem(Output);
end {if CompressionMethod = 0}
end;
{Saving the chunk to a stream}
function TChunkztXt.SaveToStream(Stream: TStream): Boolean;
var
Output: Pointer;
OutputSize: Integer;
ErrorOutput: String;
begin
Output := nil; {Initializes output}
if fText = '' then fText := ' ';
{Compresses the data}
if CompressZLIB(@fText[1], Length(fText), Owner.CompressionLevel, Output,
OutputSize, ErrorOutput) then
begin
{Size is length from keyword, plus a null character to divide}
{plus the compression method, plus the length of the text (zlib compressed)}
ResizeData(Length(fKeyword) + 2 + OutputSize);
Fillchar(Data^, DataSize, #0);
{Copies the keyword data}
if Keyword <> '' then
CopyMemory(Data, @fKeyword[1], Length(Keyword));
{Compression method 0 (inflate/deflate)}
pByte(Ptr(Longint(Data) + Length(Keyword) + 1))^ := 0;
if OutputSize > 0 then
CopyMemory(Ptr(Longint(Data) + Length(Keyword) + 2), Output, OutputSize);
{Let ancestor calculate crc and save}
Result := SaveData(Stream);
end {if CompressZLIB(...} else Result := False;
{Frees output}
if Output <> nil then FreeMem(Output)
end;
{TChunktEXt implementation}
{Assigns from another text chunk}
procedure TChunktEXt.Assign(Source: TChunk);
begin
fKeyword := TChunktEXt(Source).fKeyword;
fText := TChunktEXt(Source).fText;
end;
{Loading the chunk from a stream}
function TChunktEXt.LoadFromStream(Stream: TStream;
const ChunkName: TChunkName; Size: Integer): Boolean;
begin
{Load data from stream and validate}
Result := inherited LoadFromStream(Stream, ChunkName, Size);
if not Result or (Size < 3) then exit;
{Get text}
fKeyword := PChar(Data);
SetLength(fText, Size - Length(fKeyword) - 1);
CopyMemory(@fText[1], Ptr(Longint(Data) + Length(fKeyword) + 1),
Length(fText));
end;
{Saving the chunk to a stream}
function TChunktEXt.SaveToStream(Stream: TStream): Boolean;
begin
{Size is length from keyword, plus a null character to divide}
{plus the length of the text}
ResizeData(Length(fKeyword) + 1 + Length(fText));
Fillchar(Data^, DataSize, #0);
{Copy data}
if Keyword <> '' then
CopyMemory(Data, @fKeyword[1], Length(Keyword));
if Text <> '' then
CopyMemory(Ptr(Longint(Data) + Length(Keyword) + 1), @fText[1],
Length(Text));
{Let ancestor calculate crc and save}
Result := inherited SaveToStream(Stream);
end;
{TChunkIHDR implementation}
{Chunk being created}
constructor TChunkIHDR.Create(Owner: TPngObject);
begin
{Call inherited}
inherited Create(Owner);
{Prepare pointers}
ImageHandle := 0;
ImageDC := 0;
end;
{Chunk being destroyed}
destructor TChunkIHDR.Destroy;
begin
{Free memory}
FreeImageData();
{Calls TChunk destroy}
inherited Destroy;
end;
{Assigns from another IHDR chunk}
procedure TChunkIHDR.Assign(Source: TChunk);
begin
{Copy the IHDR data}
if Source is TChunkIHDR then
begin
{Copy IHDR values}
IHDRData := TChunkIHDR(Source).IHDRData;
{Prepare to hold data by filling BitmapInfo structure and}
{resizing ImageData and ImageAlpha memory allocations}
PrepareImageData();
{Copy image data}
CopyMemory(ImageData, TChunkIHDR(Source).ImageData,
BytesPerRow * Integer(Height));
CopyMemory(ImageAlpha, TChunkIHDR(Source).ImageAlpha,
Integer(Width) * Integer(Height));
{Copy palette colors}
BitmapInfo.bmiColors := TChunkIHDR(Source).BitmapInfo.bmiColors;
end
else
Owner.RaiseError(EPNGError, EPNGCannotAssignChunkText);
end;
{Release allocated image data}
procedure TChunkIHDR.FreeImageData;
begin
{Free old image data}
if ImageHandle <> 0 then DeleteObject(ImageHandle);
if ImageDC <> 0 then DeleteDC(ImageDC);
if ImageAlpha <> nil then FreeMem(ImageAlpha);
{$IFDEF Store16bits}
if ExtraImageData <> nil then FreeMem(ExtraImageData);
{$ENDIF}
ImageHandle := 0; ImageDC := 0; ImageAlpha := nil; ImageData := nil;
end;
{Chunk being loaded from a stream}
function TChunkIHDR.LoadFromStream(Stream: TStream; const ChunkName: TChunkName;
Size: Integer): Boolean;
begin
{Let TChunk load it}
Result := inherited LoadFromStream(Stream, ChunkName, Size);
if not Result then Exit;
{Now check values}
{Note: It's recommended by png specification to make sure that the size}
{must be 13 bytes to be valid, but some images with 14 bytes were found}
{which could be loaded by internet explorer and other tools}
if (fDataSize < SIZEOF(TIHdrData)) then
begin
{Ihdr must always have at least 13 bytes}
Result := False;
Owner.RaiseError(EPNGInvalidIHDR, EPNGInvalidIHDRText);
exit;
end;
{Everything ok, reads IHDR}
IHDRData := pIHDRData(fData)^;
IHDRData.Width := ByteSwap(IHDRData.Width);
IHDRData.Height := ByteSwap(IHDRData.Height);
{The width and height must not be larger than 65535 pixels}
if (IHDRData.Width > High(Word)) or (IHDRData.Height > High(Word)) then
begin
Result := False;
Owner.RaiseError(EPNGSizeExceeds, EPNGSizeExceedsText);
exit;
end {if IHDRData.Width > High(Word)};
{Compression method must be 0 (inflate/deflate)}
if (IHDRData.CompressionMethod <> 0) then
begin
Result := False;
Owner.RaiseError(EPNGUnknownCompression, EPNGUnknownCompressionText);
exit;
end;
{Interlace must be either 0 (none) or 7 (adam7)}
if (IHDRData.InterlaceMethod <> 0) and (IHDRData.InterlaceMethod <> 1) then
begin
Result := False;
Owner.RaiseError(EPNGUnknownInterlace, EPNGUnknownInterlaceText);
exit;
end;
{Updates owner properties}
Owner.InterlaceMethod := TInterlaceMethod(IHDRData.InterlaceMethod);
{Prepares data to hold image}
PrepareImageData();
end;
{Saving the IHDR chunk to a stream}
function TChunkIHDR.SaveToStream(Stream: TStream): Boolean;
begin
{Ignore 2 bits images}
if BitDepth = 2 then BitDepth := 4;
{It needs to do is update the data with the IHDR data}
{structure containing the write values}
ResizeData(SizeOf(TIHDRData));
pIHDRData(fData)^ := IHDRData;
{..byteswap 4 byte types}
pIHDRData(fData)^.Width := ByteSwap(pIHDRData(fData)^.Width);
pIHDRData(fData)^.Height := ByteSwap(pIHDRData(fData)^.Height);
{..update interlace method}
pIHDRData(fData)^.InterlaceMethod := Byte(Owner.InterlaceMethod);
{..and then let the ancestor SaveToStream do the hard work}
Result := inherited SaveToStream(Stream);
end;
{Resizes the image data to fill the color type, bit depth, }
{width and height parameters}
procedure TChunkIHDR.PrepareImageData();
{Set the bitmap info}
procedure SetInfo(const Bitdepth: Integer; const Palette: Boolean);
begin
{Copy if the bitmap contain palette entries}
HasPalette := Palette;
{Initialize the structure with zeros}
fillchar(BitmapInfo, sizeof(BitmapInfo), #0);
{Fill the strucutre}
with BitmapInfo.bmiHeader do
begin
biSize := sizeof(TBitmapInfoHeader);
biHeight := Height;
biWidth := Width;
biPlanes := 1;
biBitCount := BitDepth;
biCompression := BI_RGB;
end {with BitmapInfo.bmiHeader}
end;
begin
{Prepare bitmap info header}
Fillchar(BitmapInfo, sizeof(TMaxBitmapInfo), #0);
{Release old image data}
FreeImageData();
{Obtain number of bits for each pixel}
case ColorType of
COLOR_GRAYSCALE, COLOR_PALETTE, COLOR_GRAYSCALEALPHA:
case BitDepth of
{These are supported by windows}
1, 4, 8: SetInfo(BitDepth, TRUE);
{2 bits for each pixel is not supported by windows bitmap}
2 : SetInfo(4, TRUE);
{Also 16 bits (2 bytes) for each pixel is not supported}
{and should be transormed into a 8 bit grayscale}
16 : SetInfo(8, TRUE);
end;
{Only 1 byte (8 bits) is supported}
COLOR_RGB, COLOR_RGBALPHA: SetInfo(24, FALSE);
end {case ColorType};
{Number of bytes for each scanline}
BytesPerRow := (((BitmapInfo.bmiHeader.biBitCount * Width) + 31)
and not 31) div 8;
{Build array for alpha information, if necessary}
if (ColorType = COLOR_RGBALPHA) or (ColorType = COLOR_GRAYSCALEALPHA) then
begin
GetMem(ImageAlpha, Integer(Width) * Integer(Height));
FillChar(ImageAlpha^, Integer(Width) * Integer(Height), #0);
end;
{Build array for extra byte information}
{$IFDEF Store16bits}
if (BitDepth = 16) then
begin
GetMem(ExtraImageData, BytesPerRow * Integer(Height));
FillChar(ExtraImageData^, BytesPerRow * Integer(Height), #0);
end;
{$ENDIF}
{Creates the image to hold the data, CreateDIBSection does a better}
{work in allocating necessary memory}
ImageDC := CreateCompatibleDC(0);
ImageHandle := CreateDIBSection(ImageDC, pBitmapInfo(@BitmapInfo)^,
DIB_RGB_COLORS, ImageData, 0, 0);
{Clears the old palette (if any)}
with Owner do
if TempPalette <> 0 then
begin
DeleteObject(TempPalette);
TempPalette := 0;
end {with Owner, if TempPalette <> 0};
{Build array and allocate bytes for each row}
zeromemory(ImageData, BytesPerRow * Integer(Height));
end;
{TChunktRNS implementation}
{$IFNDEF UseDelphi}
function CompareMem(P1, P2: pByte; const Size: Integer): Boolean;
var i: Integer;
begin
Result := True;
for i := 1 to Size do
begin
if P1^ <> P2^ then Result := False;
inc(P1); inc(P2);
end {for i}
end;
{$ENDIF}
{Sets the transpararent color}
procedure TChunktRNS.SetTransparentColor(const Value: ColorRef);
var
i: Byte;
LookColor: TRGBQuad;
begin
{Clears the palette values}
Fillchar(PaletteValues, SizeOf(PaletteValues), #0);
{Sets that it uses bit transparency}
fBitTransparency := True;
{Depends on the color type}
with Header do
case ColorType of
COLOR_GRAYSCALE:
begin
Self.ResizeData(2);
pWord(@PaletteValues[0])^ := ByteSwap16(GetRValue(Value));
end;
COLOR_RGB:
begin
Self.ResizeData(6);
pWord(@PaletteValues[0])^ := ByteSwap16(GetRValue(Value));
pWord(@PaletteValues[2])^ := ByteSwap16(GetGValue(Value));
pWord(@PaletteValues[4])^ := ByteSwap16(GetBValue(Value));
end;
COLOR_PALETTE:
begin
{Creates a RGBQuad to search for the color}
LookColor.rgbRed := GetRValue(Value);
LookColor.rgbGreen := GetGValue(Value);
LookColor.rgbBlue := GetBValue(Value);
{Look in the table for the entry}
for i := 0 to 255 do
if CompareMem(@BitmapInfo.bmiColors[i], @LookColor, 3) then
Break;
{Fill the transparency table}
Fillchar(PaletteValues, i, 255);
Self.ResizeData(i + 1)
end
end {case / with};
end;
{Returns the transparent color for the image}
function TChunktRNS.GetTransparentColor: ColorRef;
var
PaletteChunk: TChunkPLTE;
i: Integer;
begin
Result := 0; {Default: Unknown transparent color}
{Depends on the color type}
with Header do
case ColorType of
COLOR_GRAYSCALE:
Result := RGB(PaletteValues[0], PaletteValues[0],
PaletteValues[0]);
COLOR_RGB:
Result := RGB(PaletteValues[1], PaletteValues[3], PaletteValues[5]);
COLOR_PALETTE:
begin
{Obtains the palette chunk}
PaletteChunk := Owner.Chunks.ItemFromClass(TChunkPLTE) as TChunkPLTE;
{Looks for an entry with 0 transparency meaning that it is the}
{full transparent entry}
for i := 0 to Self.DataSize - 1 do
if PaletteValues[i] = 0 then
with PaletteChunk.GetPaletteItem(i) do
begin
Result := RGB(rgbRed, rgbGreen, rgbBlue);
break
end
end {COLOR_PALETTE}
end {case Header.ColorType};
end;
{Saving the chunk to a stream}
function TChunktRNS.SaveToStream(Stream: TStream): Boolean;
begin
{Copy palette into data buffer}
if DataSize <= 256 then
CopyMemory(fData, @PaletteValues[0], DataSize);
Result := inherited SaveToStream(Stream);
end;
{Assigns from another chunk}
procedure TChunktRNS.Assign(Source: TChunk);
begin
CopyMemory(@PaletteValues[0], @TChunkTrns(Source).PaletteValues[0], 256);
fBitTransparency := TChunkTrns(Source).fBitTransparency;
inherited Assign(Source);
end;
{Loads the chunk from a stream}
function TChunktRNS.LoadFromStream(Stream: TStream; const ChunkName: TChunkName;
Size: Integer): Boolean;
var
i, Differ255: Integer;
begin
{Let inherited load}
Result := inherited LoadFromStream(Stream, ChunkName, Size);
if not Result then Exit;
{Make sure size is correct}
if Size > 256 then Owner.RaiseError(EPNGInvalidPalette,
EPNGInvalidPaletteText);
{The unset items should have value 255}
Fillchar(PaletteValues[0], 256, 255);
{Copy the other values}
CopyMemory(@PaletteValues[0], fData, Size);
{Create the mask if needed}
case Header.ColorType of
{Mask for grayscale and RGB}
COLOR_RGB, COLOR_GRAYSCALE: fBitTransparency := True;
COLOR_PALETTE:
begin
Differ255 := 0; {Count the entries with a value different from 255}
{Tests if it uses bit transparency}
for i := 0 to Size - 1 do
if PaletteValues[i] <> 255 then inc(Differ255);
{If it has one value different from 255 it is a bit transparency}
fBitTransparency := (Differ255 = 1);
end {COLOR_PALETTE}
end {case Header.ColorType};
end;
{Prepares the image palette}
procedure TChunkIDAT.PreparePalette;
var
Entries: Word;
j : Integer;
begin
{In case the image uses grayscale, build a grayscale palette}
with Header do
if (ColorType = COLOR_GRAYSCALE) or (ColorType = COLOR_GRAYSCALEALPHA) then
begin
{Calculate total number of palette entries}
Entries := (1 shl Byte(BitmapInfo.bmiHeader.biBitCount));
FOR j := 0 TO Entries - 1 DO
with BitmapInfo.bmiColors[j] do
begin
{Calculate each palette entry}
rgbRed := fOwner.GammaTable[MulDiv(j, 255, Entries - 1)];
rgbGreen := rgbRed;
rgbBlue := rgbRed;
end {with BitmapInfo.bmiColors[j]}
end {if ColorType = COLOR_GRAYSCALE..., with Header}
end;
{Reads from ZLIB}
function TChunkIDAT.IDATZlibRead(var ZLIBStream: TZStreamRec2;
Buffer: Pointer; Count: Integer; var EndPos: Integer;
var crcfile: Cardinal): Integer;
var
ProcResult : Integer;
IDATHeader : Array[0..3] of char;
IDATCRC : Cardinal;
begin
{Uses internal record pointed by ZLIBStream to gather information}
with ZLIBStream, ZLIBStream.zlib do
begin
{Set the buffer the zlib will read into}
next_out := Buffer;
avail_out := Count;
{Decode until it reach the Count variable}
while avail_out > 0 do
begin
{In case it needs more data and it's in the end of a IDAT chunk,}
{it means that there are more IDAT chunks}
if (fStream.Position = EndPos) and (avail_out > 0) and
(avail_in = 0) then
begin
{End this chunk by reading and testing the crc value}
fStream.Read(IDATCRC, 4);
{$IFDEF CheckCRC}
if crcfile xor $ffffffff <> Cardinal(ByteSwap(IDATCRC)) then
begin
Result := -1;
Owner.RaiseError(EPNGInvalidCRC, EPNGInvalidCRCText);
exit;
end;
{$ENDIF}
{Start reading the next chunk}
fStream.Read(EndPos, 4); {Reads next chunk size}
fStream.Read(IDATHeader[0], 4); {Next chunk header}
{It must be a IDAT chunk since image data is required and PNG}
{specification says that multiple IDAT chunks must be consecutive}
if IDATHeader <> 'IDAT' then
begin
Owner.RaiseError(EPNGMissingMultipleIDAT, EPNGMissingMultipleIDATText);
result := -1;
exit;
end;
{Calculate chunk name part of the crc}
{$IFDEF CheckCRC}
crcfile := update_crc($ffffffff, @IDATHeader[0], 4);
{$ENDIF}
EndPos := fStream.Position + ByteSwap(EndPos);
end;
{In case it needs compressed data to read from}
if avail_in = 0 then
begin
{In case it's trying to read more than it is avaliable}
if fStream.Position + ZLIBAllocate > EndPos then
avail_in := fStream.Read(Data^, EndPos - fStream.Position)
else
avail_in := fStream.Read(Data^, ZLIBAllocate);
{Update crc}
{$IFDEF CheckCRC}
crcfile := update_crc(crcfile, Data, avail_in);
{$ENDIF}
{In case there is no more compressed data to read from}
if avail_in = 0 then
begin
Result := Count - avail_out;
Exit;
end;
{Set next buffer to read and record current position}
next_in := Data;
end {if avail_in = 0};
ProcResult := inflate(zlib, 0);
{In case the result was not sucessfull}
if (ProcResult < 0) then
begin
Result := -1;
Owner.RaiseError(EPNGZLIBError,
EPNGZLIBErrorText + zliberrors[procresult]);
exit;
end;
end {while avail_out > 0};
end {with};
{If everything gone ok, it returns the count bytes}
Result := Count;
end;
{TChunkIDAT implementation}
const
{Adam 7 interlacing values}
RowStart: array[0..6] of Integer = (0, 0, 4, 0, 2, 0, 1);
ColumnStart: array[0..6] of Integer = (0, 4, 0, 2, 0, 1, 0);
RowIncrement: array[0..6] of Integer = (8, 8, 8, 4, 4, 2, 2);
ColumnIncrement: array[0..6] of Integer = (8, 8, 4, 4, 2, 2, 1);
{Copy interlaced images with 1 byte for R, G, B}
procedure TChunkIDAT.CopyInterlacedRGB8(const Pass: Byte;
Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
var
Col: Integer;
begin
{Get first column and enter in loop}
Col := ColumnStart[Pass];
Dest := pChar(Longint(Dest) + Col * 3);
repeat
{Copy this row}
Byte(Dest^) := fOwner.GammaTable[pByte(Longint(Src) + 2)^]; inc(Dest);
Byte(Dest^) := fOwner.GammaTable[pByte(Longint(Src) + 1)^]; inc(Dest);
Byte(Dest^) := fOwner.GammaTable[pByte(Longint(Src) )^]; inc(Dest);
{Move to next column}
inc(Src, 3);
inc(Dest, ColumnIncrement[Pass] * 3 - 3);
inc(Col, ColumnIncrement[Pass]);
until Col >= ImageWidth;
end;
{Copy interlaced images with 2 bytes for R, G, B}
procedure TChunkIDAT.CopyInterlacedRGB16(const Pass: Byte;
Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
var
Col: Integer;
begin
{Get first column and enter in loop}
Col := ColumnStart[Pass];
Dest := pChar(Longint(Dest) + Col * 3);
repeat
{Copy this row}
Byte(Dest^) := Owner.GammaTable[pByte(Longint(Src) + 4)^]; inc(Dest);
Byte(Dest^) := Owner.GammaTable[pByte(Longint(Src) + 2)^]; inc(Dest);
Byte(Dest^) := Owner.GammaTable[pByte(Longint(Src) )^]; inc(Dest);
{$IFDEF Store16bits}
{Copy extra pixel values}
Byte(Extra^) := fOwner.GammaTable[pByte(Longint(Src) + 5)^]; inc(Extra);
Byte(Extra^) := fOwner.GammaTable[pByte(Longint(Src) + 3)^]; inc(Extra);
Byte(Extra^) := fOwner.GammaTable[pByte(Longint(Src) + 1)^]; inc(Extra);
{$ENDIF}
{Move to next column}
inc(Src, 6);
inc(Dest, ColumnIncrement[Pass] * 3 - 3);
inc(Col, ColumnIncrement[Pass]);
until Col >= ImageWidth;
end;
{Copy mages with palette using bit depths 1, 4 or 8}
procedure TChunkIDAT.CopyInterlacedPalette148(const Pass: Byte;
Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
const
BitTable: Array[1..8] of Integer = ($1, $3, 0, $F, 0, 0, 0, $FF);
StartBit: Array[1..8] of Integer = (7 , 0 , 0, 4, 0, 0, 0, 0);
var
CurBit, Col: Integer;
Dest2: PChar;
begin
{Get first column and enter in loop}
Col := ColumnStart[Pass];
repeat
{Copy data}
CurBit := StartBit[Header.BitDepth];
repeat
{Adjust pointer to pixel byte bounds}
Dest2 := pChar(Longint(Dest) + (Header.BitDepth * Col) div 8);
{Copy data}
Byte(Dest2^) := Byte(Dest2^) or
( ((Byte(Src^) shr CurBit) and BitTable[Header.BitDepth])
shl (StartBit[Header.BitDepth] - (Col * Header.BitDepth mod 8)));
{Move to next column}
inc(Col, ColumnIncrement[Pass]);
{Will read next bits}
dec(CurBit, Header.BitDepth);
until CurBit < 0;
{Move to next byte in source}
inc(Src);
until Col >= ImageWidth;
end;
{Copy mages with palette using bit depth 2}
procedure TChunkIDAT.CopyInterlacedPalette2(const Pass: Byte; Src, Dest,
Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
var
CurBit, Col: Integer;
Dest2: PChar;
begin
{Get first column and enter in loop}
Col := ColumnStart[Pass];
repeat
{Copy data}
CurBit := 6;
repeat
{Adjust pointer to pixel byte bounds}
Dest2 := pChar(Longint(Dest) + Col div 2);
{Copy data}
Byte(Dest2^) := Byte(Dest2^) or (((Byte(Src^) shr CurBit) and $3)
shl (4 - (4 * Col) mod 8));
{Move to next column}
inc(Col, ColumnIncrement[Pass]);
{Will read next bits}
dec(CurBit, 2);
until CurBit < 0;
{Move to next byte in source}
inc(Src);
until Col >= ImageWidth;
end;
{Copy mages with grayscale using bit depth 2}
procedure TChunkIDAT.CopyInterlacedGray2(const Pass: Byte;
Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
var
CurBit, Col: Integer;
Dest2: PChar;
begin
{Get first column and enter in loop}
Col := ColumnStart[Pass];
repeat
{Copy data}
CurBit := 6;
repeat
{Adjust pointer to pixel byte bounds}
Dest2 := pChar(Longint(Dest) + Col div 2);
{Copy data}
Byte(Dest2^) := Byte(Dest2^) or ((((Byte(Src^) shr CurBit) shl 2) and $F)
shl (4 - (Col*4) mod 8));
{Move to next column}
inc(Col, ColumnIncrement[Pass]);
{Will read next bits}
dec(CurBit, 2);
until CurBit < 0;
{Move to next byte in source}
inc(Src);
until Col >= ImageWidth;
end;
{Copy mages with palette using 2 bytes for each pixel}
procedure TChunkIDAT.CopyInterlacedGrayscale16(const Pass: Byte;
Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
var
Col: Integer;
begin
{Get first column and enter in loop}
Col := ColumnStart[Pass];
Dest := pChar(Longint(Dest) + Col);
repeat
{Copy this row}
Dest^ := Src^; inc(Dest);
{$IFDEF Store16bits}
Extra^ := pChar(Longint(Src) + 1)^; inc(Extra);
{$ENDIF}
{Move to next column}
inc(Src, 2);
inc(Dest, ColumnIncrement[Pass] - 1);
inc(Col, ColumnIncrement[Pass]);
until Col >= ImageWidth;
end;
{Decodes interlaced RGB alpha with 1 byte for each sample}
procedure TChunkIDAT.CopyInterlacedRGBAlpha8(const Pass: Byte;
Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
var
Col: Integer;
begin
{Get first column and enter in loop}
Col := ColumnStart[Pass];
Dest := pChar(Longint(Dest) + Col * 3);
Trans := pChar(Longint(Trans) + Col);
repeat
{Copy this row and alpha value}
Trans^ := pChar(Longint(Src) + 3)^;
Byte(Dest^) := fOwner.GammaTable[pByte(Longint(Src) + 2)^]; inc(Dest);
Byte(Dest^) := fOwner.GammaTable[pByte(Longint(Src) + 1)^]; inc(Dest);
Byte(Dest^) := fOwner.GammaTable[pByte(Longint(Src) )^]; inc(Dest);
{Move to next column}
inc(Src, 4);
inc(Dest, ColumnIncrement[Pass] * 3 - 3);
inc(Trans, ColumnIncrement[Pass]);
inc(Col, ColumnIncrement[Pass]);
until Col >= ImageWidth;
end;
{Decodes interlaced RGB alpha with 2 bytes for each sample}
procedure TChunkIDAT.CopyInterlacedRGBAlpha16(const Pass: Byte;
Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
var
Col: Integer;
begin
{Get first column and enter in loop}
Col := ColumnStart[Pass];
Dest := pChar(Longint(Dest) + Col * 3);
Trans := pChar(Longint(Trans) + Col);
repeat
{Copy this row and alpha value}
Trans^ := pChar(Longint(Src) + 6)^;
Byte(Dest^) := fOwner.GammaTable[pByte(Longint(Src) + 4)^]; inc(Dest);
Byte(Dest^) := fOwner.GammaTable[pByte(Longint(Src) + 2)^]; inc(Dest);
Byte(Dest^) := fOwner.GammaTable[pByte(Longint(Src) )^]; inc(Dest);
{$IFDEF Store16bits}
{Copy extra pixel values}
Byte(Extra^) := fOwner.GammaTable[pByte(Longint(Src) + 5)^]; inc(Extra);
Byte(Extra^) := fOwner.GammaTable[pByte(Longint(Src) + 3)^]; inc(Extra);
Byte(Extra^) := fOwner.GammaTable[pByte(Longint(Src) + 1)^]; inc(Extra);
{$ENDIF}
{Move to next column}
inc(Src, 8);
inc(Dest, ColumnIncrement[Pass] * 3 - 3);
inc(Trans, ColumnIncrement[Pass]);
inc(Col, ColumnIncrement[Pass]);
until Col >= ImageWidth;
end;
{Decodes 8 bit grayscale image followed by an alpha sample}
procedure TChunkIDAT.CopyInterlacedGrayscaleAlpha8(const Pass: Byte;
Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
var
Col: Integer;
begin
{Get first column, pointers to the data and enter in loop}
Col := ColumnStart[Pass];
Dest := pChar(Longint(Dest) + Col);
Trans := pChar(Longint(Trans) + Col);
repeat
{Copy this grayscale value and alpha}
Dest^ := Src^; inc(Src);
Trans^ := Src^; inc(Src);
{Move to next column}
inc(Dest, ColumnIncrement[Pass]);
inc(Trans, ColumnIncrement[Pass]);
inc(Col, ColumnIncrement[Pass]);
until Col >= ImageWidth;
end;
{Decodes 16 bit grayscale image followed by an alpha sample}
procedure TChunkIDAT.CopyInterlacedGrayscaleAlpha16(const Pass: Byte;
Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
var
Col: Integer;
begin
{Get first column, pointers to the data and enter in loop}
Col := ColumnStart[Pass];
Dest := pChar(Longint(Dest) + Col);
Trans := pChar(Longint(Trans) + Col);
repeat
{$IFDEF Store16bits}
Extra^ := pChar(Longint(Src) + 1)^; inc(Extra);
{$ENDIF}
{Copy this grayscale value and alpha, transforming 16 bits into 8}
Dest^ := Src^; inc(Src, 2);
Trans^ := Src^; inc(Src, 2);
{Move to next column}
inc(Dest, ColumnIncrement[Pass]);
inc(Trans, ColumnIncrement[Pass]);
inc(Col, ColumnIncrement[Pass]);
until Col >= ImageWidth;
end;
{Decodes an interlaced image}
procedure TChunkIDAT.DecodeInterlacedAdam7(Stream: TStream;
var ZLIBStream: TZStreamRec2; const Size: Integer; var crcfile: Cardinal);
var
CurrentPass: Byte;
PixelsThisRow: Integer;
CurrentRow: Integer;
Trans, Data{$IFDEF Store16bits}, Extra{$ENDIF}: pChar;
CopyProc: procedure(const Pass: Byte; Src, Dest,
Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar) of object;
begin
CopyProc := nil; {Initialize}
{Determine method to copy the image data}
case Header.ColorType of
{R, G, B values for each pixel}
COLOR_RGB:
case Header.BitDepth of
8: CopyProc := CopyInterlacedRGB8;
16: CopyProc := CopyInterlacedRGB16;
end {case Header.BitDepth};
{Palette}
COLOR_PALETTE, COLOR_GRAYSCALE:
case Header.BitDepth of
1, 4, 8: CopyProc := CopyInterlacedPalette148;
2 : if Header.ColorType = COLOR_PALETTE then
CopyProc := CopyInterlacedPalette2
else
CopyProc := CopyInterlacedGray2;
16 : CopyProc := CopyInterlacedGrayscale16;
end;
{RGB followed by alpha}
COLOR_RGBALPHA:
case Header.BitDepth of
8: CopyProc := CopyInterlacedRGBAlpha8;
16: CopyProc := CopyInterlacedRGBAlpha16;
end;
{Grayscale followed by alpha}
COLOR_GRAYSCALEALPHA:
case Header.BitDepth of
8: CopyProc := CopyInterlacedGrayscaleAlpha8;
16: CopyProc := CopyInterlacedGrayscaleAlpha16;
end;
end {case Header.ColorType};
{Adam7 method has 7 passes to make the final image}
FOR CurrentPass := 0 TO 6 DO
begin
{Calculates the number of pixels and bytes for this pass row}
PixelsThisRow := (ImageWidth - ColumnStart[CurrentPass] +
ColumnIncrement[CurrentPass] - 1) div ColumnIncrement[CurrentPass];
Row_Bytes := BytesForPixels(PixelsThisRow, Header.ColorType,
Header.BitDepth);
{Clear buffer for this pass}
ZeroMemory(Row_Buffer[not RowUsed], Row_Bytes);
{Get current row index}
CurrentRow := RowStart[CurrentPass];
{Get a pointer to the current row image data}
Data := Ptr(Longint(Header.ImageData) + Header.BytesPerRow *
(ImageHeight - 1 - CurrentRow));
Trans := Ptr(Longint(Header.ImageAlpha) + ImageWidth * CurrentRow);
{$IFDEF Store16bits}
Extra := Ptr(Longint(Header.ExtraImageData) + Header.BytesPerRow *
(ImageHeight - 1 - CurrentRow));
{$ENDIF}
if Row_Bytes > 0 then {There must have bytes for this interlaced pass}
while CurrentRow < ImageHeight do
begin
{Reads this line and filter}
if IDATZlibRead(ZLIBStream, @Row_Buffer[RowUsed][0], Row_Bytes + 1,
EndPos, CRCFile) = 0 then break;
FilterRow;
{Copy image data}
CopyProc(CurrentPass, @Row_Buffer[RowUsed][1], Data, Trans
{$IFDEF Store16bits}, Extra{$ENDIF});
{Use the other RowBuffer item}
RowUsed := not RowUsed;
{Move to the next row}
inc(CurrentRow, RowIncrement[CurrentPass]);
{Move pointer to the next line}
dec(Data, RowIncrement[CurrentPass] * Header.BytesPerRow);
inc(Trans, RowIncrement[CurrentPass] * ImageWidth);
{$IFDEF Store16bits}
dec(Extra, RowIncrement[CurrentPass] * Header.BytesPerRow);
{$ENDIF}
end {while CurrentRow < ImageHeight};
end {FOR CurrentPass};
end;
{Copy 8 bits RGB image}
procedure TChunkIDAT.CopyNonInterlacedRGB8(
Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
var
I: Integer;
begin
FOR I := 1 TO ImageWidth DO
begin
{Copy pixel values}
Byte(Dest^) := fOwner.GammaTable[pByte(Longint(Src) + 2)^]; inc(Dest);
Byte(Dest^) := fOwner.GammaTable[pByte(Longint(Src) + 1)^]; inc(Dest);
Byte(Dest^) := fOwner.GammaTable[pByte(Longint(Src) )^]; inc(Dest);
{Move to next pixel}
inc(Src, 3);
end {for I}
end;
{Copy 16 bits RGB image}
procedure TChunkIDAT.CopyNonInterlacedRGB16(
Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
var
I: Integer;
begin
FOR I := 1 TO ImageWidth DO
begin
//Since windows does not supports 2 bytes for
//each R, G, B value, the method will read only 1 byte from it
{Copy pixel values}
Byte(Dest^) := fOwner.GammaTable[pByte(Longint(Src) + 4)^]; inc(Dest);
Byte(Dest^) := fOwner.GammaTable[pByte(Longint(Src) + 2)^]; inc(Dest);
Byte(Dest^) := fOwner.GammaTable[pByte(Longint(Src) )^]; inc(Dest);
{$IFDEF Store16bits}
{Copy extra pixel values}
Byte(Extra^) := fOwner.GammaTable[pByte(Longint(Src) + 5)^]; inc(Extra);
Byte(Extra^) := fOwner.GammaTable[pByte(Longint(Src) + 3)^]; inc(Extra);
Byte(Extra^) := fOwner.GammaTable[pByte(Longint(Src) + 1)^]; inc(Extra);
{$ENDIF}
{Move to next pixel}
inc(Src, 6);
end {for I}
end;
{Copy types using palettes (1, 4 or 8 bits per pixel)}
procedure TChunkIDAT.CopyNonInterlacedPalette148(
Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
begin
{It's simple as copying the data}
CopyMemory(Dest, Src, Row_Bytes);
end;
{Copy grayscale types using 2 bits for each pixel}
procedure TChunkIDAT.CopyNonInterlacedGray2(
Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
var
i: Integer;
begin
{2 bits is not supported, this routine will converted into 4 bits}
FOR i := 1 TO Row_Bytes do
begin
Byte(Dest^) := ((Byte(Src^) shr 2) and $F) or ((Byte(Src^)) and $F0); inc(Dest);
Byte(Dest^) := ((Byte(Src^) shl 2) and $F) or ((Byte(Src^) shl 4) and $F0); inc(Dest);
inc(Src);
end {FOR i}
end;
{Copy types using palette with 2 bits for each pixel}
procedure TChunkIDAT.CopyNonInterlacedPalette2(
Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
var
i: Integer;
begin
{2 bits is not supported, this routine will converted into 4 bits}
FOR i := 1 TO Row_Bytes do
begin
Byte(Dest^) := ((Byte(Src^) shr 4) and $3) or ((Byte(Src^) shr 2) and $30); inc(Dest);
Byte(Dest^) := (Byte(Src^) and $3) or ((Byte(Src^) shl 2) and $30); inc(Dest);
inc(Src);
end {FOR i}
end;
{Copy grayscale images with 16 bits}
procedure TChunkIDAT.CopyNonInterlacedGrayscale16(
Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
var
I: Integer;
begin
FOR I := 1 TO ImageWidth DO
begin
{Windows does not supports 16 bits for each pixel in grayscale}
{mode, so reduce to 8}
Dest^ := Src^; inc(Dest);
{$IFDEF Store16bits}
Extra^ := pChar(Longint(Src) + 1)^; inc(Extra);
{$ENDIF}
{Move to next pixel}
inc(Src, 2);
end {for I}
end;
{Copy 8 bits per sample RGB images followed by an alpha byte}
procedure TChunkIDAT.CopyNonInterlacedRGBAlpha8(
Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
var
i: Integer;
begin
FOR I := 1 TO ImageWidth DO
begin
{Copy pixel values and transparency}
Trans^ := pChar(Longint(Src) + 3)^;
Byte(Dest^) := fOwner.GammaTable[pByte(Longint(Src) + 2)^]; inc(Dest);
Byte(Dest^) := fOwner.GammaTable[pByte(Longint(Src) + 1)^]; inc(Dest);
Byte(Dest^) := fOwner.GammaTable[pByte(Longint(Src) )^]; inc(Dest);
{Move to next pixel}
inc(Src, 4); inc(Trans);
end {for I}
end;
{Copy 16 bits RGB image with alpha using 2 bytes for each sample}
procedure TChunkIDAT.CopyNonInterlacedRGBAlpha16(
Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
var
I: Integer;
begin
FOR I := 1 TO ImageWidth DO
begin
//Copy rgb and alpha values (transforming from 16 bits to 8 bits)
{Copy pixel values}
Trans^ := pChar(Longint(Src) + 6)^;
Byte(Dest^) := fOwner.GammaTable[pByte(Longint(Src) + 4)^]; inc(Dest);
Byte(Dest^) := fOwner.GammaTable[pByte(Longint(Src) + 2)^]; inc(Dest);
Byte(Dest^) := fOwner.GammaTable[pByte(Longint(Src) )^]; inc(Dest);
{$IFDEF Store16bits}
{Copy extra pixel values}
Byte(Extra^) := fOwner.GammaTable[pByte(Longint(Src) + 5)^]; inc(Extra);
Byte(Extra^) := fOwner.GammaTable[pByte(Longint(Src) + 3)^]; inc(Extra);
Byte(Extra^) := fOwner.GammaTable[pByte(Longint(Src) + 1)^]; inc(Extra);
{$ENDIF}
{Move to next pixel}
inc(Src, 8); inc(Trans);
end {for I}
end;
{Copy 8 bits per sample grayscale followed by alpha}
procedure TChunkIDAT.CopyNonInterlacedGrayscaleAlpha8(
Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
var
I: Integer;
begin
FOR I := 1 TO ImageWidth DO
begin
{Copy alpha value and then gray value}
Dest^ := Src^; inc(Src);
Trans^ := Src^; inc(Src);
inc(Dest); inc(Trans);
end;
end;
{Copy 16 bits per sample grayscale followed by alpha}
procedure TChunkIDAT.CopyNonInterlacedGrayscaleAlpha16(
Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
var
I: Integer;
begin
FOR I := 1 TO ImageWidth DO
begin
{Copy alpha value and then gray value}
{$IFDEF Store16bits}
Extra^ := pChar(Longint(Src) + 1)^; inc(Extra);
{$ENDIF}
Dest^ := Src^; inc(Src, 2);
Trans^ := Src^; inc(Src, 2);
inc(Dest); inc(Trans);
end;
end;
{Decode non interlaced image}
procedure TChunkIDAT.DecodeNonInterlaced(Stream: TStream;
var ZLIBStream: TZStreamRec2; const Size: Integer; var crcfile: Cardinal);
var
j: Cardinal;
Trans, Data{$IFDEF Store16bits}, Extra{$ENDIF}: pChar;
CopyProc: procedure(
Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar) of object;
begin
CopyProc := nil; {Initialize}
{Determines the method to copy the image data}
case Header.ColorType of
{R, G, B values}
COLOR_RGB:
case Header.BitDepth of
8: CopyProc := CopyNonInterlacedRGB8;
16: CopyProc := CopyNonInterlacedRGB16;
end;
{Types using palettes}
COLOR_PALETTE, COLOR_GRAYSCALE:
case Header.BitDepth of
1, 4, 8: CopyProc := CopyNonInterlacedPalette148;
2 : if Header.ColorType = COLOR_PALETTE then
CopyProc := CopyNonInterlacedPalette2
else
CopyProc := CopyNonInterlacedGray2;
16 : CopyProc := CopyNonInterlacedGrayscale16;
end;
{R, G, B followed by alpha}
COLOR_RGBALPHA:
case Header.BitDepth of
8 : CopyProc := CopyNonInterlacedRGBAlpha8;
16 : CopyProc := CopyNonInterlacedRGBAlpha16;
end;
{Grayscale followed by alpha}
COLOR_GRAYSCALEALPHA:
case Header.BitDepth of
8 : CopyProc := CopyNonInterlacedGrayscaleAlpha8;
16 : CopyProc := CopyNonInterlacedGrayscaleAlpha16;
end;
end;
{Get the image data pointer}
Longint(Data) := Longint(Header.ImageData) +
Header.BytesPerRow * (ImageHeight - 1);
Trans := Header.ImageAlpha;
{$IFDEF Store16bits}
Longint(Extra) := Longint(Header.ExtraImageData) +
Header.BytesPerRow * (ImageHeight - 1);
{$ENDIF}
{Reads each line}
FOR j := 0 to ImageHeight - 1 do
begin
{Read this line Row_Buffer[RowUsed][0] if the filter type for this line}
if IDATZlibRead(ZLIBStream, @Row_Buffer[RowUsed][0], Row_Bytes + 1, EndPos,
CRCFile) = 0 then break;
{Filter the current row}
FilterRow;
{Copies non interlaced row to image}
CopyProc(@Row_Buffer[RowUsed][1], Data, Trans{$IFDEF Store16bits}, Extra
{$ENDIF});
{Invert line used}
RowUsed := not RowUsed;
dec(Data, Header.BytesPerRow);
{$IFDEF Store16bits}dec(Extra, Header.BytesPerRow);{$ENDIF}
inc(Trans, ImageWidth);
end {for I};
end;
{Filter the current line}
procedure TChunkIDAT.FilterRow;
var
pp: Byte;
vv, left, above, aboveleft: Integer;
Col: Cardinal;
begin
{Test the filter}
case Row_Buffer[RowUsed]^[0] of
{No filtering for this line}
FILTER_NONE: begin end;
{AND 255 serves only to never let the result be larger than one byte}
{Sub filter}
FILTER_SUB:
FOR Col := Offset + 1 to Row_Bytes DO
Row_Buffer[RowUsed][Col] := (Row_Buffer[RowUsed][Col] +
Row_Buffer[RowUsed][Col - Offset]) and 255;
{Up filter}
FILTER_UP:
FOR Col := 1 to Row_Bytes DO
Row_Buffer[RowUsed][Col] := (Row_Buffer[RowUsed][Col] +
Row_Buffer[not RowUsed][Col]) and 255;
{Average filter}
FILTER_AVERAGE:
FOR Col := 1 to Row_Bytes DO
begin
{Obtains up and left pixels}
above := Row_Buffer[not RowUsed][Col];
if col - 1 < Offset then
left := 0
else
Left := Row_Buffer[RowUsed][Col - Offset];
{Calculates}
Row_Buffer[RowUsed][Col] := (Row_Buffer[RowUsed][Col] +
(left + above) div 2) and 255;
end;
{Paeth filter}
FILTER_PAETH:
begin
{Initialize}
left := 0;
aboveleft := 0;
{Test each byte}
FOR Col := 1 to Row_Bytes DO
begin
{Obtains above pixel}
above := Row_Buffer[not RowUsed][Col];
{Obtains left and top-left pixels}
if (col - 1 >= offset) Then
begin
left := row_buffer[RowUsed][col - offset];
aboveleft := row_buffer[not RowUsed][col - offset];
end;
{Obtains current pixel and paeth predictor}
vv := row_buffer[RowUsed][Col];
pp := PaethPredictor(left, above, aboveleft);
{Calculates}
Row_Buffer[RowUsed][Col] := (pp + vv) and $FF;
end {for};
end;
end {case};
end;
{Reads the image data from the stream}
function TChunkIDAT.LoadFromStream(Stream: TStream; const ChunkName: TChunkName;
Size: Integer): Boolean;
var
ZLIBStream: TZStreamRec2;
CRCCheck,
CRCFile : Cardinal;
begin
{Get pointer to the header chunk}
Header := Owner.Chunks.Item[0] as TChunkIHDR;
{Build palette if necessary}
if Header.HasPalette then PreparePalette();
{Copy image width and height}
ImageWidth := Header.Width;
ImageHeight := Header.Height;
{Initialize to calculate CRC}
{$IFDEF CheckCRC}
CRCFile := update_crc($ffffffff, @ChunkName[0], 4);
{$ENDIF}
Owner.GetPixelInfo(Row_Bytes, Offset); {Obtain line information}
ZLIBStream := ZLIBInitInflate(Stream); {Initializes decompression}
{Calculate ending position for the current IDAT chunk}
EndPos := Stream.Position + Size;
{Allocate memory}
GetMem(Row_Buffer[false], Row_Bytes + 1);
GetMem(Row_Buffer[true], Row_Bytes + 1);
ZeroMemory(Row_Buffer[false], Row_bytes + 1);
{Set the variable to alternate the Row_Buffer item to use}
RowUsed := TRUE;
{Call special methods for the different interlace methods}
case Owner.InterlaceMethod of
imNone: DecodeNonInterlaced(stream, ZLIBStream, Size, crcfile);
imAdam7: DecodeInterlacedAdam7(stream, ZLIBStream, size, crcfile);
end;
{Free memory}
ZLIBTerminateInflate(ZLIBStream); {Terminates decompression}
FreeMem(Row_Buffer[False], Row_Bytes + 1);
FreeMem(Row_Buffer[True], Row_Bytes + 1);
{Now checks CRC}
Stream.Read(CRCCheck, 4);
{$IFDEF CheckCRC}
CRCFile := CRCFile xor $ffffffff;
CRCCheck := ByteSwap(CRCCheck);
Result := CRCCheck = CRCFile;
{Handle CRC error}
if not Result then
begin
{In case it coult not load chunk}
Owner.RaiseError(EPngInvalidCRC, EPngInvalidCRCText);
exit;
end;
{$ELSE}Result := TRUE; {$ENDIF}
end;
const
IDATHeader: Array[0..3] of char = ('I', 'D', 'A', 'T');
BUFFER = 5;
{Saves the IDAT chunk to a stream}
function TChunkIDAT.SaveToStream(Stream: TStream): Boolean;
var
ZLIBStream : TZStreamRec2;
begin
{Get pointer to the header chunk}
Header := Owner.Chunks.Item[0] as TChunkIHDR;
{Copy image width and height}
ImageWidth := Header.Width;
ImageHeight := Header.Height;
Owner.GetPixelInfo(Row_Bytes, Offset); {Obtain line information}
{Allocate memory}
GetMem(Encode_Buffer[BUFFER], Row_Bytes);
ZeroMemory(Encode_Buffer[BUFFER], Row_Bytes);
{Allocate buffers for the filters selected}
{Filter none will always be calculated to the other filters to work}
GetMem(Encode_Buffer[FILTER_NONE], Row_Bytes);
ZeroMemory(Encode_Buffer[FILTER_NONE], Row_Bytes);
if pfSub in Owner.Filters then
GetMem(Encode_Buffer[FILTER_SUB], Row_Bytes);
if pfUp in Owner.Filters then
GetMem(Encode_Buffer[FILTER_UP], Row_Bytes);
if pfAverage in Owner.Filters then
GetMem(Encode_Buffer[FILTER_AVERAGE], Row_Bytes);
if pfPaeth in Owner.Filters then
GetMem(Encode_Buffer[FILTER_PAETH], Row_Bytes);
{Initialize ZLIB}
ZLIBStream := ZLIBInitDeflate(Stream, Owner.fCompressionLevel,
Owner.MaxIdatSize);
{Write data depending on the interlace method}
case Owner.InterlaceMethod of
imNone: EncodeNonInterlaced(stream, ZLIBStream);
imAdam7: EncodeInterlacedAdam7(stream, ZLIBStream);
end;
{Terminates ZLIB}
ZLIBTerminateDeflate(ZLIBStream);
{Release allocated memory}
FreeMem(Encode_Buffer[BUFFER], Row_Bytes);
FreeMem(Encode_Buffer[FILTER_NONE], Row_Bytes);
if pfSub in Owner.Filters then
FreeMem(Encode_Buffer[FILTER_SUB], Row_Bytes);
if pfUp in Owner.Filters then
FreeMem(Encode_Buffer[FILTER_UP], Row_Bytes);
if pfAverage in Owner.Filters then
FreeMem(Encode_Buffer[FILTER_AVERAGE], Row_Bytes);
if pfPaeth in Owner.Filters then
FreeMem(Encode_Buffer[FILTER_PAETH], Row_Bytes);
{Everything went ok}
Result := True;
end;
{Writes the IDAT using the settings}
procedure WriteIDAT(Stream: TStream; Data: Pointer; const Length: Cardinal);
var
ChunkLen, CRC: Cardinal;
begin
{Writes IDAT header}
ChunkLen := ByteSwap(Length);
Stream.Write(ChunkLen, 4); {Chunk length}
Stream.Write(IDATHeader[0], 4); {Idat header}
CRC := update_crc($ffffffff, @IDATHeader[0], 4); {Crc part for header}
{Writes IDAT data and calculates CRC for data}
Stream.Write(Data^, Length);
CRC := Byteswap(update_crc(CRC, Data, Length) xor $ffffffff);
{Writes final CRC}
Stream.Write(CRC, 4);
end;
{Compress and writes IDAT chunk data}
procedure TChunkIDAT.IDATZlibWrite(var ZLIBStream: TZStreamRec2;
Buffer: Pointer; const Length: Cardinal);
begin
with ZLIBStream, ZLIBStream.ZLIB do
begin
{Set data to be compressed}
next_in := Buffer;
avail_in := Length;
{Compress all the data avaliable to compress}
while avail_in > 0 do
begin
deflate(ZLIB, Z_NO_FLUSH);
{The whole buffer was used, save data to stream and restore buffer}
if avail_out = 0 then
begin
{Writes this IDAT chunk}
WriteIDAT(fStream, Data, ZLIBAllocate);
{Restore buffer}
next_out := Data;
avail_out := ZLIBAllocate;
end {if avail_out = 0};
end {while avail_in};
end {with ZLIBStream, ZLIBStream.ZLIB}
end;
{Finishes compressing data to write IDAT chunk}
procedure TChunkIDAT.FinishIDATZlib(var ZLIBStream: TZStreamRec2);
begin
with ZLIBStream, ZLIBStream.ZLIB do
begin
{Set data to be compressed}
next_in := nil;
avail_in := 0;
while deflate(ZLIB,Z_FINISH) <> Z_STREAM_END do
begin
{Writes this IDAT chunk}
WriteIDAT(fStream, Data, ZLIBAllocate - avail_out);
{Re-update buffer}
next_out := Data;
avail_out := ZLIBAllocate;
end;
if avail_out < ZLIBAllocate then
{Writes final IDAT}
WriteIDAT(fStream, Data, ZLIBAllocate - avail_out);
end {with ZLIBStream, ZLIBStream.ZLIB};
end;
{Copy memory to encode RGB image with 1 byte for each color sample}
procedure TChunkIDAT.EncodeNonInterlacedRGB8(Src, Dest, Trans: pChar);
var
I: Integer;
begin
FOR I := 1 TO ImageWidth DO
begin
{Copy pixel values}
Byte(Dest^) := fOwner.InverseGamma[pByte(Longint(Src) + 2)^]; inc(Dest);
Byte(Dest^) := fOwner.InverseGamma[pByte(Longint(Src) + 1)^]; inc(Dest);
Byte(Dest^) := fOwner.InverseGamma[pByte(Longint(Src) )^]; inc(Dest);
{Move to next pixel}
inc(Src, 3);
end {for I}
end;
{Copy memory to encode RGB images with 16 bits for each color sample}
procedure TChunkIDAT.EncodeNonInterlacedRGB16(Src, Dest, Trans: pChar);
var
I: Integer;
begin
FOR I := 1 TO ImageWidth DO
begin
//Now we copy from 1 byte for each sample stored to a 2 bytes (or 1 word)
//for sample
{Copy pixel values}
pWORD(Dest)^ := fOwner.InverseGamma[pByte(Longint(Src) + 2)^]; inc(Dest, 2);
pWORD(Dest)^ := fOwner.InverseGamma[pByte(Longint(Src) + 1)^]; inc(Dest, 2);
pWORD(Dest)^ := fOwner.InverseGamma[pByte(Longint(Src) )^]; inc(Dest, 2);
{Move to next pixel}
inc(Src, 3);
end {for I}
end;
{Copy memory to encode types using palettes (1, 4 or 8 bits per pixel)}
procedure TChunkIDAT.EncodeNonInterlacedPalette148(Src, Dest, Trans: pChar);
begin
{It's simple as copying the data}
CopyMemory(Dest, Src, Row_Bytes);
end;
{Copy memory to encode grayscale images with 2 bytes for each sample}
procedure TChunkIDAT.EncodeNonInterlacedGrayscale16(Src, Dest, Trans: pChar);
var
I: Integer;
begin
FOR I := 1 TO ImageWidth DO
begin
//Now we copy from 1 byte for each sample stored to a 2 bytes (or 1 word)
//for sample
pWORD(Dest)^ := pByte(Longint(Src))^; inc(Dest, 2);
{Move to next pixel}
inc(Src);
end {for I}
end;
{Encode images using RGB followed by an alpha value using 1 byte for each}
procedure TChunkIDAT.EncodeNonInterlacedRGBAlpha8(Src, Dest, Trans: pChar);
var
i: Integer;
begin
{Copy the data to the destination, including data from Trans pointer}
FOR i := 1 TO ImageWidth do
begin
Byte(Dest^) := Owner.InverseGamma[PByte(Longint(Src) + 2)^]; inc(Dest);
Byte(Dest^) := Owner.InverseGamma[PByte(Longint(Src) + 1)^]; inc(Dest);
Byte(Dest^) := Owner.InverseGamma[PByte(Longint(Src) )^]; inc(Dest);
Dest^ := Trans^; inc(Dest);
inc(Src, 3); inc(Trans);
end {for i};
end;
{Encode images using RGB followed by an alpha value using 2 byte for each}
procedure TChunkIDAT.EncodeNonInterlacedRGBAlpha16(Src, Dest, Trans: pChar);
var
i: Integer;
begin
{Copy the data to the destination, including data from Trans pointer}
FOR i := 1 TO ImageWidth do
begin
pWord(Dest)^ := Owner.InverseGamma[PByte(Longint(Src) + 2)^]; inc(Dest, 2);
pWord(Dest)^ := Owner.InverseGamma[PByte(Longint(Src) + 1)^]; inc(Dest, 2);
pWord(Dest)^ := Owner.InverseGamma[PByte(Longint(Src) )^]; inc(Dest, 2);
pWord(Dest)^ := PByte(Longint(Trans) )^; inc(Dest, 2);
inc(Src, 3); inc(Trans);
end {for i};
end;
{Encode grayscale images followed by an alpha value using 1 byte for each}
procedure TChunkIDAT.EncodeNonInterlacedGrayscaleAlpha8(
Src, Dest, Trans: pChar);
var
i: Integer;
begin
{Copy the data to the destination, including data from Trans pointer}
FOR i := 1 TO ImageWidth do
begin
Dest^ := Src^; inc(Dest);
Dest^ := Trans^; inc(Dest);
inc(Src); inc(Trans);
end {for i};
end;
{Encode grayscale images followed by an alpha value using 2 byte for each}
procedure TChunkIDAT.EncodeNonInterlacedGrayscaleAlpha16(
Src, Dest, Trans: pChar);
var
i: Integer;
begin
{Copy the data to the destination, including data from Trans pointer}
FOR i := 1 TO ImageWidth do
begin
pWord(Dest)^ := pByte(Src)^; inc(Dest, 2);
pWord(Dest)^ := pByte(Trans)^; inc(Dest, 2);
inc(Src); inc(Trans);
end {for i};
end;
{Encode non interlaced images}
procedure TChunkIDAT.EncodeNonInterlaced(Stream: TStream;
var ZLIBStream: TZStreamRec2);
var
{Current line}
j: Cardinal;
{Pointers to image data}
Data, Trans: PChar;
{Filter used for this line}
Filter: Byte;
{Method which will copy the data into the buffer}
CopyProc: procedure(Src, Dest, Trans: pChar) of object;
begin
CopyProc := nil; {Initialize to avoid warnings}
{Defines the method to copy the data to the buffer depending on}
{the image parameters}
case Header.ColorType of
{R, G, B values}
COLOR_RGB:
case Header.BitDepth of
8: CopyProc := EncodeNonInterlacedRGB8;
16: CopyProc := EncodeNonInterlacedRGB16;
end;
{Palette and grayscale values}
COLOR_GRAYSCALE, COLOR_PALETTE:
case Header.BitDepth of
1, 4, 8: CopyProc := EncodeNonInterlacedPalette148;
16: CopyProc := EncodeNonInterlacedGrayscale16;
end;
{RGB with a following alpha value}
COLOR_RGBALPHA:
case Header.BitDepth of
8: CopyProc := EncodeNonInterlacedRGBAlpha8;
16: CopyProc := EncodeNonInterlacedRGBAlpha16;
end;
{Grayscale images followed by an alpha}
COLOR_GRAYSCALEALPHA:
case Header.BitDepth of
8: CopyProc := EncodeNonInterlacedGrayscaleAlpha8;
16: CopyProc := EncodeNonInterlacedGrayscaleAlpha16;
end;
end {case Header.ColorType};
{Get the image data pointer}
Longint(Data) := Longint(Header.ImageData) +
Header.BytesPerRow * (ImageHeight - 1);
Trans := Header.ImageAlpha;
{Writes each line}
FOR j := 0 to ImageHeight - 1 do
begin
{Copy data into buffer}
CopyProc(Data, @Encode_Buffer[BUFFER][0], Trans);
{Filter data}
Filter := FilterToEncode;
{Compress data}
IDATZlibWrite(ZLIBStream, @Filter, 1);
IDATZlibWrite(ZLIBStream, @Encode_Buffer[Filter][0], Row_Bytes);
{Adjust pointers to the actual image data}
dec(Data, Header.BytesPerRow);
inc(Trans, ImageWidth);
end;
{Compress and finishes copying the remaining data}
FinishIDATZlib(ZLIBStream);
end;
{Copy memory to encode interlaced images using RGB value with 1 byte for}
{each color sample}
procedure TChunkIDAT.EncodeInterlacedRGB8(const Pass: Byte;
Src, Dest, Trans: pChar);
var
Col: Integer;
begin
{Get first column and enter in loop}
Col := ColumnStart[Pass];
Src := pChar(Longint(Src) + Col * 3);
repeat
{Copy this row}
Byte(Dest^) := fOwner.InverseGamma[pByte(Longint(Src) + 2)^]; inc(Dest);
Byte(Dest^) := fOwner.InverseGamma[pByte(Longint(Src) + 1)^]; inc(Dest);
Byte(Dest^) := fOwner.InverseGamma[pByte(Longint(Src) )^]; inc(Dest);
{Move to next column}
inc(Src, ColumnIncrement[Pass] * 3);
inc(Col, ColumnIncrement[Pass]);
until Col >= ImageWidth;
end;
{Copy memory to encode interlaced RGB images with 2 bytes each color sample}
procedure TChunkIDAT.EncodeInterlacedRGB16(const Pass: Byte;
Src, Dest, Trans: pChar);
var
Col: Integer;
begin
{Get first column and enter in loop}
Col := ColumnStart[Pass];
Src := pChar(Longint(Src) + Col * 3);
repeat
{Copy this row}
pWord(Dest)^ := Owner.InverseGamma[pByte(Longint(Src) + 2)^]; inc(Dest, 2);
pWord(Dest)^ := Owner.InverseGamma[pByte(Longint(Src) + 1)^]; inc(Dest, 2);
pWord(Dest)^ := Owner.InverseGamma[pByte(Longint(Src) )^]; inc(Dest, 2);
{Move to next column}
inc(Src, ColumnIncrement[Pass] * 3);
inc(Col, ColumnIncrement[Pass]);
until Col >= ImageWidth;
end;
{Copy memory to encode interlaced images using palettes using bit depths}
{1, 4, 8 (each pixel in the image)}
procedure TChunkIDAT.EncodeInterlacedPalette148(const Pass: Byte;
Src, Dest, Trans: pChar);
const
BitTable: Array[1..8] of Integer = ($1, $3, 0, $F, 0, 0, 0, $FF);
StartBit: Array[1..8] of Integer = (7 , 0 , 0, 4, 0, 0, 0, 0);
var
CurBit, Col: Integer;
Src2: PChar;
begin
{Clean the line}
fillchar(Dest^, Row_Bytes, #0);
{Get first column and enter in loop}
Col := ColumnStart[Pass];
with Header.BitmapInfo.bmiHeader do
repeat
{Copy data}
CurBit := StartBit[biBitCount];
repeat
{Adjust pointer to pixel byte bounds}
Src2 := pChar(Longint(Src) + (biBitCount * Col) div 8);
{Copy data}
Byte(Dest^) := Byte(Dest^) or
(((Byte(Src2^) shr (StartBit[Header.BitDepth] - (biBitCount * Col)
mod 8))) and (BitTable[biBitCount])) shl CurBit;
{Move to next column}
inc(Col, ColumnIncrement[Pass]);
{Will read next bits}
dec(CurBit, biBitCount);
until CurBit < 0;
{Move to next byte in source}
inc(Dest);
until Col >= ImageWidth;
end;
{Copy to encode interlaced grayscale images using 16 bits for each sample}
procedure TChunkIDAT.EncodeInterlacedGrayscale16(const Pass: Byte;
Src, Dest, Trans: pChar);
var
Col: Integer;
begin
{Get first column and enter in loop}
Col := ColumnStart[Pass];
Src := pChar(Longint(Src) + Col);
repeat
{Copy this row}
pWord(Dest)^ := Byte(Src^); inc(Dest, 2);
{Move to next column}
inc(Src, ColumnIncrement[Pass]);
inc(Col, ColumnIncrement[Pass]);
until Col >= ImageWidth;
end;
{Copy to encode interlaced rgb images followed by an alpha value, all using}
{one byte for each sample}
procedure TChunkIDAT.EncodeInterlacedRGBAlpha8(const Pass: Byte;
Src, Dest, Trans: pChar);
var
Col: Integer;
begin
{Get first column and enter in loop}
Col := ColumnStart[Pass];
Src := pChar(Longint(Src) + Col * 3);
Trans := pChar(Longint(Trans) + Col);
repeat
{Copy this row}
Byte(Dest^) := Owner.InverseGamma[pByte(Longint(Src) + 2)^]; inc(Dest);
Byte(Dest^) := Owner.InverseGamma[pByte(Longint(Src) + 1)^]; inc(Dest);
Byte(Dest^) := Owner.InverseGamma[pByte(Longint(Src) )^]; inc(Dest);
Dest^ := Trans^; inc(Dest);
{Move to next column}
inc(Src, ColumnIncrement[Pass] * 3);
inc(Trans, ColumnIncrement[Pass]);
inc(Col, ColumnIncrement[Pass]);
until Col >= ImageWidth;
end;
{Copy to encode interlaced rgb images followed by an alpha value, all using}
{two byte for each sample}
procedure TChunkIDAT.EncodeInterlacedRGBAlpha16(const Pass: Byte;
Src, Dest, Trans: pChar);
var
Col: Integer;
begin
{Get first column and enter in loop}
Col := ColumnStart[Pass];
Src := pChar(Longint(Src) + Col * 3);
Trans := pChar(Longint(Trans) + Col);
repeat
{Copy this row}
pWord(Dest)^ := pByte(Longint(Src) + 2)^; inc(Dest, 2);
pWord(Dest)^ := pByte(Longint(Src) + 1)^; inc(Dest, 2);
pWord(Dest)^ := pByte(Longint(Src) )^; inc(Dest, 2);
pWord(Dest)^ := pByte(Trans)^; inc(Dest, 2);
{Move to next column}
inc(Src, ColumnIncrement[Pass] * 3);
inc(Trans, ColumnIncrement[Pass]);
inc(Col, ColumnIncrement[Pass]);
until Col >= ImageWidth;
end;
{Copy to encode grayscale interlaced images followed by an alpha value, all}
{using 1 byte for each sample}
procedure TChunkIDAT.EncodeInterlacedGrayscaleAlpha8(const Pass: Byte;
Src, Dest, Trans: pChar);
var
Col: Integer;
begin
{Get first column and enter in loop}
Col := ColumnStart[Pass];
Src := pChar(Longint(Src) + Col);
Trans := pChar(Longint(Trans) + Col);
repeat
{Copy this row}
Dest^ := Src^; inc(Dest);
Dest^ := Trans^; inc(Dest);
{Move to next column}
inc(Src, ColumnIncrement[Pass]);
inc(Trans, ColumnIncrement[Pass]);
inc(Col, ColumnIncrement[Pass]);
until Col >= ImageWidth;
end;
{Copy to encode grayscale interlaced images followed by an alpha value, all}
{using 2 bytes for each sample}
procedure TChunkIDAT.EncodeInterlacedGrayscaleAlpha16(const Pass: Byte;
Src, Dest, Trans: pChar);
var
Col: Integer;
begin
{Get first column and enter in loop}
Col := ColumnStart[Pass];
Src := pChar(Longint(Src) + Col);
Trans := pChar(Longint(Trans) + Col);
repeat
{Copy this row}
pWord(Dest)^ := pByte(Src)^; inc(Dest, 2);
pWord(Dest)^ := pByte(Trans)^; inc(Dest, 2);
{Move to next column}
inc(Src, ColumnIncrement[Pass]);
inc(Trans, ColumnIncrement[Pass]);
inc(Col, ColumnIncrement[Pass]);
until Col >= ImageWidth;
end;
{Encode interlaced images}
procedure TChunkIDAT.EncodeInterlacedAdam7(Stream: TStream;
var ZLIBStream: TZStreamRec2);
var
CurrentPass, Filter: Byte;
PixelsThisRow: Integer;
CurrentRow : Integer;
Trans, Data: pChar;
CopyProc: procedure(const Pass: Byte;
Src, Dest, Trans: pChar) of object;
begin
CopyProc := nil; {Initialize to avoid warnings}
{Defines the method to copy the data to the buffer depending on}
{the image parameters}
case Header.ColorType of
{R, G, B values}
COLOR_RGB:
case Header.BitDepth of
8: CopyProc := EncodeInterlacedRGB8;
16: CopyProc := EncodeInterlacedRGB16;
end;
{Grayscale and palette}
COLOR_PALETTE, COLOR_GRAYSCALE:
case Header.BitDepth of
1, 4, 8: CopyProc := EncodeInterlacedPalette148;
16: CopyProc := EncodeInterlacedGrayscale16;
end;
{RGB followed by alpha}
COLOR_RGBALPHA:
case Header.BitDepth of
8: CopyProc := EncodeInterlacedRGBAlpha8;
16: CopyProc := EncodeInterlacedRGBAlpha16;
end;
COLOR_GRAYSCALEALPHA:
{Grayscale followed by alpha}
case Header.BitDepth of
8: CopyProc := EncodeInterlacedGrayscaleAlpha8;
16: CopyProc := EncodeInterlacedGrayscaleAlpha16;
end;
end {case Header.ColorType};
{Compress the image using the seven passes for ADAM 7}
FOR CurrentPass := 0 TO 6 DO
begin
{Calculates the number of pixels and bytes for this pass row}
PixelsThisRow := (ImageWidth - ColumnStart[CurrentPass] +
ColumnIncrement[CurrentPass] - 1) div ColumnIncrement[CurrentPass];
Row_Bytes := BytesForPixels(PixelsThisRow, Header.ColorType,
Header.BitDepth);
ZeroMemory(Encode_Buffer[FILTER_NONE], Row_Bytes);
{Get current row index}
CurrentRow := RowStart[CurrentPass];
{Get a pointer to the current row image data}
Data := Ptr(Longint(Header.ImageData) + Header.BytesPerRow *
(ImageHeight - 1 - CurrentRow));
Trans := Ptr(Longint(Header.ImageAlpha) + ImageWidth * CurrentRow);
{Process all the image rows}
if Row_Bytes > 0 then
while CurrentRow < ImageHeight do
begin
{Copy data into buffer}
CopyProc(CurrentPass, Data, @Encode_Buffer[BUFFER][0], Trans);
{Filter data}
Filter := FilterToEncode;
{Compress data}
IDATZlibWrite(ZLIBStream, @Filter, 1);
IDATZlibWrite(ZLIBStream, @Encode_Buffer[Filter][0], Row_Bytes);
{Move to the next row}
inc(CurrentRow, RowIncrement[CurrentPass]);
{Move pointer to the next line}
dec(Data, RowIncrement[CurrentPass] * Header.BytesPerRow);
inc(Trans, RowIncrement[CurrentPass] * ImageWidth);
end {while CurrentRow < ImageHeight}
end {CurrentPass};
{Compress and finishes copying the remaining data}
FinishIDATZlib(ZLIBStream);
end;
{Filters the row to be encoded and returns the best filter}
function TChunkIDAT.FilterToEncode: Byte;
var
Run, LongestRun, ii, jj: Cardinal;
Last, Above, LastAbove: Byte;
begin
{Selecting more filters using the Filters property from TPngObject}
{increases the chances to the file be much smaller, but decreases}
{the performace}
{This method will creates the same line data using the different}
{filter methods and select the best}
{Sub-filter}
if pfSub in Owner.Filters then
for ii := 0 to Row_Bytes - 1 do
begin
{There is no previous pixel when it's on the first pixel, so}
{set last as zero when in the first}
if (ii >= Offset) then
last := Encode_Buffer[BUFFER]^[ii - Offset]
else
last := 0;
Encode_Buffer[FILTER_SUB]^[ii] := Encode_Buffer[BUFFER]^[ii] - last;
end;
{Up filter}
if pfUp in Owner.Filters then
for ii := 0 to Row_Bytes - 1 do
Encode_Buffer[FILTER_UP]^[ii] := Encode_Buffer[BUFFER]^[ii] -
Encode_Buffer[FILTER_NONE]^[ii];
{Average filter}
if pfAverage in Owner.Filters then
for ii := 0 to Row_Bytes - 1 do
begin
{Get the previous pixel, if the current pixel is the first, the}
{previous is considered to be 0}
if (ii >= Offset) then
last := Encode_Buffer[BUFFER]^[ii - Offset]
else
last := 0;
{Get the pixel above}
above := Encode_Buffer[FILTER_NONE]^[ii];
{Calculates formula to the average pixel}
Encode_Buffer[FILTER_AVERAGE]^[ii] := Encode_Buffer[BUFFER]^[ii] -
(above + last) div 2 ;
end;
{Paeth filter (the slower)}
if pfPaeth in Owner.Filters then
begin
{Initialize}
last := 0;
lastabove := 0;
for ii := 0 to Row_Bytes - 1 do
begin
{In case this pixel is not the first in the line obtains the}
{previous one and the one above the previous}
if (ii >= Offset) then
begin
last := Encode_Buffer[BUFFER]^[ii - Offset];
lastabove := Encode_Buffer[FILTER_NONE]^[ii - Offset];
end;
{Obtains the pixel above}
above := Encode_Buffer[FILTER_NONE]^[ii];
{Calculate paeth filter for this byte}
Encode_Buffer[FILTER_PAETH]^[ii] := Encode_Buffer[BUFFER]^[ii] -
PaethPredictor(last, above, lastabove);
end;
end;
{Now calculates the same line using no filter, which is necessary}
{in order to have data to the filters when the next line comes}
CopyMemory(@Encode_Buffer[FILTER_NONE]^[0],
@Encode_Buffer[BUFFER]^[0], Row_Bytes);
{If only filter none is selected in the filter list, we don't need}
{to proceed and further}
if (Owner.Filters = [pfNone]) or (Owner.Filters = []) then
begin
Result := FILTER_NONE;
exit;
end {if (Owner.Filters = [pfNone...};
{Check which filter is the best by checking which has the larger}
{sequence of the same byte, since they are best compressed}
LongestRun := 0; Result := FILTER_NONE;
for ii := FILTER_NONE TO FILTER_PAETH do
{Check if this filter was selected}
if TFilter(ii) in Owner.Filters then
begin
Run := 0;
{Check if it's the only filter}
if Owner.Filters = [TFilter(ii)] then
begin
Result := ii;
exit;
end;
{Check using a sequence of four bytes}
for jj := 2 to Row_Bytes - 1 do
if (Encode_Buffer[ii]^[jj] = Encode_Buffer [ii]^[jj-1]) or
(Encode_Buffer[ii]^[jj] = Encode_Buffer [ii]^[jj-2]) then
inc(Run); {Count the number of sequences}
{Check if this one is the best so far}
if (Run > LongestRun) then
begin
Result := ii;
LongestRun := Run;
end {if (Run > LongestRun)};
end {if TFilter(ii) in Owner.Filters};
end;
{TChunkPLTE implementation}
{Returns an item in the palette}
function TChunkPLTE.GetPaletteItem(Index: Byte): TRGBQuad;
begin
{Test if item is valid, if not raise error}
if Index > Count - 1 then
Owner.RaiseError(EPNGError, EPNGUnknownPalEntryText)
else
{Returns the item}
Result := Header.BitmapInfo.bmiColors[Index];
end;
{Loads the palette chunk from a stream}
function TChunkPLTE.LoadFromStream(Stream: TStream;
const ChunkName: TChunkName; Size: Integer): Boolean;
type
pPalEntry = ^PalEntry;
PalEntry = record r, g, b: Byte end;
var
j : Integer; {For the FOR}
PalColor : pPalEntry;
begin
{Let ancestor load data and check CRC}
Result := inherited LoadFromStream(Stream, ChunkName, Size);
if not Result then exit;
{This chunk must be divisible by 3 in order to be valid}
if (Size mod 3 <> 0) or (Size div 3 > 256) then
begin
{Raise error}
Result := FALSE;
Owner.RaiseError(EPNGInvalidPalette, EPNGInvalidPaletteText);
exit;
end {if Size mod 3 <> 0};
{Fill array with the palette entries}
fCount := Size div 3;
PalColor := Data;
FOR j := 0 TO fCount - 1 DO
with Header.BitmapInfo.bmiColors[j] do
begin
rgbRed := Owner.GammaTable[PalColor.r];
rgbGreen := Owner.GammaTable[PalColor.g];
rgbBlue := Owner.GammaTable[PalColor.b];
rgbReserved := 0;
inc(PalColor); {Move to next palette entry}
end;
end;
{Saves the PLTE chunk to a stream}
function TChunkPLTE.SaveToStream(Stream: TStream): Boolean;
var
J: Integer;
DataPtr: pByte;
begin
{Adjust size to hold all the palette items}
ResizeData(fCount * 3);
{Copy pointer to data}
DataPtr := fData;
{Copy palette items}
with Header do
FOR j := 0 TO fCount - 1 DO
with BitmapInfo.bmiColors[j] do
begin
DataPtr^ := Owner.InverseGamma[rgbRed]; inc(DataPtr);
DataPtr^ := Owner.InverseGamma[rgbGreen]; inc(DataPtr);
DataPtr^ := Owner.InverseGamma[rgbBlue]; inc(DataPtr);
end {with BitmapInfo};
{Let ancestor do the rest of the work}
Result := inherited SaveToStream(Stream);
end;
{Assigns from another PLTE chunk}
procedure TChunkPLTE.Assign(Source: TChunk);
begin
{Copy the number of palette items}
if Source is TChunkPLTE then
fCount := TChunkPLTE(Source).fCount
else
Owner.RaiseError(EPNGError, EPNGCannotAssignChunkText);
end;
{TChunkgAMA implementation}
{Assigns from another chunk}
procedure TChunkgAMA.Assign(Source: TChunk);
begin
{Copy the gamma value}
if Source is TChunkgAMA then
Gamma := TChunkgAMA(Source).Gamma
else
Owner.RaiseError(EPNGError, EPNGCannotAssignChunkText);
end;
{Gamma chunk being created}
constructor TChunkgAMA.Create(Owner: TPngObject);
begin
{Call ancestor}
inherited Create(Owner);
Gamma := 1; {Initial value}
end;
{Returns gamma value}
function TChunkgAMA.GetValue: Cardinal;
begin
{Make sure that the size is four bytes}
if DataSize <> 4 then
begin
{Adjust size and returns 1}
ResizeData(4);
Result := 1;
end
{If it's right, read the value}
else Result := Cardinal(ByteSwap(pCardinal(Data)^))
end;
function Power(Base, Exponent: Extended): Extended;
begin
if Exponent = 0.0 then
Result := 1.0 {Math rule}
else if (Base = 0) or (Exponent = 0) then Result := 0
else
Result := Exp(Exponent * Ln(Base));
end;
{Loading the chunk from a stream}
function TChunkgAMA.LoadFromStream(Stream: TStream;
const ChunkName: TChunkName; Size: Integer): Boolean;
var
i: Integer;
Value: Cardinal;
begin
{Call ancestor and test if it went ok}
Result := inherited LoadFromStream(Stream, ChunkName, Size);
if not Result then exit;
Value := Gamma;
{Build gamma table and inverse table for saving}
if Value <> 0 then
with Owner do
FOR i := 0 TO 255 DO
begin
GammaTable[I] := Round(Power((I / 255), 1 /
(Value / 100000 * 2.2)) * 255);
InverseGamma[Round(Power((I / 255), 1 /
(Value / 100000 * 2.2)) * 255)] := I;
end
end;
{Sets the gamma value}
procedure TChunkgAMA.SetValue(const Value: Cardinal);
begin
{Make sure that the size is four bytes}
if DataSize <> 4 then ResizeData(4);
{If it's right, set the value}
pCardinal(Data)^ := ByteSwap(Value);
end;
{TPngObject implementation}
{Assigns from another object}
procedure TPngObject.Assign(Source: TPersistent);
begin
{Assigns contents from another TPNGObject}
if Source is TPNGObject then
AssignPNG(Source as TPNGObject)
{Copy contents from a TBitmap}
{$IFDEF UseDelphi}else if Source is TBitmap then
with Source as TBitmap do
AssignHandle(Handle, Transparent,
ColorToRGB(TransparentColor)){$ENDIF}
{Unknown source, let ancestor deal with it}
else
inherited;
end;
{Clear all the chunks in the list}
procedure TPngObject.ClearChunks;
var
i: Integer;
begin
{Initialize gamma}
InitializeGamma();
{Free all the objects and memory (0 chunks Bug fixed by Noel Sharpe)}
for i := 0 TO Integer(Chunks.Count) - 1 do
TChunk(Chunks.Item[i]).Free;
Chunks.Count := 0;
end;
{Portable Network Graphics object being created}
constructor TPngObject.Create;
begin
{Let it be created}
inherited Create;
{Initial properties}
TempPalette := 0;
fFilters := [pfSub];
fCompressionLevel := 7;
fInterlaceMethod := imNone;
fMaxIdatSize := High(Word);
{Create chunklist object}
fChunkList := TPngList.Create(Self);
end;
{Portable Network Graphics object being destroyed}
destructor TPngObject.Destroy;
begin
{Free object list}
ClearChunks;
fChunkList.Free;
{Free the temporary palette}
if TempPalette <> 0 then DeleteObject(TempPalette);
{Call ancestor destroy}
inherited Destroy;
end;
{Returns linesize and byte offset for pixels}
procedure TPngObject.GetPixelInfo(var LineSize, Offset: Cardinal);
begin
{There must be an Header chunk to calculate size}
if HeaderPresent then
begin
{Calculate number of bytes for each line}
LineSize := BytesForPixels(Header.Width, Header.ColorType, Header.BitDepth);
{Calculates byte offset}
Case Header.ColorType of
{Grayscale}
COLOR_GRAYSCALE:
If Header.BitDepth = 16 Then
Offset := 2
Else
Offset := 1 ;
{It always smaller or equal one byte, so it occupes one byte}
COLOR_PALETTE:
offset := 1;
{It might be 3 or 6 bytes}
COLOR_RGB:
offset := 3 * Header.BitDepth Div 8;
{It might be 2 or 4 bytes}
COLOR_GRAYSCALEALPHA:
offset := 2 * Header.BitDepth Div 8;
{4 or 8 bytes}
COLOR_RGBALPHA:
offset := 4 * Header.BitDepth Div 8;
else
Offset := 0;
End ;
end
else
begin
{In case if there isn't any Header chunk}
Offset := 0;
LineSize := 0;
end;
end;
{Returns image height}
function TPngObject.GetHeight: Integer;
begin
{There must be a Header chunk to get the size, otherwise returns 0}
if HeaderPresent then
Result := TChunkIHDR(Chunks.Item[0]).Height
else Result := 0;
end;
{Returns image width}
function TPngObject.GetWidth: Integer;
begin
{There must be a Header chunk to get the size, otherwise returns 0}
if HeaderPresent then
Result := Header.Width
else Result := 0;
end;
{Returns if the image is empty}
function TPngObject.GetEmpty: Boolean;
begin
Result := (Chunks.Count = 0);
end;
{Raises an error}
procedure TPngObject.RaiseError(ExceptionClass: ExceptClass; Text: String);
begin
raise ExceptionClass.Create(Text);
end;
{Set the maximum size for IDAT chunk}
procedure TPngObject.SetMaxIdatSize(const Value: Cardinal);
begin
{Make sure the size is at least 65535}
if Value < High(Word) then
fMaxIdatSize := High(Word) else fMaxIdatSize := Value;
end;
{$IFNDEF UseDelphi}
{Creates a file stream reading from the filename in the parameter and load}
procedure TPngObject.LoadFromFile(const Filename: String);
var
FileStream: TFileStream;
begin
{Test if the file exists}
if not FileExists(Filename) then
begin
{In case it does not exists, raise error}
RaiseError(EPNGNotExists, EPNGNotExistsText);
exit;
end;
{Creates the file stream to read}
FileStream := TFileStream.Create(Filename, [fsmRead]);
LoadFromStream(FileStream); {Loads the data}
FileStream.Free; {Free file stream}
end;
{Saves the current png image to a file}
procedure TPngObject.SaveToFile(const Filename: String);
var
FileStream: TFileStream;
begin
{Creates the file stream to write}
FileStream := TFileStream.Create(Filename, [fsmWrite]);
SaveToStream(FileStream); {Saves the data}
FileStream.Free; {Free file stream}
end;
{$ENDIF}
{Returns pointer to the chunk TChunkIHDR which should be the first}
function TPngObject.GetHeader: TChunkIHDR;
begin
{If there is a TChunkIHDR returns it, otherwise returns nil}
if (Chunks.Count <> 0) and (Chunks.Item[0] is TChunkIHDR) then
Result := Chunks.Item[0] as TChunkIHDR
else
begin
{No header, throw error message}
RaiseError(EPNGHeaderNotPresent, EPNGHeaderNotPresentText);
Result := nil
end
end;
{Draws using partial transparency}
procedure TPngObject.DrawPartialTrans(DC: HDC; Rect: TRect;
Transparency: Integer; OnlyGrayscale: Boolean;
Darken: Integer; Highlight: Integer);
type
{Access to pixels}
TPixelLine = Array[Word] of TRGBQuad;
pPixelLine = ^TPixelLine;
const
{Structure used to create the bitmap}
BitmapInfoHeader: TBitmapInfoHeader =
(biSize: sizeof(TBitmapInfoHeader);
biWidth: 100;
biHeight: 100;
biPlanes: 1;
biBitCount: 32;
biCompression: BI_RGB;
biSizeImage: 0;
biXPelsPerMeter: 0;
biYPelsPerMeter: 0;
biClrUsed: 0;
biClrImportant: 0);
var
{Buffer bitmap creation}
BitmapInfo : TBitmapInfo;
BufferDC : HDC;
BufferBits : Pointer;
OldBitmap,
BufferBitmap: HBitmap;
{Transparency/palette chunks}
TransparencyChunk: TChunktRNS;
PaletteChunk: TChunkPLTE;
TransValue, PaletteIndex: Byte;
CurBit: Integer;
Data: PByte;
{Buffer bitmap modification}
BytesPerRowDest,
BytesPerRowSrc,
BytesPerRowAlpha: Integer;
ImageSource,
AlphaSource : pByteArray;
ImageData : pPixelLine;
i, j : Integer;
GrayValue: Byte;
AlphaValue: Byte;
begin
{Prepare to create the bitmap}
Fillchar(BitmapInfo, sizeof(BitmapInfo), #0);
BitmapInfoHeader.biWidth := Header.Width;
BitmapInfoHeader.biHeight := -Integer(Header.Height);
BitmapInfo.bmiHeader := BitmapInfoHeader;
{Create the bitmap which will receive the background, the applied}
{alpha blending and then will be painted on the background}
BufferDC := CreateCompatibleDC(0);
{In case BufferDC could not be created}
if (BufferDC = 0) then RaiseError(EPNGOutMemory, EPNGOutMemoryText);
BufferBitmap := CreateDIBSection(BufferDC, BitmapInfo, DIB_RGB_COLORS,
BufferBits, 0, 0);
{In case buffer bitmap could not be created}
if (BufferBitmap = 0) or (BufferBits = Nil) then
begin
if BufferBitmap <> 0 then DeleteObject(BufferBitmap);
DeleteDC(BufferDC);
RaiseError(EPNGOutMemory, EPNGOutMemoryText);
end;
{Selects new bitmap and release old bitmap}
OldBitmap := SelectObject(BufferDC, BufferBitmap);
{Draws the background on the buffer image}
StretchBlt(BufferDC, 0, 0, Header.Width, Header.height, DC, Rect.Left,
Rect.Top, Header.Width, Header.Height, SRCCOPY);
{Obtain number of bytes for each row}
BytesPerRowAlpha := Header.Width;
BytesPerRowDest := (((BitmapInfo.bmiHeader.biBitCount * Width) + 31)
and not 31) div 8; {Number of bytes for each image row in destination}
BytesPerRowSrc := (((Header.BitmapInfo.bmiHeader.biBitCount * Header.Width) +
31) and not 31) div 8; {Number of bytes for each image row in source}
{Obtains image pointers}
ImageData := BufferBits;
AlphaSource := Header.ImageAlpha;
Longint(ImageSource) := Longint(Header.ImageData) +
Header.BytesPerRow * Longint(Header.Height - 1);
case Header.BitmapInfo.bmiHeader.biBitCount of
{R, G, B images}
24:
FOR j := 1 TO Header.Height DO
begin
{Process all the pixels in this line}
FOR i := 0 TO Header.Width - 1 DO
with ImageData[i] do
begin
if(Transparency>0)then
AlphaValue:=(Integer(AlphaSource[i])*(255-Transparency)) shr 8
else
AlphaValue:=AlphaSource[i];
if(OnlyGrayscale)then
begin
GrayValue:=(Cardinal(ImageSource[2+i*3])+
Cardinal(ImageSource[1+i*3])+
Cardinal(ImageSource[i*3])) div 3;
rgbRed := (255+GrayValue * AlphaValue + rgbRed *
(255 - AlphaValue)) shr 8;
rgbGreen := (255+GrayValue * AlphaValue + rgbGreen *
(255 - AlphaValue)) shr 8;
rgbBlue := (255+GrayValue * AlphaValue + rgbBlue *
(255 - AlphaValue)) shr 8;
end
else if(Highlight>0)or(Darken>0)then
begin
//ToDo: Make exact color calculation
rgbRed := (255+Max(Min(Integer(ImageSource[2+i*3])+Highlight, 255)-Darken, 0) * AlphaValue + rgbRed *
(255 - AlphaValue)) shr 8;
rgbGreen := (255+Max(Min(Integer(ImageSource[1+i*3])+Highlight, 255)-Darken, 0) * AlphaValue + rgbGreen *
(255 - AlphaValue)) shr 8;
rgbBlue := (255+Max(Min(Integer(ImageSource[i*3])+Highlight, 255)-Darken, 0) * AlphaValue + rgbBlue *
(255 - AlphaValue)) shr 8;
end
else
begin
rgbRed := (255+ImageSource[2+i*3] * AlphaValue + rgbRed *
(255 - AlphaValue)) shr 8;
rgbGreen := (255+ImageSource[1+i*3] * AlphaValue + rgbGreen *
(255 - AlphaValue)) shr 8;
rgbBlue := (255+ImageSource[i*3] * AlphaValue + rgbBlue *
(255 - AlphaValue)) shr 8;
end;
end;
{Move pointers}
Longint(ImageData) := Longint(ImageData) + BytesPerRowDest;
Longint(ImageSource) := Longint(ImageSource) - BytesPerRowSrc;
Longint(AlphaSource) := Longint(AlphaSource) + BytesPerRowAlpha;
end;
{Palette images with 1 byte for each pixel}
1,4,8: if Header.ColorType = COLOR_GRAYSCALEALPHA then
FOR j := 1 TO Header.Height DO
begin
{Process all the pixels in this line}
FOR i := 0 TO Header.Width - 1 DO
with ImageData[i], Header.BitmapInfo do begin
rgbRed := (255 + ImageSource[i] * AlphaSource[i] +
rgbRed * (255 - AlphaSource[i])) shr 8;
rgbGreen := (255 + ImageSource[i] * AlphaSource[i] +
rgbGreen * (255 - AlphaSource[i])) shr 8;
rgbBlue := (255 + ImageSource[i] * AlphaSource[i] +
rgbBlue * (255 - AlphaSource[i])) shr 8;
end;
{Move pointers}
Longint(ImageData) := Longint(ImageData) + BytesPerRowDest;
Longint(ImageSource) := Longint(ImageSource) - BytesPerRowSrc;
Longint(AlphaSource) := Longint(AlphaSource) + BytesPerRowAlpha;
end
else {Palette images}
begin
{Obtain pointer to the transparency chunk}
TransparencyChunk := TChunktRNS(Chunks.ItemFromClass(TChunktRNS));
PaletteChunk := TChunkPLTE(Chunks.ItemFromClass(TChunkPLTE));
FOR j := 1 TO Header.Height DO
begin
{Process all the pixels in this line}
i := 0; Data := @ImageSource[0];
repeat
CurBit := 0;
repeat
{Obtains the palette index}
case Header.BitDepth of
1: PaletteIndex := (Data^ shr (7-(I Mod 8))) and 1;
2,4: PaletteIndex := (Data^ shr ((1-(I Mod 2))*4)) and $0F;
else PaletteIndex := Data^;
end;
{Updates the image with the new pixel}
with ImageData[i] do
begin
TransValue := TransparencyChunk.PaletteValues[PaletteIndex];
rgbRed := (255 + PaletteChunk.Item[PaletteIndex].rgbRed *
TransValue + rgbRed * (255 - TransValue)) shr 8;
rgbGreen := (255 + PaletteChunk.Item[PaletteIndex].rgbGreen *
TransValue + rgbGreen * (255 - TransValue)) shr 8;
rgbBlue := (255 + PaletteChunk.Item[PaletteIndex].rgbBlue *
TransValue + rgbBlue * (255 - TransValue)) shr 8;
end;
{Move to next data}
inc(i); inc(CurBit, Header.BitmapInfo.bmiHeader.biBitCount);
until CurBit >= 8;
{Move to next source data}
inc(Data);
until i >= Integer(Header.Width);
{Move pointers}
Longint(ImageData) := Longint(ImageData) + BytesPerRowDest;
Longint(ImageSource) := Longint(ImageSource) - BytesPerRowSrc;
end
end {Palette images}
end {case Header.BitmapInfo.bmiHeader.biBitCount};
{Draws the new bitmap on the foreground}
StretchBlt(DC, Rect.Left, Rect.Top, Header.Width, Header.Height, BufferDC,
0, 0, Header.Width, Header.Height, SRCCOPY);
{Free bitmap}
SelectObject(BufferDC, OldBitmap);
DeleteObject(BufferBitmap);
DeleteDC(BufferDC);
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TPngObject.ConvertToNonAlphaBitmap(Bitmap: TBitmap; Background: TColor);
// Converts the content of the PNG object to a bitmap, but without alpha channel.
// Instead the alpha channel is converted to the given background color.
var
R: TRect;
begin
Bitmap.Width := Width;
Bitmap.Height := Height;
Bitmap.PixelFormat := pf32bit;
R := Rect(0, 0, Width, Height);
Bitmap.Canvas.Brush.Color := Background;
Bitmap.Canvas.FillRect(R);
Draw(Bitmap.Canvas, R);
end;
//----------------------------------------------------------------------------------------------------------------------
{Draws the image into a canvas}
procedure TPngObject.Draw(ACanvas: TCanvas; const Rect: TRect);
var
Header: TChunkIHDR;
begin
{Quit in case there is no header, otherwise obtain it}
if (Chunks.Count = 0) or not (Chunks.GetItem(0) is TChunkIHDR) then Exit;
Header := Chunks.GetItem(0) as TChunkIHDR;
{Copy the data to the canvas}
case Self.TransparencyMode of
{$IFDEF PartialTransparentDraw}
ptmPartial:
DrawPartialTrans(ACanvas{$IFDEF UseDelphi}.Handle{$ENDIF}, Rect);
{$ENDIF}
ptmBit: DrawTransparentBitmap(ACanvas{$IFDEF UseDelphi}.Handle{$ENDIF},
Header.ImageData, Header.BitmapInfo.bmiHeader,
pBitmapInfo(@Header.BitmapInfo), Rect,
{$IFDEF UseDelphi}ColorToRGB({$ENDIF}TransparentColor)
{$IFDEF UseDelphi}){$ENDIF}
else
StretchDiBits(ACanvas{$IFDEF UseDelphi}.Handle{$ENDIF}, Rect.Left,
Rect.Top, Rect.Right - Rect.Left, Rect.Bottom - Rect.Top, 0, 0,
Header.Width, Header.Height, Header.ImageData,
pBitmapInfo(@Header.BitmapInfo)^, DIB_RGB_COLORS, SRCCOPY)
end {case}
end;
{Draws the image into a canvas and highlights is}
procedure TPngObject.DrawFaded(ACanvas: TCanvas; const Rect: TRect;
Transparency: Integer);
var
Header: TChunkIHDR;
begin
{Quit in case there is no header, otherwise obtain it}
if (Chunks.Count = 0) or not (Chunks.GetItem(0) is TChunkIHDR) then Exit;
Header := Chunks.GetItem(0) as TChunkIHDR;
{Copy the data to the canvas}
case Self.TransparencyMode of
{$IFDEF PartialTransparentDraw}
ptmPartial:
DrawPartialTrans(ACanvas{$IFDEF UseDelphi}.Handle{$ENDIF}, Rect,
Transparency);
{$ENDIF}
ptmBit: DrawTransparentBitmap(ACanvas{$IFDEF UseDelphi}.Handle{$ENDIF},
Header.ImageData, Header.BitmapInfo.bmiHeader,
pBitmapInfo(@Header.BitmapInfo), Rect,
{$IFDEF UseDelphi}ColorToRGB({$ENDIF}TransparentColor)
{$IFDEF UseDelphi}){$ENDIF}
else
StretchDiBits(ACanvas{$IFDEF UseDelphi}.Handle{$ENDIF}, Rect.Left,
Rect.Top, Rect.Right - Rect.Left, Rect.Bottom - Rect.Top, 0, 0,
Header.Width, Header.Height, Header.ImageData,
pBitmapInfo(@Header.BitmapInfo)^, DIB_RGB_COLORS, SRCCOPY)
end {case}
end;
procedure TPngObject.DrawGrayscale(ACanvas: TCanvas; const Rect: TRect;
Transparency: Integer);
var
Header: TChunkIHDR;
begin
{Quit in case there is no header, otherwise obtain it}
if (Chunks.Count = 0) or not (Chunks.GetItem(0) is TChunkIHDR) then Exit;
Header := Chunks.GetItem(0) as TChunkIHDR;
{Copy the data to the canvas}
case Self.TransparencyMode of
{$IFDEF PartialTransparentDraw}
ptmPartial:
DrawPartialTrans(ACanvas{$IFDEF UseDelphi}.Handle{$ENDIF}, Rect,
Transparency, True);
{$ENDIF}
ptmBit: DrawTransparentBitmap(ACanvas{$IFDEF UseDelphi}.Handle{$ENDIF},
Header.ImageData, Header.BitmapInfo.bmiHeader,
pBitmapInfo(@Header.BitmapInfo), Rect,
{$IFDEF UseDelphi}ColorToRGB({$ENDIF}TransparentColor)
{$IFDEF UseDelphi}){$ENDIF}
else
StretchDiBits(ACanvas{$IFDEF UseDelphi}.Handle{$ENDIF}, Rect.Left,
Rect.Top, Rect.Right - Rect.Left, Rect.Bottom - Rect.Top, 0, 0,
Header.Width, Header.Height, Header.ImageData,
pBitmapInfo(@Header.BitmapInfo)^, DIB_RGB_COLORS, SRCCOPY)
end {case}
end;
{Characters for the header}
const
PngHeader: Array[0..7] of Char = (#137, #80, #78, #71, #13, #10, #26, #10);
{Loads the image from a stream of data}
procedure TPngObject.LoadFromStream(Stream: TStream);
var
Header : Array[0..7] of Char;
HasIDAT : Boolean;
{Chunks reading}
ChunkCount : Cardinal;
ChunkLength: Cardinal;
ChunkName : TChunkName;
begin
{Initialize before start loading chunks}
ChunkCount := 0;
ClearChunks();
{Reads the header}
Stream.Read(Header[0], 8);
{Test if the header matches}
if Header <> PngHeader then
begin
RaiseError(EPNGInvalidFileHeader, EPNGInvalidFileHeaderText);
Exit;
end;
HasIDAT := FALSE;
Chunks.Count := 10;
{Load chunks}
repeat
inc(ChunkCount); {Increment number of chunks}
if Chunks.Count < ChunkCount then {Resize the chunks list if needed}
Chunks.Count := Chunks.Count + 10;
{Reads chunk length and invert since it is in network order}
{also checks the Read method return, if it returns 0, it}
{means that no bytes was readed, probably because it reached}
{the end of the file}
if Stream.Read(ChunkLength, 4) = 0 then
begin
{In case it found the end of the file here}
Chunks.Count := ChunkCount - 1;
RaiseError(EPNGUnexpectedEnd, EPNGUnexpectedEndText);
end;
ChunkLength := ByteSwap(ChunkLength);
{Reads chunk name}
Stream.Read(Chunkname, 4);
{Here we check if the first chunk is the Header which is necessary}
{to the file in order to be a valid Portable Network Graphics image}
if (ChunkCount = 1) and (ChunkName <> 'IHDR') then
begin
Chunks.Count := ChunkCount - 1;
RaiseError(EPNGIHDRNotFirst, EPNGIHDRNotFirstText);
exit;
end;
{Has a previous IDAT}
if (HasIDAT and (ChunkName = 'IDAT')) or (ChunkName = 'cHRM') then
begin
dec(ChunkCount);
Stream.Seek(ChunkLength + 4, soFromCurrent);
Continue;
end;
{Tell it has an IDAT chunk}
if ChunkName = 'IDAT' then HasIDAT := TRUE;
{Creates object for this chunk}
Chunks.SetItem(ChunkCount - 1, CreateClassChunk(Self, ChunkName));
{Check if the chunk is critical and unknown}
{$IFDEF ErrorOnUnknownCritical}
if (TChunk(Chunks.Item[ChunkCount - 1]).ClassType = TChunk) and
((Byte(ChunkName[0]) AND $20) = 0) and (ChunkName <> '') then
begin
Chunks.Count := ChunkCount;
RaiseError(EPNGUnknownCriticalChunk, EPNGUnknownCriticalChunkText);
end;
{$ENDIF}
{Loads it}
try if not TChunk(Chunks.Item[ChunkCount - 1]).LoadFromStream(Stream,
ChunkName, ChunkLength) then break;
except
Chunks.Count := ChunkCount;
raise;
end;
{Terminates when it reaches the IEND chunk}
until (ChunkName = 'IEND');
{Resize the list to the appropriate size}
Chunks.Count := ChunkCount;
{Check if there is data}
if not HasIDAT then
RaiseError(EPNGNoImageData, EPNGNoImageDataText);
end;
{Changing height is not supported}
procedure TPngObject.SetHeight(Value: Integer);
begin
RaiseError(EPNGError, EPNGCannotChangeSizeText);
end;
{Changing width is not supported}
procedure TPngObject.SetWidth(Value: Integer);
begin
RaiseError(EPNGError, EPNGCannotChangeSizeText);
end;
{$IFDEF UseDelphi}
{Saves to clipboard format (thanks to Antoine Pottern)}
procedure TPNGObject.SaveToClipboardFormat(var AFormat: Word;
var AData: THandle; var APalette: HPalette);
begin
with TBitmap.Create do
try
Width := Self.Width;
Height := Self.Height;
Self.Draw(Canvas, Rect(0, 0, Width, Height));
SaveToClipboardFormat(AFormat, AData, APalette);
finally
Free;
end {try}
end;
{Loads data from clipboard}
procedure TPngObject.LoadFromClipboardFormat(AFormat: Word;
AData: THandle; APalette: HPalette);
begin
with TBitmap.Create do
try
LoadFromClipboardFormat(AFormat, AData, APalette);
Self.AssignHandle(Handle, False, 0);
finally
Free;
end {try}
end;
{Returns if the image is transparent}
function TPngObject.GetTransparent: Boolean;
begin
Result := (TransparencyMode <> ptmNone);
end;
{$ENDIF}
{Saving the PNG image to a stream of data}
procedure TPngObject.SaveToStream(Stream: TStream);
var
j: Integer;
begin
{Reads the header}
Stream.Write(PNGHeader[0], 8);
{Write each chunk}
FOR j := 0 TO Chunks.Count - 1 DO
Chunks.Item[j].SaveToStream(Stream)
end;
{Prepares the Header chunk}
procedure BuildHeader(Header: TChunkIHDR; Handle: HBitmap; Info: pBitmap;
HasPalette: Boolean);
var
DC: HDC;
begin
{Set width and height}
Header.Width := Info.bmWidth;
Header.Height := abs(Info.bmHeight);
{Set bit depth}
if Info.bmBitsPixel >= 16 then
Header.BitDepth := 8 else Header.BitDepth := Info.bmBitsPixel;
{Set color type}
if Info.bmBitsPixel >= 16 then
Header.ColorType := COLOR_RGB else Header.ColorType := COLOR_PALETTE;
{Set other info}
Header.CompressionMethod := 0; {deflate/inflate}
Header.InterlaceMethod := 0; {no interlace}
{Prepares bitmap headers to hold data}
Header.PrepareImageData();
{Copy image data}
DC := CreateCompatibleDC(0);
GetDIBits(DC, Handle, 0, Header.Height, Header.ImageData,
pBitmapInfo(@Header.BitmapInfo)^, DIB_RGB_COLORS);
DeleteDC(DC);
end;
{Loads the image from a resource}
procedure TPngObject.LoadFromResourceName(Instance: HInst;
const Name: String);
var
ResStream: TResourceStream;
begin
{Creates an especial stream to load from the resource}
try ResStream := TResourceStream.Create(Instance, Name, RT_RCDATA);
except RaiseError(EPNGCouldNotLoadResource, EPNGCouldNotLoadResourceText);
exit; end;
{Loads the png image from the resource}
try
LoadFromStream(ResStream);
finally
ResStream.Free;
end;
end;
{Loads the png from a resource ID}
procedure TPngObject.LoadFromResourceID(Instance: HInst; ResID: Integer);
begin
LoadFromResourceName(Instance, String(ResID));
end;
{Assigns this tpngobject to another object}
procedure TPngObject.AssignTo(Dest: TPersistent);
{$IFDEF UseDelphi}
var
DeskDC: HDC;
TRNS: TChunkTRNS;
{$ENDIF}
begin
{If the destination is also a TPNGObject make it assign}
{this one}
if Dest is TPNGObject then
TPNGObject(Dest).AssignPNG(Self)
{$IFDEF UseDelphi}
{In case the destination is a bitmap}
else if (Dest is TBitmap) and HeaderPresent then
begin
{Device context}
DeskDC := GetDC(0);
{Copy the data}
TBitmap(Dest).Handle := CreateDIBitmap(DeskDC,
Header.BitmapInfo.bmiHeader, CBM_INIT, Header.ImageData,
pBitmapInfo(@Header.BitmapInfo)^, DIB_RGB_COLORS);
ReleaseDC(0, DeskDC);
{Tests for the best pixelformat}
case Header.BitmapInfo.bmiHeader.biBitCount of
1: TBitmap(Dest).PixelFormat := pf1Bit;
4: TBitmap(Dest).PixelFormat := pf4Bit;
8: TBitmap(Dest).PixelFormat := pf8Bit;
24: TBitmap(Dest).PixelFormat := pf24Bit;
32: TBitmap(Dest).PixelFormat := pf32Bit;
end {case Header.BitmapInfo.bmiHeader.biBitCount};
{Copy transparency mode}
if (TransparencyMode = ptmBit) then
begin
TRNS := Chunks.ItemFromClass(TChunkTRNS) as TChunkTRNS;
TBitmap(Dest).TransparentColor := TRNS.TransparentColor;
TBitmap(Dest).Transparent := True
end {if (TransparencyMode = ptmBit)}
end
else
{Unknown destination kind, }
inherited AssignTo(Dest);
{$ENDIF}
end;
{Assigns from a bitmap object}
procedure TPngObject.AssignHandle(Handle: HBitmap; Transparent: Boolean;
TransparentColor: ColorRef);
var
BitmapInfo: Windows.TBitmap;
HasPalette: Boolean;
{Chunks}
Header: TChunkIHDR;
PLTE: TChunkPLTE;
IDAT: TChunkIDAT;
IEND: TChunkIEND;
TRNS: TChunkTRNS;
begin
{Obtain bitmap info}
GetObject(Handle, SizeOf(BitmapInfo), @BitmapInfo);
{Only bit depths 1, 4 and 8 needs a palette}
HasPalette := (BitmapInfo.bmBitsPixel < 16);
{Clear old chunks and prepare}
ClearChunks();
{Create the chunks}
Header := TChunkIHDR.Create(Self);
if HasPalette then PLTE := TChunkPLTE.Create(Self) else PLTE := nil;
if Transparent then TRNS := TChunkTRNS.Create(Self) else TRNS := nil;
IDAT := TChunkIDAT.Create(Self);
IEND := TChunkIEND.Create(Self);
{Add chunks}
TPNGPointerList(Chunks).Add(Header);
if HasPalette then TPNGPointerList(Chunks).Add(PLTE);
if Transparent then TPNGPointerList(Chunks).Add(TRNS);
TPNGPointerList(Chunks).Add(IDAT);
TPNGPointerList(Chunks).Add(IEND);
{This method will fill the Header chunk with bitmap information}
{and copy the image data}
BuildHeader(Header, Handle, @BitmapInfo, HasPalette);
{In case there is a image data, set the PLTE chunk fCount variable}
{to the actual number of palette colors which is 2^(Bits for each pixel)}
if HasPalette then PLTE.fCount := 1 shl BitmapInfo.bmBitsPixel;
{In case it is a transparent bitmap, prepares it}
if Transparent then TRNS.TransparentColor := TransparentColor;
end;
{Assigns from another PNG}
procedure TPngObject.AssignPNG(Source: TPNGObject);
var
J: Integer;
begin
{Copy properties}
InterlaceMethod := Source.InterlaceMethod;
MaxIdatSize := Source.MaxIdatSize;
CompressionLevel := Source.CompressionLevel;
Filters := Source.Filters;
{Clear old chunks and prepare}
ClearChunks();
Chunks.Count := Source.Chunks.Count;
{Create chunks and makes a copy from the source}
FOR J := 0 TO Chunks.Count - 1 DO
with Source.Chunks do
begin
Chunks.SetItem(J, TChunkClass(TChunk(Item[J]).ClassType).Create(Self));
TChunk(Chunks.Item[J]).Assign(TChunk(Item[J]));
end {with};
end;
{Returns a alpha data scanline}
function TPngObject.GetAlphaScanline(const LineIndex: Integer): pByteArray;
begin
with Header do
if (ColorType = COLOR_RGBALPHA) or (ColorType = COLOR_GRAYSCALEALPHA) then
Longint(Result) := Longint(ImageAlpha) + (LineIndex * Longint(Width))
else Result := nil; {In case the image does not use alpha information}
end;
{$IFDEF Store16bits}
{Returns a png data extra scanline}
function TPngObject.GetExtraScanline(const LineIndex: Integer): Pointer;
begin
with Header do
Longint(Result) := (Longint(ExtraImageData) + ((Longint(Height) - 1) *
BytesPerRow)) - (LineIndex * BytesPerRow);
end;
{$ENDIF}
{Returns a png data scanline}
function TPngObject.GetScanline(const LineIndex: Integer): Pointer;
begin
with Header do
Longint(Result) := (Longint(ImageData) + ((Longint(Height) - 1) *
BytesPerRow)) - (LineIndex * BytesPerRow);
end;
{Initialize gamma table}
procedure TPngObject.InitializeGamma;
var
i: Integer;
begin
{Build gamma table as if there was no gamma}
FOR i := 0 to 255 do
begin
GammaTable[i] := i;
InverseGamma[i] := i;
end {for i}
end;
{Returns the transparency mode used by this png}
function TPngObject.GetTransparencyMode: TPNGTransparencyMode;
var
TRNS: TChunkTRNS;
begin
with Header do
begin
Result := ptmNone; {Default result}
{Gets the TRNS chunk pointer}
TRNS := Chunks.ItemFromClass(TChunkTRNS) as TChunkTRNS;
{Test depending on the color type}
case ColorType of
{This modes are always partial}
COLOR_RGBALPHA, COLOR_GRAYSCALEALPHA: Result := ptmPartial;
{This modes support bit transparency}
COLOR_RGB, COLOR_GRAYSCALE: if TRNS <> nil then Result := ptmBit;
{Supports booth translucid and bit}
COLOR_PALETTE:
{A TRNS chunk must be present, otherwise it won't support transparency}
if TRNS <> nil then
if TRNS.BitTransparency then
Result := ptmBit else Result := ptmPartial
end {case}
end {with Header}
end;
{Add a text chunk}
procedure TPngObject.AddtEXt(const Keyword, Text: String);
var
TextChunk: TChunkTEXT;
begin
TextChunk := Chunks.Add(TChunkText) as TChunkTEXT;
TextChunk.Keyword := Keyword;
TextChunk.Text := Text;
end;
{Add a text chunk}
procedure TPngObject.AddzTXt(const Keyword, Text: String);
var
TextChunk: TChunkzTXt;
begin
TextChunk := Chunks.Add(TChunkText) as TChunkzTXt;
TextChunk.Keyword := Keyword;
TextChunk.Text := Text;
end;
{Removes the image transparency}
procedure TPngObject.RemoveTransparency;
var
TRNS: TChunkTRNS;
begin
TRNS := Chunks.ItemFromClass(TChunkTRNS) as TChunkTRNS;
if TRNS <> nil then Chunks.RemoveChunk(TRNS)
end;
{Generates alpha information}
procedure TPngObject.CreateAlpha;
var
TRNS: TChunkTRNS;
begin
{Generates depending on the color type}
with Header do
case ColorType of
{Png allocates different memory space to hold alpha information}
{for these types}
COLOR_GRAYSCALE, COLOR_RGB:
begin
{Transform into the appropriate color type}
if ColorType = COLOR_GRAYSCALE then
ColorType := COLOR_GRAYSCALEALPHA
else ColorType := COLOR_RGBALPHA;
{Allocates memory to hold alpha information}
GetMem(ImageAlpha, Integer(Width) * Integer(Height));
FillChar(ImageAlpha^, Integer(Width) * Integer(Height), #255);
end;
{Palette uses the TChunktRNS to store alpha}
COLOR_PALETTE:
begin
{Gets/creates TRNS chunk}
if Chunks.ItemFromClass(TChunkTRNS) = nil then
TRNS := Chunks.Add(TChunkTRNS) as TChunkTRNS
else
TRNS := Chunks.ItemFromClass(TChunkTRNS) as TChunkTRNS;
{Prepares the TRNS chunk}
with TRNS do
begin
Fillchar(PaletteValues[0], 256, 255);
fDataSize := 1 shl Header.BitDepth;
fBitTransparency := False
end {with Chunks.Add};
end;
end {case Header.ColorType}
end;
{Returns transparent color}
function TPngObject.GetTransparentColor: TColor;
var
TRNS: TChunkTRNS;
begin
TRNS := Chunks.ItemFromClass(TChunkTRNS) as TChunkTRNS;
{Reads the transparency chunk to get this info}
if Assigned(TRNS) then Result := TRNS.TransparentColor
else Result := 0
end;
{$OPTIMIZATION OFF}
procedure TPngObject.SetTransparentColor(const Value: TColor);
var
TRNS: TChunkTRNS;
begin
if HeaderPresent then
{Tests the ColorType}
case Header.ColorType of
{Not allowed for this modes}
COLOR_RGBALPHA, COLOR_GRAYSCALEALPHA: Self.RaiseError(
EPNGCannotChangeTransparent, EPNGCannotChangeTransparentText);
{Allowed}
COLOR_PALETTE, COLOR_RGB, COLOR_GRAYSCALE:
begin
TRNS := Chunks.ItemFromClass(TChunkTRNS) as TChunkTRNS;
if not Assigned(TRNS) then TRNS := Chunks.Add(TChunkTRNS) as TChunkTRNS;
{Sets the transparency value from TRNS chunk}
TRNS.TransparentColor := {$IFDEF UseDelphi}ColorToRGB({$ENDIF}Value{$IFDEF UseDelphi}){$ENDIF}
end {COLOR_PALETTE, COLOR_RGB, COLOR_GRAYSCALE)}
end {case}
end;
{Returns if header is present}
function TPngObject.HeaderPresent: Boolean;
begin
Result := ((Chunks.Count <> 0) and (Chunks.Item[0] is TChunkIHDR))
end;
{Returns pixel for png using palette and grayscale}
function GetByteArrayPixel(const png: TPngObject; const X, Y: Integer): TColor;
var
ByteData: Byte;
DataDepth: Byte;
begin
with png, Header do
begin
{Make sure the bitdepth is not greater than 8}
DataDepth := BitDepth;
if DataDepth > 8 then DataDepth := 8;
{Obtains the byte containing this pixel}
ByteData := pByteArray(png.Scanline[Y])^[X div (8 div DataDepth)];
{Moves the bits we need to the right}
ByteData := (ByteData shr ((8 - DataDepth) -
(X mod (8 div DataDepth)) * DataDepth));
{Discard the unwanted pixels}
ByteData:= ByteData and ($FF shr (8 - DataDepth));
{For palette mode map the palette entry and for grayscale convert and
returns the intensity}
case ColorType of
COLOR_PALETTE:
with TChunkPLTE(png.Chunks.ItemFromClass(TChunkPLTE)).Item[ByteData] do
Result := rgb(GammaTable[rgbRed], GammaTable[rgbGreen],
GammaTable[rgbBlue]);
COLOR_GRAYSCALE:
begin
ByteData := GammaTable[ByteData * ((1 shl DataDepth) + 1)];
Result := rgb(ByteData, ByteData, ByteData);
end;
else Result := 0;
end {case};
end {with}
end;
{In case vcl units are not being used}
{$IFNDEF UseDelphi}
function ColorToRGB(const Color: TColor): COLORREF;
begin
Result := Color
end;
{$ENDIF}
{Sets a pixel for grayscale and palette pngs}
procedure SetByteArrayPixel(const png: TPngObject; const X, Y: Integer;
const Value: TColor);
const
ClearFlag: Array[1..8] of Integer = (1, 3, 0, 15, 0, 0, 0, $FF);
var
ByteData: pByte;
DataDepth: Byte;
ValEntry: Byte;
begin
with png.Header do
begin
{Map into a palette entry}
ValEntry := GetNearestPaletteIndex(Png.Palette, ColorToRGB(Value));
{16 bits grayscale extra bits are discarted}
DataDepth := BitDepth;
if DataDepth > 8 then DataDepth := 8;
{Gets a pointer to the byte we intend to change}
ByteData := @pByteArray(png.Scanline[Y])^[X div (8 div DataDepth)];
{Clears the old pixel data}
ByteData^ := ByteData^ and not (ClearFlag[DataDepth] shl ((8 - DataDepth) -
(X mod (8 div DataDepth)) * DataDepth));
{Setting the new pixel}
ByteData^ := ByteData^ or (ValEntry shl ((8 - DataDepth) -
(X mod (8 div DataDepth)) * DataDepth));
end {with png.Header}
end;
{Returns pixel when png uses RGB}
function GetRGBLinePixel(const png: TPngObject;
const X, Y: Integer): TColor;
begin
with pRGBLine(png.Scanline[Y])^[X] do
Result := RGB(rgbtRed, rgbtGreen, rgbtBlue)
end;
{Sets pixel when png uses RGB}
procedure SetRGBLinePixel(const png: TPngObject;
const X, Y: Integer; Value: TColor);
begin
with pRGBLine(png.Scanline[Y])^[X] do
begin
rgbtRed := GetRValue(Value);
rgbtGreen := GetGValue(Value);
rgbtBlue := GetBValue(Value)
end
end;
{Sets a pixel}
procedure TPngObject.SetPixels(const X, Y: Integer; const Value: TColor);
begin
if (X in [0..Width - 1]) and (Y in [0..Height - 1]) then
with Header do
begin
if ColorType in [COLOR_GRAYSCALE, COLOR_PALETTE] then
SetByteArrayPixel(Self, X, Y, Value)
else
SetRGBLinePixel(Self, X, Y, Value)
end {with}
end;
{Returns a pixel}
function TPngObject.GetPixels(const X, Y: Integer): TColor;
begin
if (X in [0..Width - 1]) and (Y in [0..Height - 1]) then
with Header do
begin
if ColorType in [COLOR_GRAYSCALE, COLOR_PALETTE] then
Result := GetByteArrayPixel(Self, X, Y)
else
Result := GetRGBLinePixel(Self, X, Y)
end {with}
else Result := 0
end;
{Returns the image palette}
function TPngObject.GetPalette: HPALETTE;
var
LogPalette: TMaxLogPalette;
i: Integer;
begin
{Palette is avaliable for COLOR_PALETTE and COLOR_GRAYSCALE modes}
if (Header.ColorType in [COLOR_PALETTE, COLOR_GRAYSCALE]) then
begin
{In case the pal}
if TempPalette = 0 then
with LogPalette do
begin
{Prepares the new palette}
palVersion := $300;
palNumEntries := 256;
{Copy entries}
for i := 0 to LogPalette.palNumEntries - 1 do
begin
palPalEntry[i].peRed := Header.BitmapInfo.bmiColors[i].rgbRed;
palPalEntry[i].peGreen := Header.BitmapInfo.bmiColors[i].rgbGreen;
palPalEntry[i].peBlue := Header.BitmapInfo.bmiColors[i].rgbBlue;
palPalEntry[i].peFlags := 0;
end {for i};
{Creates the palette}
TempPalette := CreatePalette(pLogPalette(@LogPalette)^);
end {with LogPalette, if Temppalette = 0}
end {if Header.ColorType in ...};
Result := TempPalette;
end;
//----------------------------------------------------------------------------------------------------------------------
initialization
{Initialize}
ChunkClasses := nil;
{crc table has not being computed yet}
crc_table_computed := FALSE;
{Register the necessary chunks for png}
RegisterCommonChunks;
{Registers TPNGObject to use with TPicture}
{$IFDEF UseDelphi}{$IFDEF RegisterGraphic}
TPicture.RegisterFileFormat('PNG', 'Portable Network Graphics', TPNGObject);
{$ENDIF}{$ENDIF}
finalization
{$IFDEF UseDelphi}{$IFDEF RegisterGraphic}
TPicture.UnregisterGraphicClass(TPNGObject);
{$ENDIF}{$ENDIF}
{Free chunk classes}
FreeChunkClassList;
end.
|