/usr/src/castle-game-engine-5.2.0/images/castleimages.pas is in castle-game-engine-src 5.2.0-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | {
Copyright 2001-2014 Michalis Kamburelis.
This file is part of "Castle Game Engine".
"Castle Game Engine" is free software; see the file COPYING.txt,
included in this distribution, for details about the copyright.
"Castle Game Engine" is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
----------------------------------------------------------------------------
}
(*Loading, saving, and processing of images (TCastleImage and friends).
Storing images in the memory, loading and saving them from/to files in various
formats, resizing, converting to grayscale, copying and merging,
many other image operations --- it's all here.
We include here special image types useful with modern GPUs:
image data compressed for GPU (@link(TGPUCompressedImage))
and 3D image data (every image has @code(Depth) in addition to
@code(Width) and @code(Height)).
The most important class here is @link(TCastleImage).
It represents an image as a simple uncompressed array of pixels.
Descendants of TCastleImage define what exactly is a "pixel".
We have 8-bit color images
(@link(TRGBAlphaImage), @link(TRGBImage),
@link(TGrayscaleAlphaImage) and @link(TGrayscaleImage)).
We also have an image with floating-point precision and range:
@link(TRGBFloatImage).
There is also a more abstract image class @link(TEncodedImage),
representing either uncompressed image (@link(TCastleImage))
or an image with data compressed for GPU (@link(TGPUCompressedImage)).
When reading and writing image files, we understand various image
formats. (See TImageFormat in castleimages_file_formats.inc documentation
for a current list of supported formats,
with comments specific to particular formats.)
The basic loading and saving procedures and LoadImage and SaveImage.
Example usage of this unit:
@longCode(#
var
Image: TCastleImage;
begin
Image := LoadImage('image.png');
{ scale the image to be 2x smaller }
Image.Resize(Image.Width div 2, Image.Height div 2);
SaveImage(Image, 'newimage.png');
end;
#)
This unit is not dependent on OpenGL or any other rendering
library. See @link(CastleGLImages) for OpenGL image operations
(for textures and others).
*)
unit CastleImages;
{$include castleconf.inc}
{$modeswitch nestedprocvars}{$H+}
interface
uses SysUtils, Classes, Math, CastleUtils, CastleVectors, CastleRectangles,
CastlePng, CastleFileFilters, CastleClassUtils, CastleColors,
FGL, FPImage, FPReadPCX, FPReadGIF, FPReadPSD, FPReadTGA, FPReadTiff, FPReadXPM,
FPReadJPEG, FPWriteJPEG, FPReadPNM
{$ifdef CASTLE_PNG_USING_FCL_IMAGE} , FPReadPNG, CastleFPWritePNG {$endif};
type
TAutoAlphaChannel = (acAuto, acNone, acSimpleYesNo, acFullRange);
{ See TCastleImage.AlphaChannel. }
TAlphaChannel = acNone .. acFullRange;
const
{ Default parameters for TEncodedImage.AlphaChannel,
decide how to detect textures alpha channel. }
DefaultAlphaTolerance = 5;
{ Colors ------------------------------------------------------------ }
{ Check if the two RGB colors are equal, ignoring small differences.
All three color components may differ by at most Tolerance.
When Tolerance is 0, this is a normal (exact) comparison. }
function EqualRGB(const Color1, Color2: TVector3Byte; Tolerance: Byte): boolean;
{ TCastleImage --------------------------------------------------------------- }
type
{ Raised by @link(TCastleImage.MakeExtracted) when coordinates on image
are wrong.
Possibly I will use it in more routines in the future. }
EImagePosOutOfRange = class(Exception);
EImageLerpError = class(Exception);
EImageLerpInvalidClasses = class(EImageLerpError);
EImageLerpDifferentSizes = class(EImageLerpError);
EImageAssignmentError = class(Exception);
EImageCannotConvertFpImage = class(Exception);
{ Abstract class for an image with unspecified, possibly compressed,
memory format. The idea is that both uncompressed images (TCastleImage)
and images compressed for GPU (TGPUCompressedImage) are derived from this class. }
TEncodedImage = class
private
FWidth, FHeight, FDepth: Cardinal;
FURL: string;
function ToFpImage: TFPMemoryImage; virtual;
protected
{ Operate on this by Get/Realloc/FreeMem.
It's always freed and nil'ed in destructor. }
FRawPixels: Pointer;
public
{ URL from which this image was loaded, if any. }
property URL: string read FURL write FURL;
destructor Destroy; override;
property Width: Cardinal read FWidth;
property Height: Cardinal read FHeight;
property Depth: Cardinal read FDepth;
property RawPixels: Pointer read FRawPixels;
{ Size of image contents in bytes. }
function Size: Cardinal; virtual; abstract;
{ Is an image empty.
@true means that RawPixels = @nil,
and Width * Height * Depth = 0
(so either Width = 0 or Height = 0 or Depth = 0).
@false means that RawPixels <> nil and Width * Height * Depth <> 0
(so all Width > 0 and Height > 0 and Depth > 0, since they are
Cardinal (unsigned) always). }
function IsEmpty: boolean;
{ Does an image have an alpha channel.
You may also be interested in the AlphaChannel.
AlphaChannel answers always atNone if HasAlpha = false,
and always acSimpleYesNo or acFullRange if HasAlpha = true.
But AlphaChannel may perform longer analysis of pixels
(to differ between acSimpleYesNo and acFullRange), while this
function always executes ultra-fast (as it's constant for each
TCastleImage descendant).
@italic(Descendants implementors notes:) in this class, TCastleImage,
this returns @false. Override to return @true for images with
alpha channel. }
function HasAlpha: boolean; virtual;
{ @abstract(Check does an image have an alpha channel,
and if yes analyze alpha channel: is it a single yes-no (only full
or none values), or does it have alpha values in between?)
This is quite useful for automatic detection how alpha textures
should be displayed: for simple yes/no alpha, OpenGL alpha_test
is a simple solution. For full range alpha, OpenGL blending should
be used. Blending is a little problematic, since it requires
special rendering order, since it doesn't cooperate nicely with
Z-buffer. That's why we try to detect simple yes/no alpha textures,
so that we're able to use simpler alpha test for them.
We return "simple yes/no alpha channel" is all the alpha values
(for every pixel) are 0, or 255, or (when AlphaTolerance <> 0)
are close to them by AlphaTolerance. So, to be precise,
alpha value must be <= AlphaTolerance, or >= 255 - AlphaTolerance.
If any alpha value is between [AlphaTolerance + 1, 255 - AlphaTolerance - 1]
then we return "full range alpha channel".
Note that for AlphaTolerance >= 128, all images are treated as
"simple yes/no alpha". Usually, you want to keep AlphaTolerance small.
@italic(Descendants implementors notes:) in this class, this simply
always returns atNone. For descendants that have alpha channel,
implement it, honouring AlphaTolerance as described. }
function AlphaChannel(
const AlphaTolerance: Byte = DefaultAlphaTolerance):
TAlphaChannel; virtual;
{ Rectangle representing the inside of this image.
Always (Left,Bottom) are zero, and (Width,Height) correspond to image
sizes. }
function Rect: TRectangle;
end;
{ Basic resize interpolation modes, fast and available for all image types. }
TResizeInterpolation = (riNearest, riBilinear);
{ Resize interpolation modes for MakeResized with TResizeNiceInterpolation
parameters. These are much slower than our TResizeInterpolation,
as they are implemented by conversion to FpImage.
However, they offer some extra quality. }
TResizeNiceInterpolation = (
rniNearest,
rniBilinear,
rniMitchel,
rniBlackman,
rniBlackmanSinc,
rniBlackmanBessel,
rniGaussian,
rniHermite,
rniLanczos,
rniQuadratic,
rniCubic,
rniCatrom,
rniHanning,
rniHamming
);
{ An abstract class representing image as a simple array of pixels.
RawPixels is a pointer to Width * Height * Depth of pixels.
What exactly is a "pixel" is undefined in this class. Each descendant
of TCastleImage defines it's own pixel encoding and interpretation.
The only requirement is that all pixels have the same size (PixelSize).
For example, for TRGBImage a "pixel" is a TVector3Byte type
representing a (red, green, blue) color value.
When Depth > 1, the image is actually a 3D (not just 2D!) image.
We call the particular 2D layers then "slices".
Although some TCastleImage methods (and functions in other units, like CastleGLImages)
still operate only on the 1st "slice", that is the 2D image on Depth = 0
--- be careful. But many methods correctly take the depth into consideration.
Pixels in RawPixels are ordered in slices, each slice is ordered in rows,
in each row pixels are specified
from left to right, rows are specified starting from lower row to upper.
This means that you can think of RawPixels as
@longCode(#
^(packed array[0..Depth - 1, 0..Height - 1, 0..Width - 1] of TPixel)
#)
Assuming the above definition, RawPixels^[z, y, x]
is color of pixel at position z, x, y.
Note that specifying rows from lower to upper follows an OpenGL standard,
this makes using this unit with OpenGL straightforward.
Don't ever operate on RawPixels pointer directly --- allocating, reallocating,
freeing memory pointed to by RawPixels is handled inside this class.
You must only worry to always free created TCastleImage instances
(like with any class).
Note that the only valid states of instances of this class
are when (Width * Height * Depth > 0 and RawPixels <> nil) or
(Width * Height * Depth = 0 and RawPixels = nil). Otherwise the fundamental
assumption that RawPixels is a pointer to Width * Height * Depth pixels would
be broken (as nil pointer cannot point to anything, and on the other
side it's rather useless to have a pointer to 0 bytes (since you
can never dereference it anyway) even if theoretically every PtrInt
value can be treated as valid pointer to 0 bytes).
Note about coordinates:
@orderedList(
@item(All X, Y, Z coordinates of pixels are 0-based
(X in range 0..Width-1, and Y in 0..Height-1, and Z in 0..Depth-1).)
@item(If documentation for some method does not specify otherwise,
correctness of coordinates is *not* checked in method,
which can lead to various errors at runtime if you will pass
incorrect coordinates to given routine.)
)
}
TCastleImage = class(TEncodedImage)
private
procedure NotImplemented(const AMethodName: string);
protected
{ Check that both images have the same sizes and Second image class
descends from First image class. If not, raise appropriate ELerpXxx
exceptions.
Some implementation of TRGBImage.LerpWith may require
other checks (since LerpWith may be sometimes allowed between unequal
classes), so this doesn't have to be used by all TRGBImage.LerpWith
implementations (although it's comfortable for simple implementations). }
procedure LerpSimpleCheckConditions(SecondImage: TCastleImage);
{ Like DrawFrom, but can assume that all coordinates and sizes are valid.
Override this to add copying using some more sophisticated method
than just memory copying. }
procedure DrawCore(Source: TCastleImage;
X, Y, SourceX, SourceY, SourceWidth, SourceHeight: Integer); virtual;
public
{ Constructor without parameters creates image with Width = Height = Depth = 0
and RawPixels = nil, so IsEmpty will return @true.
Both constructors must be virtual, this allows to implement things
like TCastleImage.MakeCopy. }
constructor Create; overload; virtual;
constructor Create(
const AWidth, AHeight: Cardinal;
const ADepth: Cardinal = 1); overload; virtual;
{ This is equivalent to SetSize(0, 0, 0).
It sets Width = Height = 0 and RawPixels = nil. }
procedure Empty;
{ Change size (Width and Height and Depth).
Previous pixel contents (RawPixels) are lost,
and the contents of new pixels are undefined.
Use other method, like @link(Resize), if you want to change image size
preserving it's contents. }
procedure SetSize(
const AWidth, AHeight: Cardinal;
const ADepth: Cardinal = 1);
procedure SetSize(const Source: TCastleImage);
{ Size of TPixel in bytes for this TCastleImage descendant. }
class function PixelSize: Cardinal; virtual; abstract;
{ Size of image contents in bytes. }
function Size: Cardinal; override;
{ Deprecated name for ImageSize. }
function ImageSize: Cardinal; deprecated;
{ Number of color components in TPixel.
E.g. RGB is 3 components and RGB+Alpha is 4 components,
RGB+Exponent is 3 components (because it describes only
Red, Green and Blue values (Exponent value is just used
to correctly interpret these, it's not a 4th component)). }
class function ColorComponentsCount: Cardinal; virtual; abstract;
{ Pointer to the (x, y, z) pixel of image.
Note that they don't check X, Y, Z correctness in any way,
it's your responsibility to always pass 0 <= X < Width and
0 <= Y < Height and 0 <= Z < Depth.
Note that this function @italic(should) be reintroduced in descendants
to return the same value but typecasted to something better then Pointer
(something like ^TPixel). }
function PixelPtr(const X, Y: Cardinal; const Z: Cardinal = 0): Pointer;
{ Pointer to the first pixel in the Y row of the image.
Same thing as @link(PixelPtr) but always with X = 0.
Note that this function @italic(should) be reintroduced in descendants
to return the same value but typecasted to something better then Pointer,
preferably something like ^(array of TPixel). }
function RowPtr(const Y: Cardinal; const Z: Cardinal = 0): Pointer;
{ This inverts RGB colors (i.e. changes each RGB component's value
to High(Byte)-value). Doesn't touch other components,
e.g. alpha value in case of TRGBAlphaImage descendant.
Note that this may be not overriden in every TCastleImage descendant,
then default implementation of this method in this class
will raise EInternalError. This also means that you must not
call inherited in descendants when overriding this method. }
procedure InvertRGBColors; virtual;
{ Set the RGB color portion of the pixel.
In case of descendants that have more then RGB components,
other color components are not touched (e.g. in case of TRGBAlphaImage
alpha value of given pixel is not changed).
In case of descendants that don't have anything like RGB encoded
inside (e.g. TGrayscaleImage), this should not be overriden and then
default implementation of this method in this class
will raise EInternalError. This also means that you must not
call inherited in descendants when overriding this method.
As usual, you are responsible for guaranting correctness of given
X, Y coordinates because their correctness is not checked here. }
procedure SetColorRGB(const X, Y: Integer; const v: TVector3Single); virtual;
{ Create a new object that has exactly the same class
and the same contents as this object.
(note: no, this function is *not* constructor, because it's implemented
in TCastleImage, but it always returns some descendant of TCastleImage). }
function MakeCopy: TCastleImage;
{ Change Width and Height and appropriately stretch
image contents.
If ResizeWidth or ResizeHeight is 0 then it means to take
Width or Height, respectively.
So e.g. using ResizeWidth = ResizeHeight = 0 is the same thing
as using ResizeWidth = Width and ResizeHeight = Height and this is NOP.
Remember that resizing may change RawPixels pointer, so all pointers
that you aquired using functions like
RawPixels, RGBPixels, AlphaPixels, RowPtr, PixelPtr
may be invalid after calling Resize.
If ProgressTitle <> '' this will call Progress.Init/Step/Fini
from CastleProgress to indicate progress of operation. }
procedure Resize(ResizeWidth, ResizeHeight: Cardinal;
const Interpolation: TResizeInterpolation = riNearest;
const ProgressTitle: string = '');
{ Change Width and Height and appropriately stretch
image contents.
Preserves corners (provided in the same clockwise way
as TGLImage.Draw3x3: top, right, bottom, left), scaling the Corners
parameter (proportially to image scaling), and making sure that filtering
(especially bilinear) does not "leak" colors from one image area to another.
Effectively, the image is scaled like a 9 separate parts,
and colors cannot bleed from part to another.
Both ResizeWidth, ResizeHeight parameters must be provided and non-zero. }
procedure Resize3x3(const ResizeWidth, ResizeHeight: Cardinal;
var Corners: TVector4Integer;
const Interpolation: TResizeInterpolation);
{ Create a new TCastleImage instance with size ResizeWidth, ResizeHeight
and pixels copied from us and appropriately stretched.
Class of new instance is the same as our class.
As with @link(Resize), ResizeTo* = 0 means to use current Width/Height.
So e.g. using MakeResized(0, 0) is the same thing as using MakeCopy.
As with @link(Resize),
if ProgressTitle <> '' this will call Progress.Init/Step/Fini
from CastleProgress to indicate progress of operation. }
function MakeResized(ResizeWidth, ResizeHeight: Cardinal;
const Interpolation: TResizeInterpolation = riNearest;
const ProgressTitle: string = ''): TCastleImage;
{ Create a new TCastleImage instance with size ResizeWidth, ResizeHeight
and pixels copied from us and appropriately stretched.
It is not guaranteed that class of new instance is the same as our class.
As with @link(Resize), ResizeTo* = 0 means to use current Width/Height.
This uses slow but (potentially) pretty interpolation mode
expressed as TResizeNiceInterpolation.
It is implemented only for some descendants --- currently, TRGBImage
and TRGBAlphaImage. }
function MakeResized(ResizeWidth, ResizeHeight: Cardinal;
const Interpolation: TResizeNiceInterpolation): TCastleImage;
{ Mirror image horizotally (that is right edge is swapped with left edge). }
procedure FlipHorizontal;
{ Mirror image vertically. }
procedure FlipVertical;
{ Make rotated version of the image.
See @link(Rotate) for description of parameters. }
function MakeRotated(Angle: Integer): TCastleImage;
{ Rotate image by Angle * 90 degrees, clockwise.
For example, 0 does nothing. 1 rotates by 90 degrees, 2 rotates
by 180, 3 rotates by 270. All other values (negative too) are circular
(modulo), so e.g. 4 again does nothing, 5 rotates by 90 degrees and so on. }
procedure Rotate(const Angle: Integer);
{ Create a new instance with the same class, and size
TileX * Width and TileY * Height and contents being our contents
duplicated (tiled).
Must be TileX, TileY > 0. }
function MakeTiled(TileX, TileY: Cardinal): TCastleImage;
{ Extract rectangular area of this image.
X0 and Y0 are start position (lower-left corner),
ExtractWidth, ExtractHeight specify size of area.
This checks parameters for correctness -- if start position in not
good or ExtractWidth/Height are too large exception
@link(EImagePosOutOfRange) is raised. }
function MakeExtracted(X0, Y0, ExtractWidth, ExtractHeight: Cardinal): TCastleImage;
{ Set all image pixels to the same value.
This is implemented only in descendants that represent a pixel
as a TVector4Byte (e.g. TRGBAlphaImage) or TVector3Byte
(e.g. TRGBImage, 4th component is ignored in this case).
In this class this simply raises EInternalError to say 'not implemented'.
This also means that you must not call inherited in
descendants when overriding this method. }
procedure Clear(const Pixel: TVector4Byte); overload; virtual;
procedure Clear(const Pixel: TCastleColor); overload;
{ Check do all image pixels have the same value Pixel.
This is implemented only in descendants that represent a pixel
as TVector4Byte or TVector3Byte (4th component is ignored in this
case), just like method @link(Clear).
In this class this simply raises EInternalError to say 'not implemented'.
This also means that you must not call inherited in
descendants when overriding this method. }
function IsClear(const Pixel: TVector4Byte): boolean; virtual;
{ Multiply each RGB color by a matrix.
This is a useful routine for many various conversions of image colors.
Every pixel's RGB color is multiplied by given Matrix,
i.e. PixelRGBColor := Matrix * PixelRGBColor.
If some value in some channel will be < 0, it will be set to 0.
And if it will be > High(Byte), it will be set to High(Byte).
Examples: when
Matrix = IdentityMatrix3Single, this is NOOP.
Matrix = ((2, 0, 0), (0, 1, 0), (0, 0, 1))
red channel is made lighter.
Matrix = ((0, 0, 1), (0, 1, 0), (1, 0, 0))
swaps red and blue channel.
Matrix = ((0.33, 0.33, 0.33),
(0.33, 0.33, 0.33),
(0.33, 0.33, 0.33))
is a simple conversion to grayscale (actually incorrect, even if often
visually acceptable; actually instead of 0.33 one has to use
GrayscaleFloat/ByteValues, this is already implemented
in ImageTransformColorsTo1st function)
Note: it's often more optimal to hard-code necessary color transformations
as TColorModulatorFunc and use ModulateRGB.
This function is only implemented for images that represent Pixel
as RGB values, for now this means TRGBImage and TRGBAlphaImage.
In case of TRGBAlphaImage (or any other class that represents
colors as RGB + something more) alpha channel (i.e. "something more")
is ignored (i.e. left without any modification).
In this class this simply raises EInternalError to say 'not implemented'.
This also means that you must not call inherited in
descendants when overriding this method. }
procedure TransformRGB(const Matrix: TMatrix3Single); virtual;
{ Process each pixel by given function.
If ColorModulator = nil then this procedure does nothing.
Else, every RGB color value of an image will be transformed using
ColorModulator.
Like TransformRGB:
This function is only implemented for images that represent Pixel
as RGB values, for now this means TRGBImage and TRGBAlphaImage.
In case of TRGBAlphaImage (or any other class that represents
colors as RGB + something more) alpha channel (i.e. "something more")
is ignored (i.e. left without any modification).
In this class this simply raises EInternalError to say 'not implemented'.
This also means that you must not call inherited in
descendants when overriding this method. }
procedure ModulateRGB(const ColorModulator: TColorModulatorByteFunc); virtual;
{ Just like ModulateRGB, but this returns new image, not changing initial
image. This means that if ColorModulator = nil this is
equivalent to MakeCopy.
Implemented if and only if ModulateRGB is implemented. }
function MakeModulatedRGB(
const ColorModulator: TColorModulatorByteFunc): TCastleImage;
{ Convert image colors to grayscale.
Implemented if and only if ModulateRGB is implemented.
When image has alpha channel, alpha channel value
(or just anything beyond 3 rgb components) is ignored (not modified).
This changes color to grayscale, but format of memory storage is the same.
For example, for TRGBImage, they are still kept in RGB format
(just Red = Green = Blue). If you want to convert to true Grayscale format,
you should use TRGBImage.ToGrayscale that will create new
TGrayscaleImage instance. }
procedure Grayscale;
{ Convert every image color using Color*Convert function from CastleVectors.
"Channel" parameter determines which Color*Convert function to use
(Red, Green or Blue), must be 0, 1 or 2.
Implemented if and only if ModulateRGB is implemented. }
procedure ConvertToChannelRGB(Channel: Integer);
{ Converts every image color using Color*Strip function from CastleVectors.
"Channel" parameter determines which Color*Strip function to use
(Red, Green or Blue), must be 0, 1 or 2.
Implemented if and only if ModulateRGB is implemented. }
procedure StripToChannelRGB(Channel: Integer);
{ Check if given Image has the same class, the same sizes
(Width, Height) and contains exactly the same pixel values. }
function IsEqual(Image: TCastleImage): boolean;
{ This is like IsEqual, but is compares only given parts of the images.
Note that it's your responsibility to make sure that given areas
are really within the sizes of Self or Image.
Overloaded version without SelfXxx parameters compares whole Self
to given part of Image. Analogously, version without ImageXxx parameters
compares whole Image to part of Self.
@groupBegin }
function ArePartsEqual(
const SelfX0, SelfY0, SelfWidth, SelfHeight: Cardinal;
Image: TCastleImage;
const ImageX0, ImageY0, ImageWidth, ImageHeight: Cardinal): boolean; overload;
function ArePartsEqual(
Image: TCastleImage;
const ImageX0, ImageY0, ImageWidth, ImageHeight: Cardinal): boolean; overload;
function ArePartsEqual(
const SelfX0, SelfY0, SelfWidth, SelfHeight: Cardinal;
Image: TCastleImage): boolean; overload;
{ @groupEnd }
{ Draw one image part on another image.
X, Y is the lower-left position on the destination image where we draw.
Optional SourceX, SourceY, SourceWidth, SourceHeight specify
to use only a part of the source image (without them, we take whole source
image).
The pixel on source image (SourceX, SourceY) will be drawn
on destination image on (X, Y).
The coordinates and sizes are carefully checked, so that we do not
try to take some pixels outside of the source or destination image.
Note that the default implementation of this function in TCastleImage
can only directly copy the pixels, regardless
of what information they have. This makes it very fast,
but not suitable if the source image has some alpha channel
and you want to apply it over a destination image with blending
(adding scaled source to a destination color).
Descendants with alpha channel should override @link(DrawCore)
to handle drawing with blending.
@raises(Exception When actual source/destination image classes are not equal.
In this class, this method can only work when actual image classes
are equal (that is because we directly move blocks of bytes).)
@groupBegin }
procedure DrawFrom(Source: TCastleImage; const X, Y: Integer);
procedure DrawFrom(Source: TCastleImage;
X, Y, SourceX, SourceY, SourceWidth, SourceHeight: Integer);
procedure DrawTo(Destination: TCastleImage; const X, Y: Integer);
{ @groupEnd }
{ Makes linear interpolation of colors from this image and the SecondImage.
Intuitively, every pixel in new image is set to
@preformatted(
(1 - Value) * Self[pixel] + Value * SecondImage[pixel]
)
Both images need to have the exact same size.
If they are not, EImageLerpDifferentSizes is raised.
Not all TCastleImage combinations are allowed. Every subclass is required
to override this to at least handle Lerp between itself.
That is, TRGBImage.Lerp has to handle Lerp with other TRGBImage,
TRGBAlphaImage.Lerp has to handle Lerp with other TRGBAlphaImage etc.
Other combinations may be permitted, if useful and implemented.
EImageLerpInvalidClasses is raised if given class combinations are
not allowed.
In this class, this simply always raises EImageLerpInvalidClasses.
@raises(EImageLerpDifferentSizes When SecondImage size differs
from this image.)
@raises(EImageLerpInvalidClasses When Lerp between this TCastleImage
descendant class and SecondImage class is not implemented.) }
procedure LerpWith(const Value: Single; SecondImage: TCastleImage); virtual;
{ Mix 4 colors, with 4 weights, into a resulting color.
All 4 Colors and OutputColor must be pointers to a pixel of current
image class, that is they must point to PixelSize bytes of memory.
@raises(EImageLerpInvalidClasses When mixing is not implemented
for this image class.) }
class procedure MixColors(const OutputColor: Pointer;
const Weights: TVector4Single; const Colors: TVector4Pointer); virtual;
{ Copy size and contents from Source.
This sets our size (Width, Height and Depth)
to match Source image, and copies pixels from the Source image,
converting them as closely as possible.
For example, converting RGBA to RGB will strip alpha channel,
but copy RGB values.
When implementing descendants: the base implementation of this method
in TCastleImage handles only the case when Image class equals our own class.
And raises EImageAssignmentError in other cases.
Override this method if you want to actually handle some convertions
when assignning.
@raises(EImageAssignmentError If it's not possible to convert from
Source class to us. Not every possible convertion is implemented now.)
}
procedure Assign(const Source: TCastleImage); virtual;
{ Append code to embed this image inside Pascal source code. }
procedure SaveToPascalCode(const ImageName: string;
const ShowProgress: boolean;
var CodeInterface, CodeImplementation, CodeInitialization, CodeFinalization: string);
end;
TCastleImageList = specialize TFPGObjectList<TCastleImage>;
TEncodedImageList = specialize TFPGObjectList<TEncodedImage>;
{ Possible compression of textures for GPU. }
TGPUCompression = (
{ S3TC DXT1 compression, for RGB images with no alpha or simple yes/no alpha.
This compression format is often supported by desktop OpenGL implementations.
See http://en.wikipedia.org/wiki/S3_Texture_Compression about S3TC.
It is also supported by a small number of Android devices.
tcDxt1_RGB and tcDxt1_RGBA are the same compression method,
except in tcDxt1_RGB the alpha information is ignored while rendering,
while in tcDxt1_RGBA the rendering assumes we have simple yes/no alpha.
The difference is equivalent to OpenGL differences in treating
@unorderedList(
@itemSpacing compact
@item GL_COMPRESSED_RGB_S3TC_DXT1_EXT and
@item GL_COMPRESSED_RGBA_S3TC_DXT1_EXT.
)
}
tcDxt1_RGB,
{ S3TC DXT1 compression, @bold(for RGB images with no alpha or simple yes/no alpha).
See above tcDxt1_RGB description for details. }
tcDxt1_RGBA,
{ S3TC DXT3 compression, @bold(for RGBA images with full alpha channel),
best for images with sharp alpha transitions.
This compression format is often supported by desktop OpenGL implementations.
See http://en.wikipedia.org/wiki/S3_Texture_Compression about S3TC. }
tcDxt3,
{ S3TC DXT3 compression, @bold(for RGBA images with full alpha channel),
best for images with smooth alpha transitions.
This compression format is often supported by desktop OpenGL implementations.
See http://en.wikipedia.org/wiki/S3_Texture_Compression about S3TC. }
tcDxt5,
{ PowerVR texture compression (PVRTC) format.
Supported by some Android and iOS devices,
using PowerVR GPU by Imagination Technologies.
See http://en.wikipedia.org/wiki/PVRTC .
To generate such textures, PowerVR provides a nice tool PVRTexTool,
see http://community.imgtec.com/developers/powervr/tools/pvrtextool/ . }
tcPvrtc1_4bpp_RGB,
tcPvrtc1_2bpp_RGB,
tcPvrtc1_4bpp_RGBA,
tcPvrtc1_2bpp_RGBA,
tcPvrtc2_4bpp,
tcPvrtc2_2bpp,
{ ATI texture compression format, @bold(without alpha).
Supported by some Android devices (Adreno GPU from Qualcomm).
There is no perfect program to generate such texture, unfortunately.
The only sensible choice is to use ATI compressonator from
http://developer.amd.com/tools-and-sdks/archive/legacy-cpu-gpu-tools/the-compressonator/ .
Unfortunately, it's installation may fail on some Windows versions
and wine (Linux). We've had most success installing it on 32-bit Windows,
and them copying to wine.
ATI deprecated this program.
Adreno SDK contains library to compress to ATITC formats,
but no useful program to actually convert files to this format
(wrapped in ktx or dds). }
tcATITC_RGB,
{ ATI texture compression format, @bold(with sharp alpha).
Supported by some Android devices (Adreno GPU from Qualcomm). }
tcATITC_RGBA_ExplicitAlpha,
{ ATI texture compression format, @bold(with smooth alpha).
Supported by some Android devices (Adreno GPU from Qualcomm). }
tcATITC_RGBA_InterpolatedAlpha,
{ ETC texture compression, @bold(without alpha).
See http://en.wikipedia.org/wiki/Ericsson_Texture_Compression .
Available on almost all Android OpenGLES 2.0 devices,
unfortunately it doesn't support alpha channel.
It can be generated using various tools --- dedicated etcpack,
also PVRTexTool and ATI compressonator. }
tcETC1
);
TGPUCompressions = set of TGPUCompression;
ECannotFlipCompressedImage = class(Exception);
{ Image compressed using one of the GPU texture compression algorithms. }
TGPUCompressedImage = class(TEncodedImage)
private
FCompression: TGPUCompression;
FSize: Cardinal;
public
constructor Create(const AWidth, AHeight, ADepth: Cardinal;
const ACompression: TGPUCompression);
property Compression: TGPUCompression read FCompression;
{ Size of the whole image data inside RawPixels, in bytes. }
function Size: Cardinal; override;
function HasAlpha: boolean; override;
function AlphaChannel(
const AlphaTolerance: Byte): TAlphaChannel; override;
{ Flip compressed image vertically, losslessly.
This works only for (some) S3TC images.
It uses the knowledge of how S3TC compression works
to losslessly flip the image, without re-compressing it.
The idea is described here
[http://users.telenet.be/tfautre/softdev/ddsload/explanation.htm].
@raises(ECannotFlipCompressedImage
Raised when image Height is not 1, 2, 3
or a multiple of 4 (since the trick doesn't work in these cases,
pixels would move between 4x4 blocks). Note that if Height
is a power of two (as common for OpenGL textures) then it's
always possible to make a flip.) }
procedure FlipVertical;
{ Decompress the image.
This uses DecompressTexture variable, so you have to initialialize it
first (for example to CastleGLImages.GLDecompressTexture) before using this.
@raises(ECannotDecompressTexture If we cannot decompress the texture,
because decompressor is not set or there was some other error
within decompressor.) }
function Decompress: TCastleImage;
function MakeCopy: TGPUCompressedImage;
end;
{ Deprecated alias for TGPUCompressedImage }
TS3TCImage = TGPUCompressedImage deprecated;
ECannotDecompressTexture = class(Exception);
TDecompressTextureFunction = function (Image: TGPUCompressedImage): TCastleImage;
var
{ Assign here texture decompression function that is available.
This way the "decompressor" is pluggable, which means that
you can even use OpenGL to decompress textures, if you're going
to load images while some OpenGL context is active. }
DecompressTexture: TDecompressTextureFunction;
{ TCastleImageClass and arrays of TCastleImageClasses ----------------------------- }
type
{ }
TCastleImageClass = class of TCastleImage;
TEncodedImageClass = class of TEncodedImage;
{ Check is ImageClass one of the items in the ImageClasses array,
or a descendant of one of them. }
function InImageClasses(ImageClass: TEncodedImageClass;
const ImageClasses: array of TEncodedImageClass): boolean; overload;
{ Check is Image class one of the items in the ImageClasses array,
or a descendant of one of them.
This is a shortcut for InImageClasses(Image.ClassType, ImageClasses). }
function InImageClasses(Image: TEncodedImage;
const ImageClasses: array of TEncodedImageClass): boolean; overload;
(*Check if both arrays contain exactly the same classes in the same order.
May be extended in the future to do better checks and return true
also if both array contain the same classes but in different order,
and one array may contain the same classes duplicated any times.
So the intention is that you should treat both arrays as sets
(i.e. order of elements is ignored).
The problem is that this function should be lighting fast
(as the main purpose of it is to use it in constructions like
setting property values, e.g.
@longCode(#
if ImageClassesArraysEqual(Value, SomeProperty) then
begin
SomeProperty := Value;
{ ... do some lengthy operations to update new value of SomeProperty ... }
end;
#)
), and doing smarter checks may cost us a little time.
So for now this function returns
@unorderedList(
@item @true if for sure both arrays contain the same classes and
@item @false if @italic(possibly) they don't contain the same classes.
) *)
function ImageClassesEqual(const Ar1, Ar2: array of TEncodedImageClass): boolean;
{ TCastleImage basic descendants --------------------------------------------- }
type
TRGBAlphaImage = class;
TRGBFloatImage = class;
TGrayscaleImage = class;
TGrayscaleAlphaImage = class;
{ Image with pixel represented as a TVector3Byte (red, green, blue). }
TRGBImage = class(TCastleImage)
private
function GetRGBPixels: PVector3Byte;
class function FromFpImage(const FPImage: TFPMemoryImage): TRGBImage;
function ToFpImage: TFPMemoryImage; override;
protected
procedure DrawCore(Source: TCastleImage;
X, Y, SourceX, SourceY, SourceWidth, SourceHeight: Integer); override;
public
{ This is the same pointer as RawPixels, only typecasted to PVector3Byte }
property RGBPixels: PVector3Byte read GetRGBPixels;
class function PixelSize: Cardinal; override;
class function ColorComponentsCount: Cardinal; override;
function PixelPtr(const X, Y: Cardinal; const Z: Cardinal = 0): PVector3Byte;
function RowPtr(const Y: Cardinal; const Z: Cardinal = 0): PArray_Vector3Byte;
procedure InvertRGBColors; override;
procedure SetColorRGB(const x, y: Integer; const v: TVector3Single); override;
procedure Clear(const Pixel: TVector4Byte); override;
function IsClear(const Pixel: TVector4Byte): boolean; override;
procedure TransformRGB(const Matrix: TMatrix3Single); override;
procedure ModulateRGB(const ColorModulator: TColorModulatorByteFunc); override;
{ Create a new TRGBAlphaImage instance with RGB contents copied from this
image, and alpha fully opaque. }
function ToRGBAlphaImage: TRGBAlphaImage;
{ Convert image to an TRGBFloatImage format.
Although float format offers superior precision compared to 8bit RGB,
there is a slight chance of some unnoticeable loss of information
in such convertion, since floating-point values are involved
in calculation.
But generally this conversion is relatively safe (contrary to
convertion float -> 8-bit RGB, which must be lossy).
But still you should note that doing such convertion has little
sense since float format is useful only when you have colors that can't
be expressed as simple 8-bit RGB. But by using this convertion
you initially fill float image with data that does not have
precision beyond standard 0..255 discreet range for each RGB component... }
function ToRGBFloat: TRGBFloatImage;
function ToGrayscale: TGrayscaleImage;
{ Draw horizontal line. Must be y1 <= y2, else it is NOOP. }
procedure HorizontalLine(const x1, x2, y: Integer;
const Color: TVector3Byte);
procedure HorizontalLine(const x1, x2, y: Integer;
const Color: TCastleColor);
{ Draw vertical line. Must be x1 <= x2, else it is NOOP. }
procedure VerticalLine(const x, y1, y2: Integer;
const Color: TVector3Byte);
procedure VerticalLine(const x, y1, y2: Integer;
const Color: TCastleColor);
{ Create image by merging two images according to a (third) mask image.
This is a very special constructor.
It creates image with the same size as MapImage.
It also resizes ReplaceWhiteImage, ReplaceBlackImage
to the size of MapImage.
Then it inits color of each pixel of our image with
combined colors of two pixels on the same coordinates from
ReplaceWhiteImage, ReplaceBlackImage, something like
@preformatted(
Pixel[x, y] := ReplaceWhiteImage[x, y] * S +
ReplaceBlackImage[x, y] * (S-1);
)
where S = average of red, gree, blue of color MapImage[x, y].
This means that final image will look like ReplaceWhiteImage
in the areas where MapImage is white, and it will look like
ReplaceBlackImage in the areas where MapImage is black. }
constructor CreateCombined(const MapImage: TRGBImage;
var ReplaceWhiteImage, ReplaceBlackImage: TRGBImage);
procedure LerpWith(const Value: Single; SecondImage: TCastleImage); override;
class procedure MixColors(const OutputColor: Pointer;
const Weights: TVector4Single; const Colors: TVector4Pointer); override;
procedure Assign(const Source: TCastleImage); override;
end;
TRGBAlphaImage = class(TCastleImage)
private
FPremultipliedAlpha: boolean;
function GetAlphaPixels: PVector4Byte;
class function FromFpImage(const FPImage: TFPMemoryImage): TRGBAlphaImage;
function ToFpImage: TFPMemoryImage; override;
public
{ This is the same pointer as RawPixels, only typecasted to PVector4Byte }
property AlphaPixels: PVector4Byte read GetAlphaPixels;
class function PixelSize: Cardinal; override;
class function ColorComponentsCount: Cardinal; override;
function PixelPtr(const X, Y: Cardinal; const Z: Cardinal = 0): PVector4Byte;
function RowPtr(const Y: Cardinal; const Z: Cardinal = 0): PArray_Vector4Byte;
procedure InvertRGBColors; override;
procedure SetColorRGB(const x, y: Integer; const v: TVector3Single); override;
procedure Clear(const Pixel: TVector4Byte); override;
function IsClear(const Pixel: TVector4Byte): boolean; override;
{ Set alpha channel on every pixel to the same given value. }
procedure ClearAlpha(const Alpha: Byte);
procedure TransformRGB(const Matrix: TMatrix3Single); override;
procedure ModulateRGB(const ColorModulator: TColorModulatorByteFunc); override;
{ Set alpha of every pixel to either AlphaOnColor
(when color of pixel is equal to AlphaColor with Tolerance,
see @link(EqualRGB)) or AlphaOnNoColor. }
procedure AlphaDecide(const AlphaColor: TVector3Byte;
Tolerance: Byte; AlphaOnColor: Byte; AlphaOnNoColor: Byte);
{ Copy RGB contents from one image, and alpha contents from the other.
RGB channels are copied from the RGB image,
alpha channel is copied from the Grayscale image. Given RGB and Grayscale
images must have the same size, and this is the resulting
size of this image after Compose call. }
procedure Compose(RGB: TRGBImage; AGrayscale: TGrayscaleImage);
function HasAlpha: boolean; override;
function AlphaChannel(
const AlphaTolerance: Byte): TAlphaChannel; override;
procedure LerpWith(const Value: Single; SecondImage: TCastleImage); override;
class procedure MixColors(const OutputColor: Pointer;
const Weights: TVector4Single; const Colors: TVector4Pointer); override;
{ Remove alpha channel. }
function ToRGBImage: TRGBImage;
{ Flatten to grayscale. }
function ToGrayscaleAlphaImage: TGrayscaleAlphaImage;
{ Flatten to grayscale and remove alpha channel. }
function ToGrayscaleImage: TGrayscaleImage;
{ Premultiply the RGB channel with alpha, to make it faster
to use this image as source for TCastleImage.DrawTo and
TCastleImage.DrawFrom operations. Changes @link(PremultipliedAlpha)
from @false to @true. Unless @link(PremultipliedAlpha) was
already @true, in which case this method does nothing --- this way
it is safe to call this many times, we will not repeat multiplying.
@italic(The image with premultiplied alpha can only be used
with a subset of image routines that actually support premultiplied alpha.)
Right now, these are only TCastleImage.DrawTo and
TCastleImage.DrawFrom. Image with PremultipliedAlpha can be used
as a source for drawing, and the results will be the same as without
premultiplying, but faster. }
procedure PremultiplyAlpha;
property PremultipliedAlpha: boolean read FPremultipliedAlpha;
end;
{ Image with high-precision RGB colors encoded as 3 floats. }
TRGBFloatImage = class(TCastleImage)
private
function GetRGBFloatPixels: PVector3Single;
public
{ This is the same pointer as RawPixels, only typecasted to PVector3Single }
property RGBFloatPixels: PVector3Single read GetRGBFloatPixels;
class function PixelSize: Cardinal; override;
class function ColorComponentsCount: Cardinal; override;
function PixelPtr(const X, Y: Cardinal; const Z: Cardinal = 0): PVector3Single;
function RowPtr(const Y: Cardinal; const Z: Cardinal = 0): PArray_Vector3Single;
procedure SetColorRGB(const x, y: Integer; const v: TVector3Single); override;
procedure Clear(const Pixel: TVector3Single); reintroduce;
function IsClear(const Pixel: TVector3Single): boolean; reintroduce;
{ Converts TRGBFloatImage to TRGBImage.
Colors in pixels are simply rounded using @link(Vector3Byte).
So such convertion not only kills the floating-point
precision in float format but also clamps color components
to 0..1. }
function ToRGBImage: TRGBImage;
{ Every component (red, green, blue) of every pixel
is multiplied by Scale. }
procedure ScaleColors(const Scale: Single);
{ Every component (red, green, blue) or every pixel
is changed to Power(Value, Exp).
So e.g. Exp = 1/2.2 gives commonly used gamma correction. }
procedure ExpColors(const Exp: Single);
procedure LerpWith(const Value: Single; SecondImage: TCastleImage); override;
class procedure MixColors(const OutputColor: Pointer;
const Weights: TVector4Single; const Colors: TVector4Pointer); override;
end;
{ Grayscale image. Color is a simple Byte value. }
TGrayscaleImage = class(TCastleImage)
private
FTreatAsAlpha: boolean;
function GetGrayscalePixels: PByte;
class function FromFpImage(const FPImage: TFPMemoryImage): TGrayscaleImage;
function ToFpImage: TFPMemoryImage; override;
public
{ This is the same pointer as RawPixels, only typecasted to PByte }
property GrayscalePixels: PByte read GetGrayscalePixels;
class function PixelSize: Cardinal; override;
class function ColorComponentsCount: Cardinal; override;
function PixelPtr(const X, Y: Cardinal; const Z: Cardinal = 0): PByte;
function RowPtr(const Y: Cardinal; const Z: Cardinal = 0): PByteArray;
procedure Clear(const Pixel: Byte); reintroduce;
function IsClear(const Pixel: Byte): boolean; reintroduce;
{ Every pixels value is halved (divided by 2).
This is done by simple bitshift, so you can be sure that all
components are < 2^7 after this. }
procedure HalfColors;
{ Add an alpha channel.
The newly created alpha channel will have constant opaque alpha,
except in the special case of TGrayscaleImage.TreatAsAlpha = @true
(where the contents will be copied to alpha, and intensity set to white). }
function ToGrayscaleAlphaImage: TGrayscaleAlphaImage;
procedure LerpWith(const Value: Single; SecondImage: TCastleImage); override;
class procedure MixColors(const OutputColor: Pointer;
const Weights: TVector4Single; const Colors: TVector4Pointer); override;
{ Should we treat grayscale image as pure alpha channel (without any color
information) when using this as a texture.
This property is meaningful only for a small subset of operations,
right now: only when creating OpenGL texture from this image.
If @true, then the grayscale pixel data will be loaded as alpha channel
contents (GL_ALPHA texture for OpenGL,
it modifies only the fragments alpha value,
it doesn't have any "color" in the normal sense).
It is also the only way for TGrayscaleImage to return AlphaChannel <> acNone. }
property TreatAsAlpha: boolean
read FTreatAsAlpha write FTreatAsAlpha;
function AlphaChannel(
const AlphaTolerance: Byte): TAlphaChannel; override;
procedure Assign(const Source: TCastleImage); override;
end;
{ Grayscale image with an alpha channel.
Each pixel is two bytes: grayscale + alpha. }
TGrayscaleAlphaImage = class(TCastleImage)
private
function GetGrayscaleAlphaPixels: PVector2Byte;
class function FromFpImage(const FPImage: TFPMemoryImage): TGrayscaleAlphaImage;
function ToFpImage: TFPMemoryImage; override;
public
{ This is the same pointer as RawPixels, only typecasted to PVector2Byte }
property GrayscaleAlphaPixels: PVector2Byte read GetGrayscaleAlphaPixels;
class function PixelSize: Cardinal; override;
class function ColorComponentsCount: Cardinal; override;
function PixelPtr(const X, Y: Cardinal; const Z: Cardinal = 0): PVector2Byte;
function RowPtr(const Y: Cardinal; const Z: Cardinal = 0): PArray_Vector2Byte;
procedure Clear(const Pixel: TVector2Byte); reintroduce;
function IsClear(const Pixel: TVector2Byte): boolean; reintroduce;
function HasAlpha: boolean; override;
function AlphaChannel(
const AlphaTolerance: Byte): TAlphaChannel; override;
procedure LerpWith(const Value: Single; SecondImage: TCastleImage); override;
class procedure MixColors(const OutputColor: Pointer;
const Weights: TVector4Single; const Colors: TVector4Pointer); override;
procedure Assign(const Source: TCastleImage); override;
end;
{ RGBE <-> 3 Single color convertion --------------------------------- }
{ Encode RGB color as Red + Green + Blue + Exponent format.
This allows you to encode high-precision colors in 4 bytes,
see ifRGBE image format for pointers why this is useful.
Each component of V (red, green, blue) must be from range
[0, +infinity), not merely from [0, 1].
That is, V must have only nonnegative values. }
function Vector3ToRGBE(const v: TVector3Single): TVector4Byte;
{ Decode Red + Green + Blue + Exponent back into RGB (3 floats). }
function VectorRGBETo3Single(const v: TVector4Byte): TVector3Single;
{ File formats managing ----------------------------------------------------- }
{ Does this MIME type correspond to image. }
function IsImageMimeType(const MimeType: string;
const OnlyLoadable, OnlySaveable: boolean): boolean;
{ List available image file formats.
This is basically for debug/info purposes, you can show this to user
to let him know which formats are supported (and by which extensions
they are recognized). Although almost always a better way to show
this to user is just to use SaveImage_FileFilters with a save dialog
like TCastleWindowCustom.FileDialog,
this shows file types in the open/save dialog,
so it's most natural and convenient to user.
ListImageExtsLong produces a multiline info (separated by NL, last line not terminated
by NL), shows all extensions and FormatName for each file format.
Each line starts with LinePrefix.
ListImageExtsShort writes all recognized extensions separated by comma (', ').
@groupBegin }
function ListImageExtsLong(OnlyLoadable, OnlySaveable: boolean; const LinePrefix: string): string;
function ListImageExtsShort(OnlyLoadable, OnlySaveable: boolean): string;
{ @groupEnd }
{ Guess MIME type from image extension. Empty string if cannot guess. }
function ImageExtToMimeType(Ext: string): string;
{ loading image -------------------------------------------------------------- }
type
{ }
EImageLoadError = class(Exception);
EInvalidImageFormat = class(EImageLoadError);
EUnableToLoadImage = class(EImageLoadError);
EImageFormatNotSupported = class(Exception);
{ TODO: zrobic LoadImageGuess ktore zgaduje format na podstawie
zawartosci. }
(*The ultimate procedure to load an image from a file or URL.
URL is downloaded using CastleDownload unit.
As always, if you all you care about is loading normal files, then just pass
a normal filename (absolute or relative to the current directory)
as the URL parameter.
Simple examples:
@longCode(#
{ When you don't care what TCastleImage descendant you get: }
Image := LoadImage('image.png');
{ When you insist on getting TRGBImage, that is 8-bit color image
without an alpha channel. }
ImageRGB := LoadImage('image.png', [TRGBImage]) as TRGBImage;
#)
Image file format may be given explicitly (overloaded version with
Format parameter), or guessed based on URL extension
(which can be given explicitly by TypeExt,
or automatically calculated from full URL).
For now, we cannot guess the file format based on file contents
or MIME type (the latter case would be sensible for http URLs).
AllowedImageClasses says what image classes are allowed.
As a special case, AllowedImageClasses = [] is equivalent to
AllowedImageClasses = [TCastleImage] which says that all TCastleImage descendants
are allowed. Then this function will do everything it can to load
any image into the best subclass of TCastleImage, losing as little image
information it can.
Example: consider you're loading a PNG file. Let's suppose you're
loading it with AllowedImageClasses = []. Then you can get
TGrayscaleImage, TGrayscaleAlphaImage, TRGBImage, TRGBAlphaImage,
depending on whether PNG file is grayscale or not and has alpha or not.
Now let's suppose you specified AllowedImageClasses = [TRGBImage].
If PNG file will not be grayscale and not have alpha channel,
LoadImage will return TRGBImage descendant, as before.
But if PNG fill *will* have alpha channel then
LoadImage will simply ignore (strip) alpha channel and return you TRGBImage.
Similar thing for grayscale: if image file was grayscale but you requested
only TRGBImage, then grayscale may be "expanded" into full three-channel
RGB.
There can also happen reverse situation: you e.g. insist that
AllowedImageClasses = [TRGBAlphaImage] but given PNG image does not
have alpha channel. In this case LoadImage may add "dummy" alpha channel
(everywhere equal to 1.0 or High(Byte)).
Similar thing when you e.g. gave AllowedImageClasses = [TRGBFloatImage]
but you're loading from PNG image. In this case you want float precision,
but image file cannot offer it. So LoadImage can simply convert
discreet values to appropriating floating point values.
If at any point LoadImage will find that it's unable to satisfy
AllowedImageClasses, it will raise @link(EUnableToLoadImage).
@raises(EUnableToLoadImage If Image cannot be loaded into
allowed AllowedImageClasses.)
@raises(EImageFormatNotSupported If image file format cannot be loaded at all.
This can happen if format is totally unknown (not recognized
MIME type, derived from file extension in case of local files)
or if this image format cannot be loaded at all.)
@seealso LoadEncodedImage
@groupBegin *)
function LoadImage(Stream: TStream; const MimeType: string;
const AllowedImageClasses: array of TEncodedImageClass)
:TCastleImage; overload;
function LoadImage(const URL: string): TCastleImage; overload;
function LoadImage(const URL: string;
const AllowedImageClasses: array of TEncodedImageClass)
:TCastleImage; overload;
function LoadImage(const URL: string;
const AllowedImageClasses: array of TEncodedImageClass;
const ResizeWidth, ResizeHeight: Cardinal;
const Interpolation: TResizeInterpolation = riNearest): TCastleImage; overload;
{ @groupEnd }
{ Load image to TEncodedImage format.
This allows loading image compressed with GPU, which is good for optimally
loading it to GPU. However, the operations on GPU-compressed image are very
limited, we generally cannot do much with GPU-compressed date except
rendering it.
@seealso LoadImage
@groupBegin }
function LoadEncodedImage(Stream: TStream; const MimeType: string;
const AllowedImageClasses: array of TEncodedImageClass)
:TEncodedImage; overload;
function LoadEncodedImage(const URL: string): TEncodedImage; overload;
function LoadEncodedImage(URL: string;
const AllowedImageClasses: array of TEncodedImageClass)
:TEncodedImage; overload;
{ @groupEnd }
{ saving image --------------------------------------------------------------- }
type
{ }
EImageSaveError = class(Exception);
{ Save image to a file. Takes URL as parameter, you can give @code(file) URL
or just a normal filename.
File format is determined by looking at URL (guessing MIME type using
URIMimeType), or given explicitly as MimeType,
or just given explicitly as Format parameter.
Image class does @bold(not)
affect the created image file format, on the assumption that the
"memory format" of the image (what TCastleImage descendant is used)
can be orthogonal to the actual "file format" used to save this file.
Tries to write the image preserving it as closely as possible in this
image format. When it's not possible, according conversions may be done:
floating point precision of TRGBFloatImage may be lost (if saving
to any file format besides RGBE file, although saving to OpenEXR may also
preserve it once implemented), alpha channel may be lost,
grayscale may be expanded and such.
Although not absolutely all conversions are implemented for now.
You can be sure that
all image formats (that allow any saving at all) can be saved
from TRGBImage. Also TRGBFloatImage can be saved to RGBE file.
Also PNG format supports full collection (grayscale/rgb, alpha/no alpha
are all perfectly possible in PNG file; and TRGBFloatImage will be just converted
to 8-bit RGB before saving to PNG).
@raises(EImageSaveError When it's not possible to save image,
because of Img class (memory format) and/or image file format.)
@groupBegin }
procedure SaveImage(const img: TEncodedImage; const MimeType: string; Stream: TStream); overload;
procedure SaveImage(const Img: TEncodedImage; const URL: string); overload;
{ @groupEnd }
{ Other TCastleImage processing ---------------------------------------------------- }
{ Choose TCastleImage descendant best matching for this image file format.
The only purpose of this for now is to pick TRGBFloatImage for RGBE files,
chooses TRGBImage for anything else.
For the overloaded version with URL, file format is determined
by guessing based on file extension.
@groupBegin }
function ImageClassBestForSavingToFormat(const URL: string): TCastleImageClass;
{ @groupEnd }
var
{ File filters if you want to choose a file that can be loaded/saved
by appropriate functions from Images unit.
These objects should be treated as read-only outside this unit.
Initialization / finalization of this unit automatically take care of them.
@groupBegin }
LoadImage_FileFilters: TFileFilterList;
SaveImage_FileFilters: TFileFilterList;
{ @groupEnd }
{ Maximum alpha channel type. Chooses "full range" if anything is "full range",
otherwise choose "simple yes/no" if anything is "simple yes/no",
otherwise returns "no alpha channel". }
procedure AlphaMaxTo1st(var A: TAlphaChannel; const B: TAlphaChannel);
function StringToAlpha(S: string; var WarningDone: boolean): TAutoAlphaChannel;
const
AlphaToString: array [TAutoAlphaChannel] of string =
('AUTO', 'NONE', 'SIMPLE_YES_NO', 'FULL_RANGE');
type
TGPUCompressionInfo = object
Name: string;
RequiresPowerOf2: boolean;
AlphaChannel: TAlphaChannel;
end;
const
GPUCompressionInfo: array [TGPUCompression] of TGPUCompressionInfo =
( (Name: 'DXT1 (no alpha)' ; RequiresPowerOf2: true ; AlphaChannel: acNone),
(Name: 'DXT1' ; RequiresPowerOf2: true ; AlphaChannel: acSimpleYesNo),
(Name: 'DXT3' ; RequiresPowerOf2: true ; AlphaChannel: acFullRange),
(Name: 'DXT5' ; RequiresPowerOf2: true ; AlphaChannel: acFullRange),
{ See http://community.imgtec.com/files/pvrtc-texture-compression-user-guide/
"PVRTC2 vs PVRTC1" section --- PVRTC1 require power-of-two. } { }
(Name: 'PVRTC1_4bpp_RGB' ; RequiresPowerOf2: true ; AlphaChannel: acNone),
(Name: 'PVRTC1_2bpp_RGB' ; RequiresPowerOf2: true ; AlphaChannel: acNone),
(Name: 'PVRTC1_4bpp_RGBA' ; RequiresPowerOf2: true ; AlphaChannel: acFullRange),
(Name: 'PVRTC1_2bpp_RGBA' ; RequiresPowerOf2: true ; AlphaChannel: acFullRange),
(Name: 'PVRTC2_4bpp' ; RequiresPowerOf2: false; AlphaChannel: acFullRange),
(Name: 'PVRTC2_2bpp' ; RequiresPowerOf2: false; AlphaChannel: acFullRange),
{ Tests show that ATITC does not need power-of-two sizes. }
(Name: 'ATITC_RGB' ; RequiresPowerOf2: false; AlphaChannel: acNone),
(Name: 'ATITC_RGBA_ExplicitAlpha' ; RequiresPowerOf2: false; AlphaChannel: acFullRange),
(Name: 'ATITC_RGBA_InterpolatedAlpha'; RequiresPowerOf2: false; AlphaChannel: acFullRange),
{ TODO: unconfirmed RequiresPowerOf2 for ETC1. } { }
(Name: 'ETC1' ; RequiresPowerOf2: true ; AlphaChannel: acNone)
);
type
TLoadImagePreprocessEvent = procedure (var ImageUrl: string);
var
{ If assigned, all URLs loaded by LoadImage and LoadEncodedImage are processed
by this event. This allows to globally modify / observe your images paths,
e.g. to use GPU compressed alternative versions. }
LoadImagePreprocess: TLoadImagePreprocessEvent;
{$undef read_interface}
implementation
uses ExtInterpolation, FPCanvas, FPImgCanv,
CastleProgress, CastleStringUtils, CastleFilesUtils, CastleWarnings,
CastleDDS, CastleDownload, CastleURIUtils;
{ parts ---------------------------------------------------------------------- }
{$I castleimages_file_formats.inc}
{$I images_bmp.inc}
{$ifndef CASTLE_PNG_USING_FCL_IMAGE}
{$I images_png.inc}
{$endif}
{$I images_fpimage.inc}
{$I images_ppm.inc}
{$I images_ipl.inc}
{$I images_rgbe_fileformat.inc}
{$I images_external_tool.inc}
{$I images_dds.inc}
{ Colors ------------------------------------------------------------------ }
function EqualRGB(const Color1, Color2: TVector3Byte; Tolerance: Byte): boolean;
begin
result:=(Abs(Smallint(Color1[0])-Color2[0]) <= tolerance) and
(Abs(Smallint(Color1[1])-Color2[1]) <= tolerance) and
(Abs(Smallint(Color1[2])-Color2[2]) <= tolerance);
end;
{ TEncodedImage -------------------------------------------------------------- }
destructor TEncodedImage.Destroy;
begin
FreeMemNiling(FRawPixels);
inherited;
end;
function TEncodedImage.IsEmpty: boolean;
begin
Result := RawPixels = nil;
end;
function TEncodedImage.HasAlpha: boolean;
begin
Result := false;
end;
function TEncodedImage.AlphaChannel(
const AlphaTolerance: Byte): TAlphaChannel;
begin
Result := acNone;
end;
function TEncodedImage.Rect: TRectangle;
begin
Result := Rectangle(0, 0, Width, Height);
end;
{ TCastleImage --------------------------------------------------------------- }
constructor TCastleImage.Create;
begin
inherited;
{ Everything is already inited to nil and 0. }
end;
constructor TCastleImage.Create(
const AWidth, AHeight: Cardinal;
const ADepth: Cardinal = 1);
begin
Create;
SetSize(AWidth, AHeight, ADepth);
end;
procedure TCastleImage.Empty;
begin
FreeMemNiling(FRawPixels);
FWidth := 0;
FHeight := 0;
FDepth := 0;
end;
procedure TCastleImage.SetSize(const AWidth, AHeight: Cardinal;
const ADepth: Cardinal = 1);
begin
if (FWidth <> AWidth) or
(FHeight <> AHeight) or
(FDepth <> ADepth) then
begin
FreeMemNiling(FRawPixels);
FWidth := AWidth;
FHeight := AHeight;
FDepth := ADepth;
if (AWidth <> 0) and (AHeight <> 0) and (ADepth <> 0) then
FRawPixels := GetMem(PixelSize * AWidth * AHeight * ADepth);
end;
end;
procedure TCastleImage.SetSize(const Source: TCastleImage);
begin
SetSize(Source.Width, Source.Height, Source.Depth);
end;
function TCastleImage.PixelPtr(const X, Y: Cardinal; const Z: Cardinal = 0): Pointer;
begin
Result := PointerAdd(RawPixels, PixelSize * (Width * (Height * Z + Y) + X));
end;
function TCastleImage.RowPtr(const Y: Cardinal; const Z: Cardinal = 0): Pointer;
begin
Result := PointerAdd(RawPixels, PixelSize * (Width * (Height * Z + Y)));
end;
procedure TCastleImage.NotImplemented(const AMethodName: string);
begin
raise EInternalError.Create(AMethodName +
' method not implemented for this TCastleImage descendant');
end;
procedure TCastleImage.InvertRGBColors;
begin
NotImplemented('InvertRGBColors');
end;
procedure TCastleImage.SetColorRGB(const x, y: Integer; const v: TVector3Single);
begin
NotImplemented('SetColorRGB');
end;
function TCastleImage.Size: Cardinal;
begin
Result := Width * Height * Depth * PixelSize;
end;
function TCastleImage.ImageSize: Cardinal;
begin
Result := Size;
end;
function TCastleImage.MakeCopy: TCastleImage;
begin
Result := TCastleImageClass(Self.ClassType).Create(Width, Height, Depth);
Move(RawPixels^, Result.RawPixels^, Size);
Result.FURL := URL;
end;
type
TMixColorsFunction = procedure (const OutputColor: Pointer;
const Weights: TVector4Single; const Colors: TVector4Pointer) of object;
{ This does the real resizing work.
It assumes that SourceData and DestinData pointers are already allocated.
DestinWidth, DestinHeight must not be 0. }
procedure InternalResize(PixelSize: Cardinal;
const SourceData: Pointer; const SourceRect: TRectangle; const SourceWidth, SourceHeight: Cardinal;
const DestinData: Pointer; const DestinRect: TRectangle; const DestinWidth, DestinHeight: Cardinal;
const Interpolation: TResizeInterpolation;
const MixColors: TMixColorsFunction;
const ProgressTitle: string);
var
DestinY: Integer;
procedure MakeLineNearest;
{ write row DestinY of DestinData }
var
DestinX, SourceX, SourceY: Integer;
SourceRow, DestinRow: PtrUInt;
begin
SourceY := SourceRect.ClampY(DestinY * SourceHeight div DestinHeight);
SourceRow := PtrUInt(SourceData) + SourceWidth * SourceY * PixelSize;
DestinRow := PtrUInt(DestinData) + DestinWidth * DestinY * PixelSize;
for DestinX := DestinRect.Left to DestinRect.Right - 1 do
begin
SourceX := SourceRect.ClampX(DestinX * SourceWidth div DestinWidth);
Move(Pointer(PtrUInt(SourceRow + SourceX * PixelSize))^,
Pointer(PtrUInt(DestinRow + DestinX * PixelSize))^,
PixelSize);
end;
end;
procedure MakeLineBilinear;
var
{ For every destination pixel, we consider 4 neighbor source pixels.
- SourceX1 / SourceX2 are smaller / larger X coordinates in source.
- SourceY1 / SourceY2 are smaller / larger Y coordinates in source.
- SourceXFrac / SourceYFrac are fractional parts (in [0..1])
that say how close our perfect point (from which we should take
destination color) is to 4 neighbor pixels. }
DestinX, SourceX1, SourceX2, SourceY1, SourceY2: Integer;
Source1Row, Source2Row, DestinRow: PtrUInt;
SourceXFrac, SourceYFrac: Single;
Weights: TVector4Single;
Colors: TVector4Pointer;
begin
SourceYFrac := DestinY * SourceHeight / DestinHeight;
SourceY1 := Max(Trunc(SourceYFrac), SourceRect.Bottom);
SourceY2 := Min(SourceY1 + 1, SourceRect.Top - 1);
SourceYFrac := Frac(SourceYFrac);
Source1Row := PtrUInt(SourceData) + SourceWidth * SourceY1 * PixelSize;
Source2Row := PtrUInt(SourceData) + SourceWidth * SourceY2 * PixelSize;
DestinRow := PtrUInt(DestinData) + DestinWidth * DestinY * PixelSize;
for DestinX := DestinRect.Left to DestinRect.Right - 1 do
begin
SourceXFrac := DestinX * SourceWidth / DestinWidth;
SourceX1 := Trunc(SourceXFrac);
if SourceX1 < SourceRect.Left then
SourceX1 := SourceRect.Left;
SourceX2 := SourceX1 + 1;
if SourceX2 >= SourceRect.Right then
SourceX2 := SourceRect.Right - 1;
SourceX1 *= PixelSize;
SourceX2 *= PixelSize;
SourceXFrac := Frac(SourceXFrac);
Weights[0] := SourceXFrac * SourceYFrac;
Colors[0] := Pointer(PtrUInt(Source2Row + SourceX2));
Weights[1] := (1 - SourceXFrac) * SourceYFrac;
Colors[1] := Pointer(PtrUInt(Source2Row + SourceX1));
Weights[2] := (1 - SourceXFrac) * (1 - SourceYFrac);
Colors[2] := Pointer(PtrUInt(Source1Row + SourceX1));
Weights[3] := SourceXFrac * (1 - SourceYFrac);
Colors[3] := Pointer(PtrUInt(Source1Row + SourceX2));
MixColors(Pointer(PtrUInt(DestinRow + DestinX * PixelSize)), Weights, Colors);
end;
end;
type
TMakeLineFunction = procedure is nested;
var
MakeLine: TMakeLineFunction;
begin
case Interpolation of
riNearest : MakeLine := @MakeLineNearest;
riBilinear: MakeLine := @MakeLineBilinear;
else raise EInternalError.Create('Unknown Interpolation for InternalResize');
end;
if ProgressTitle = '' then
begin
for DestinY := DestinRect.Bottom to DestinRect.Top - 1 do
MakeLine;
end else
begin
Progress.Init(DestinHeight, ProgressTitle);
try
for DestinY := DestinRect.Bottom to DestinRect.Top - 1 do
begin
MakeLine;
Progress.Step;
end;
finally Progress.Fini end;
end;
end;
procedure TCastleImage.Resize(ResizeWidth, ResizeHeight: Cardinal;
const Interpolation: TResizeInterpolation;
const ProgressTitle: string);
var
NewPixels: Pointer;
begin
if ((ResizeWidth <> 0) and (ResizeWidth <> Width)) or
((ResizeHeight <> 0) and (ResizeHeight <> Height)) then
begin
{ Make both ResizeTo* non-zero. }
if ResizeWidth = 0 then ResizeWidth := Width;
if ResizeHeight = 0 then ResizeHeight := Height;
NewPixels := GetMem(ResizeWidth * ResizeHeight * PixelSize);
InternalResize(PixelSize,
RawPixels, Rect, Width, Height,
NewPixels, Rectangle(0, 0, ResizeWidth, ResizeHeight), ResizeWidth, ResizeHeight,
Interpolation, @MixColors, ProgressTitle);
FreeMemNiling(FRawPixels);
FRawPixels := NewPixels;
FWidth := ResizeWidth;
FHeight := ResizeHeight;
end;
end;
function TCastleImage.MakeResized(ResizeWidth, ResizeHeight: Cardinal;
const Interpolation: TResizeInterpolation;
const ProgressTitle: string): TCastleImage;
begin
{ Make both ResizeTo* non-zero. }
if ResizeWidth = 0 then ResizeWidth := Width;
if ResizeHeight = 0 then ResizeHeight := Height;
Result := TCastleImageClass(ClassType).Create(ResizeWidth, ResizeHeight);
try
Result.FURL := URL;
if not IsEmpty then
InternalResize(PixelSize,
RawPixels, Rect, Width, Height,
Result.RawPixels, Result.Rect, Result.Width, Result.Height,
Interpolation, @MixColors, ProgressTitle);
except Result.Free; raise end;
end;
procedure TCastleImage.Resize3x3(const ResizeWidth, ResizeHeight: Cardinal;
var Corners: TVector4Integer;
const Interpolation: TResizeInterpolation);
var
NewPixels: Pointer;
NewCorners: TVector4Integer;
{ Position that delimit parts along X or Y, for source and destination images. }
SourceXs, SourceYs, DestXs, DestYs: TVector4Integer;
type
TPart = 0..2;
procedure ResizePart(const X, Y: TPart);
var
SourceRect, DestRect: TRectangle;
begin
SourceRect := Rectangle(SourceXs[X], SourceYs[Y],
SourceXs[Integer(X) + 1] - SourceXs[X],
SourceYs[Integer(Y) + 1] - SourceYs[Y]);
DestRect := Rectangle(DestXs[X], DestYs[Y],
DestXs[Integer(X) + 1] - DestXs[X],
DestYs[Integer(Y) + 1] - DestYs[Y]);
InternalResize(PixelSize,
RawPixels, SourceRect, Width, Height,
NewPixels, DestRect, ResizeWidth, ResizeHeight,
Interpolation, @MixColors, '');
end;
var
X, Y: TPart;
begin
if (ResizeWidth <> Width) or (ResizeHeight <> Height) then
begin
NewCorners[0] := Corners[0] * ResizeWidth div Width;
NewCorners[1] := Corners[1] * ResizeHeight div Height;
NewCorners[2] := Corners[2] * ResizeWidth div Width;
NewCorners[3] := Corners[3] * ResizeHeight div Height;
if not ( (Corners[3] + Corners[1] < Width) and
(Corners[2] + Corners[0] < Height) and
(NewCorners[3] + NewCorners[1] < ResizeWidth) and
(NewCorners[2] + NewCorners[0] < ResizeHeight) ) then
raise Exception.CreateFmt('TCastleImage.Resize3x3: Cannot resize image with corners because corners are larger then image size. Source corners: %s, source size: %dx%d, destination corners: %s, destination size: %dx%d',
[VectorToNiceStr(Corners), Width, Height,
VectorToNiceStr(NewCorners), ResizeWidth, ResizeHeight]);
SourceXs[0] := 0;
SourceXs[1] := Corners[3];
SourceXs[2] := Width - Corners[1];
SourceXs[3] := Width;
SourceYs[0] := 0;
SourceYs[1] := Corners[2];
SourceYs[2] := Height - Corners[0];
SourceYs[3] := Height;
DestXs[0] := 0;
DestXs[1] := NewCorners[3];
DestXs[2] := ResizeWidth - NewCorners[1];
DestXs[3] := ResizeWidth;
DestYs[0] := 0;
DestYs[1] := NewCorners[2];
DestYs[2] := ResizeHeight - NewCorners[0];
DestYs[3] := ResizeHeight;
NewPixels := GetMem(ResizeWidth * ResizeHeight * PixelSize);
for X in TPart do
for Y in TPart do
ResizePart(X, Y);
FreeMemNiling(FRawPixels);
FRawPixels := NewPixels;
FWidth := ResizeWidth;
FHeight := ResizeHeight;
Corners := NewCorners;
end;
end;
function TCastleImage.MakeRotated(Angle: Integer): TCastleImage;
procedure Rotate90;
var
X, Y: Integer;
begin
Result := TCastleImageClass(ClassType).Create(Height, Width);
for X := 0 to Width - 1 do
for Y := 0 to Height - 1 do
Move(PixelPtr(X, Y)^, Result.PixelPtr(Y, Width - 1 - X)^, PixelSize);
end;
procedure Rotate180;
var
X, Y: Integer;
begin
Result := TCastleImageClass(ClassType).Create(Width, Height);
for X := 0 to Width - 1 do
for Y := 0 to Height - 1 do
Move(PixelPtr(X, Y)^, Result.PixelPtr(Width - 1 - X, Height - 1 - Y)^, PixelSize);
end;
procedure Rotate270;
var
X, Y: Integer;
begin
Result := TCastleImageClass(ClassType).Create(Height, Width);
for X := 0 to Width - 1 do
for Y := 0 to Height - 1 do
Move(PixelPtr(X, Y)^, Result.PixelPtr(Height - 1 - Y, X)^, PixelSize);
end;
begin
{ convert Angle to 0..3 range }
Angle := Angle mod 4;
if Angle < 0 then Angle += 4;
case Angle of
1: Rotate90;
2: Rotate180;
3: Rotate270;
{ else Angle = 0, nothing to do }
end;
end;
procedure TCastleImage.Rotate(const Angle: Integer);
var
New: TCastleImage;
begin
New := MakeRotated(Angle);
try
Assign(New);
finally FreeAndNil(New) end;
end;
procedure TCastleImage.FlipHorizontal;
var
ImageRow, TmpPixel, Pix1, Pix2: Pointer;
x, y: Integer;
begin
TmpPixel := GetMem(PixelSize);
try
for Y := 0 to Height-1 do
begin
ImageRow := RowPtr(y);
for x := 0 to (Width-1) div 2 do
begin
Pix1 := PointerAdd(ImageRow, Cardinal(x) * PixelSize);
Pix2 := PointerAdd(ImageRow, (Width-1-Cardinal(x)) * PixelSize);
Move(Pix1^, TmpPixel^, PixelSize);
Move(Pix2^, Pix1^, PixelSize);
Move(TmpPixel^, Pix2^, PixelSize);
end;
end;
finally FreeMem(TmpPixel) end;
end;
procedure TCastleImage.FlipVertical;
var
TmpRow, Row1, Row2: Pointer;
Y, RowSize: Integer;
begin
RowSize := PixelSize * Width;
TmpRow := GetMem(RowSize);
try
for Y := 0 to Height div 2 - 1 do
begin
Row1 := RowPtr(Y);
Row2 := RowPtr(Height - Y - 1);
Move(Row1^, TmpRow^, RowSize);
Move(Row2^, Row1^, RowSize);
Move(TmpRow^, Row2^, RowSize);
end;
finally FreeMem(TmpRow) end;
end;
function TCastleImage.MakeTiled(TileX, TileY: Cardinal): TCastleImage;
var
i, j: Cardinal;
begin
Result := TCastleImageClass(ClassType).Create(TileX * Width, TileY * Height);
try
{ Correct but naive version:
for i := 0 to result.Width-1 do
for j := 0 to result.Height-1 do
move(Image.PixelPtr(i mod Image.Width, j mod Image.Height)^,
Result.PixelPtr( i, j)^,
Result.PixelSize );
This can be speeded up copying whole rows at once: }
for i := 0 to TileX - 1 do
for j := 0 to Result.Height - 1 do
Move(PixelPtr(0, j mod Height)^,
Result.PixelPtr(i * Width, j)^,
PixelSize * Width );
except Result.Free; raise end;
end;
function TCastleImage.MakeExtracted(X0, Y0, ExtractWidth, ExtractHeight: Cardinal): TCastleImage;
var
y: Cardinal;
begin
if x0 + ExtractWidth > Width then
raise EImagePosOutOfRange.Create('x0 in MakeExtracted out of range');
if y0 + ExtractHeight > Height then
raise EImagePosOutOfRange.Create('y0 in MakeExtracted out of range');
Result := TCastleImageClass(ClassType).Create(ExtractWidth, ExtractHeight);
try
for Y := 0 to ExtractHeight - 1 do
Move(PixelPtr(x0, y + y0)^, Result.RowPtr(y)^, PixelSize * ExtractWidth);
except Result.Free; raise end;
end;
procedure TCastleImage.Clear(const Pixel: TVector4Byte);
begin
NotImplemented('Clear');
end;
procedure TCastleImage.Clear(const Pixel: TCastleColor);
begin
Clear(Vector4Byte(Pixel));
end;
function TCastleImage.IsClear(const Pixel: TVector4Byte): boolean;
begin
NotImplemented('IsClear');
{ code will never get here (NotImplemented always raises an exception),
and code "Result := false;" below is only to avoid compiler warning
that function result is undefined. }
Result := false;
end;
procedure TCastleImage.TransformRGB(const Matrix: TMatrix3Single);
begin
NotImplemented('TransformRGB');
end;
procedure TCastleImage.ModulateRGB(const ColorModulator: TColorModulatorByteFunc);
begin
NotImplemented('ModulateRGB');
end;
function TCastleImage.MakeModulatedRGB(
const ColorModulator: TColorModulatorByteFunc): TCastleImage;
begin
Result := MakeCopy;
Result.ModulateRGB(ColorModulator);
end;
procedure TCastleImage.Grayscale;
begin
ModulateRGB(@ColorGrayscaleByte);
end;
procedure TCastleImage.ConvertToChannelRGB(Channel: Integer);
begin
case Channel of
0: ModulateRGB(@ColorRedConvertByte);
1: ModulateRGB(@ColorGreenConvertByte);
2: ModulateRGB(@ColorBlueConvertByte);
else raise EInternalError.Create(
'ConvertToChannelRGB: Channel must be 0, 1 or 2');
end;
end;
procedure TCastleImage.StripToChannelRGB(Channel: Integer);
begin
case Channel of
0: ModulateRGB(@ColorRedStripByte);
1: ModulateRGB(@ColorGreenStripByte);
2: ModulateRGB(@ColorBlueStripByte);
else raise EInternalError.Create(
'StripToChannelRGB: Channel must be 0, 1 or 2');
end;
end;
function TCastleImage.IsEqual(Image: TCastleImage): boolean;
begin
Result :=
(Image.ClassType = ClassType) and
(Image.Width = Width) and
(Image.Height = Height) and
(Image.Depth = Depth) and
(CompareMem(Image.RawPixels, RawPixels, Size));
end;
function TCastleImage.ArePartsEqual(
const SelfX0, SelfY0, SelfWidth, SelfHeight: Cardinal;
Image: TCastleImage;
const ImageX0, ImageY0, ImageWidth, ImageHeight: Cardinal): boolean;
var
Y: Integer;
SelfPtr: Pointer;
ImagePtr: Pointer;
SelfRowByteWidth, ImageRowByteWidth, RowByteWidth: Cardinal;
begin
Result :=
(Image.ClassType = ClassType) and
(SelfWidth = ImageWidth) and
(SelfHeight = ImageHeight);
if Result then
begin
SelfPtr := PixelPtr(SelfX0, SelfY0);
ImagePtr := Image.PixelPtr(ImageX0, ImageY0);
RowByteWidth := ImageWidth * PixelSize;
SelfRowByteWidth := Self.Width * PixelSize;
ImageRowByteWidth := Image.Width * Image.PixelSize;
for Y := 0 to Integer(ImageHeight) - 1 do
begin
if not CompareMem(SelfPtr, ImagePtr, RowByteWidth) then
begin
Result := false;
Exit;
end;
PtrUInt(SelfPtr) := PtrUInt(SelfPtr) + SelfRowByteWidth;
PtrUInt(ImagePtr) := PtrUInt(ImagePtr) + ImageRowByteWidth;
end;
end;
end;
function TCastleImage.ArePartsEqual(
Image: TCastleImage;
const ImageX0, ImageY0, ImageWidth, ImageHeight: Cardinal): boolean;
begin
Result := ArePartsEqual(
0, 0, Width, Height,
Image,
ImageX0, ImageY0, ImageWidth, ImageHeight);
end;
function TCastleImage.ArePartsEqual(
const SelfX0, SelfY0, SelfWidth, SelfHeight: Cardinal;
Image: TCastleImage): boolean;
begin
Result := ArePartsEqual(
SelfX0, SelfY0, SelfWidth, SelfHeight,
Image,
0, 0, Image.Width, Image.Height);
end;
procedure TCastleImage.DrawCore(Source: TCastleImage;
X, Y, SourceX, SourceY, SourceWidth, SourceHeight: Integer);
var
Line: Integer;
Ptr, SourcePtr: Pointer;
RowWidth, SourceRowWidth, SourceCopyRowWidth: Cardinal;
begin
if Source.ClassType <> ClassType then
raise Exception.CreateFmt('Cannot draw pixels from image class %s to %s',
[Source.ClassName, ClassName]);
Ptr := PixelPtr(X, Y);
RowWidth := Width * PixelSize;
SourcePtr := Source.PixelPtr(SourceX, SourceY);
SourceRowWidth := Source.Width * Source.PixelSize;
SourceCopyRowWidth := SourceWidth * Source.PixelSize;
for Line := 0 to Integer(SourceHeight) - 1 do
begin
Move(SourcePtr^, Ptr^, SourceCopyRowWidth);
PtrUInt(Ptr) := PtrUInt(Ptr) + RowWidth;
PtrUInt(SourcePtr) := PtrUInt(SourcePtr) + SourceRowWidth;
end;
end;
procedure TCastleImage.DrawFrom(Source: TCastleImage;
X, Y, SourceX, SourceY, SourceWidth, SourceHeight: Integer);
begin
if X < 0 then
begin
SourceX += -X;
SourceWidth -= -X;
X := 0;
end;
if Y < 0 then
begin
SourceY += -Y;
SourceHeight -= -Y;
Y := 0;
end;
if SourceX < 0 then
begin
X += -SourceX;
SourceWidth -= -SourceX;
SourceX := 0;
end;
if SourceY < 0 then
begin
Y += -SourceY;
SourceHeight -= -SourceY;
SourceY := 0;
end;
SourceWidth := Min(SourceWidth , Width - 1 - X, Source.Width );
SourceHeight := Min(SourceHeight, Height - 1 - Y, Source.Height);
if (SourceWidth > 0) and
(SourceHeight > 0) and
(SourceX < Source.Width) and
(SourceY < Source.Height) then
DrawCore(Source, X, Y, SourceX, SourceY, SourceWidth, SourceHeight);
end;
procedure TCastleImage.DrawFrom(Source: TCastleImage; const X, Y: Integer);
begin
DrawFrom(Source, X, Y, 0, 0, Source.Width, Source.Height);
end;
procedure TCastleImage.DrawTo(Destination: TCastleImage; const X, Y: Integer);
begin
Destination.DrawFrom(Self, X, Y);
end;
procedure TCastleImage.LerpSimpleCheckConditions(SecondImage: TCastleImage);
begin
if (Width <> SecondImage.Width) or
(Height <> SecondImage.Height) then
raise EImageLerpDifferentSizes.CreateFmt('Linear interpolation not possible, images have different sizes: first has %d x %d, second has %d x %d',
[Width, Height, SecondImage.Width, SecondImage.Height]);
if not (SecondImage is Self.ClassType) then
raise EImageLerpInvalidClasses.CreateFmt('Linear interpolation between %s and %s class not possible',
[ClassName, SecondImage.ClassName]);
end;
procedure TCastleImage.LerpWith(const Value: Single; SecondImage: TCastleImage);
begin
raise EImageLerpInvalidClasses.Create('Linear interpolation (TCastleImage.LerpWith) not possible with the base TCastleImage class');
end;
class procedure TCastleImage.MixColors(const OutputColor: Pointer;
const Weights: TVector4Single; const Colors: TVector4Pointer);
begin
raise EImageLerpInvalidClasses.Create('Mixing colors (TCastleImage.MixColors) not possible with the base TCastleImage class');
end;
procedure TCastleImage.Assign(const Source: TCastleImage);
begin
if Source.ClassType = ClassType then
begin
SetSize(Source);
// if Source.RawPixels = nil, then we're already freed by SetSize above
if Source.RawPixels <> nil then
Move(Source.RawPixels^, RawPixels^, Size);
URL := Source.URL;
end else
raise EImageAssignmentError.CreateFmt('Cannot copy image contents from %s to %s',
[Source.ClassName, ClassName]);
end;
procedure TCastleImage.SaveToPascalCode(const ImageName: string;
const ShowProgress: boolean;
var CodeInterface, CodeImplementation, CodeInitialization, CodeFinalization: string);
var
NameWidth, NameHeight, NameDepth, NamePixels: string;
pb: PByte;
I: Integer;
begin
{ calculate Name* variables }
NameWidth := ImageName + 'Width';
NameHeight := ImageName + 'Height';
NameDepth := ImageName + 'Depth';
NamePixels := ImageName + 'Pixels';
CodeInterface +=
'var' +nl+
' ' +ImageName+ ': ' +ClassName+ ';' +nl + nl;
CodeImplementation +=
'const' +nl+
' ' +NameWidth+ ' = ' +IntToStr(Width)+ ';' +nl+
' ' +NameHeight+ ' = ' +IntToStr(Height)+ ';' +nl+
' ' +NameDepth+ ' = ' +IntToStr(Depth)+ ';' +nl+
' ' +NamePixels+ ': array[0 .. '
+NameWidth+ ' * '
+NameHeight+ ' * '
+NameDepth+ ' * '
+IntToStr(PixelSize) + ' - 1] of Byte = (' +nl+
' ';
if ShowProgress then
Progress.Init((Size - 1) div 12,
Format('Generating %s (%s, alpha: %s)',
[ImageName, ClassName, AlphaToString[AlphaChannel]]));
pb := PByte(RawPixels);
for I := 1 to Size - 1 do
begin
CodeImplementation += Format('%4d,', [pb^]);
if (i mod 12) = 0 then
begin
CodeImplementation += nl + ' ';
if ShowProgress then Progress.Step;
end else
CodeImplementation += ' ';
Inc(pb);
end;
CodeImplementation += Format('%4d);', [pb^]) + nl + nl;
if ShowProgress then Progress.Fini;
CodeInitialization +=
' ' +ImageName+ ' := ' +ClassName+ '.Create(' +NameWidth+', ' +NameHeight+ ', ' +NameDepth+ ');' +nl+
' Move(' +NamePixels+ ', ' +ImageName+ '.RawPixels^, SizeOf(' +NamePixels+ '));' +nl+
' ' +ImageName+ '.URL := ''embedded-image:/' +ImageName+ ''';' + nl;
CodeFinalization +=
' FreeAndNil(' +ImageName+ ');' +nl;
end;
{ TGPUCompressedImage ----------------------------------------------------------------- }
constructor TGPUCompressedImage.Create(
const AWidth, AHeight, ADepth: Cardinal;
const ACompression: TGPUCompression);
begin
inherited Create;
FWidth := AWidth;
FHeight := AHeight;
FDepth := ADepth;
FCompression := ACompression;
case Compression of
{ Size formula for S3TC textures:
All DXT* compression methods compress 4x4 pixels into some constant size.
When Width / Height is not divisible by 4, we have to round up.
This matches what MSDN docs say about DDS with mipmaps:
http://msdn.microsoft.com/en-us/library/bb205578(VS.85).aspx
When mipmaps are used, DDS Width/Height must be power-of-two,
so the base level is usually divisible by 4. But on the following mipmap
levels the size decreases, eventually to 1x1, so this still matters.
And MSDN says then explicitly that with DXT1, you have always
minimum 8 bytes, and with DXT2-5 minimum 16 bytes.
This also means that we cannot simply calculate size of mipmap in a DDS
by looking at size of base image, and dividing by 2/4/8 as mipmap size
decreases. We have to calculate size always rounding up to 4x4 block of pixels.
}
tcDxt1_RGB, tcDxt1_RGBA:
FSize := FDepth * DivRoundUp(FWidth, 4) * DivRoundUp(FHeight, 4) * 8 { 8 bytes for each 16 pixels };
tcDxt3, tcDxt5:
FSize := FDepth * DivRoundUp(FWidth, 4) * DivRoundUp(FHeight, 4) * 16 { 16 bytes for each 16 pixels };
{ see https://www.khronos.org/registry/gles/extensions/IMG/IMG_texture_compression_pvrtc2.txt
for size formula size.
Note that minimum size is 32 bytes,
see https://developer.apple.com/library/ios/qa/qa1611/_index.html }
tcPvrtc1_2bpp_RGB, tcPvrtc1_2bpp_RGBA:
FSize := Max(32, (FDepth * Max(FWidth, 16) * Max(FHeight, 8) * 2 + 7) div 8);
tcPvrtc1_4bpp_RGB, tcPvrtc1_4bpp_RGBA:
FSize := Max(32, (FDepth * Max(FWidth, 8) * Max(FHeight, 8) * 4 + 7) div 8);
{ see https://www.khronos.org/registry/gles/extensions/IMG/IMG_texture_compression_pvrtc2.txt
for size formula source }
tcPvrtc2_2bpp:
FSize := FDepth * DivRoundUp(FWidth, 8) * DivRoundUp(FHeight, 4) * 8;
tcPvrtc2_4bpp:
FSize := FDepth * DivRoundUp(FWidth, 4) * DivRoundUp(FHeight, 4) * 8;
{ see https://www.khronos.org/registry/gles/extensions/AMD/AMD_compressed_ATC_texture.txt
for size formula source }
tcATITC_RGB:
FSize := FDepth * DivRoundUp(FWidth, 4) * DivRoundUp(FHeight, 4) * 8;
tcATITC_RGBA_ExplicitAlpha,
tcATITC_RGBA_InterpolatedAlpha:
FSize := FDepth * DivRoundUp(FWidth, 4) * DivRoundUp(FHeight, 4) * 16;
{ size formula from
http://en.wikipedia.org/wiki/Ericsson_Texture_Compression
"ETC1 takes 4x4 groups of pixel data and compresses each into a single 64-bit word" }
tcETC1:
FSize := FDepth * DivRoundUp(FWidth, 4) * DivRoundUp(FHeight, 4) * 8;
else raise EInvalidDDS.CreateFmt('Cannot calculate size for texture compressed with %s',
[GPUCompressionInfo[Compression].Name]);
end;
FRawPixels := GetMem(FSize);
end;
function TGPUCompressedImage.Size: Cardinal;
begin
Result := FSize;
end;
function TGPUCompressedImage.HasAlpha: boolean;
begin
Result := GPUCompressionInfo[Compression].AlphaChannel <> acNone;
end;
function TGPUCompressedImage.AlphaChannel(
const AlphaTolerance: Byte): TAlphaChannel;
begin
{ Compressed data doesn't analyze alpha channel, instead
we determine alpha channel from the compression type. }
Result := GPUCompressionInfo[Compression].AlphaChannel;
end;
{$I images_s3tc_flip_vertical.inc}
function TGPUCompressedImage.Decompress: TCastleImage;
begin
if Assigned(DecompressTexture) then
Result := DecompressTexture(Self) else
raise ECannotDecompressTexture.Create('Cannot decompress GPU-compressed texture: no decompressor initialized');
end;
function TGPUCompressedImage.MakeCopy: TGPUCompressedImage;
begin
Result := TGPUCompressedImage.Create(Width, Height, Depth, Compression);
Assert(Result.Size = Size);
Move(RawPixels^, Result.RawPixels^, Size);
Result.URL := URL;
end;
{ TCastleImageClass and arrays of TCastleImageClasses ----------------------------- }
function InImageClasses(ImageClass: TEncodedImageClass;
const ImageClasses: array of TEncodedImageClass): boolean;
var
i: Integer;
begin
for i := 0 to High(ImageClasses) do
if ImageClass.InheritsFrom(ImageClasses[i]) then
begin
Result := true;
Exit;
end;
Result := false;
end;
function InImageClasses(Image: TEncodedImage;
const ImageClasses: array of TEncodedImageClass): boolean;
begin
Result := InImageClasses(TEncodedImageClass(Image.ClassType), ImageClasses);
end;
function ImageClassesEqual(const Ar1, Ar2: array of TEncodedImageClass): boolean;
var
i: Integer;
begin
if High(Ar1) <> High(Ar2) then
begin
Result := false;
Exit;
end;
for i := 0 to High(Ar1) do
if Ar1[I] <> Ar2[I] then
begin
Result := false;
Exit;
end;
Result := true;
end;
{ TRGBImage ------------------------------------------------------------ }
constructor TRGBImage.CreateCombined(const MapImage: TRGBImage;
var ReplaceWhiteImage, ReplaceBlackImage: TRGBImage);
var
Map, White, Black, Res: PVector3Byte;
s: single;
i: integer;
begin
Create(MapImage.Width, MapImage.Height);
ReplaceWhiteImage.Resize(MapImage.Width, MapImage.Height);
ReplaceBlackImage.Resize(MapImage.Width, MapImage.Height);
Map := MapImage.RGBPixels;
White := ReplaceWhiteImage.RGBPixels;
Black := ReplaceBlackImage.RGBPixels;
Res := RGBPixels;
for i := 1 to Width * Height * Depth do
begin
s := (Map^[0] + Map^[1] + Map^[2]) / 255 / 3;
Res^[0] := Round(s * White^[0] + (1-s) * Black^[0]);
Res^[1] := Round(s * White^[1] + (1-s) * Black^[1]);
Res^[2] := Round(s * White^[2] + (1-s) * Black^[2]);
Inc(Map);
Inc(White);
Inc(Black);
Inc(Res);
end;
end;
function TRGBImage.GetRGBPixels: PVector3Byte;
begin
Result := PVector3Byte(RawPixels);
end;
class function TRGBImage.PixelSize: Cardinal;
begin
Result := 3;
end;
class function TRGBImage.ColorComponentsCount: Cardinal;
begin
Result := 3;
end;
function TRGBImage.PixelPtr(const X, Y, Z: Cardinal): PVector3Byte;
begin
Result := PVector3Byte(inherited PixelPtr(X, Y, Z));
end;
function TRGBImage.RowPtr(const Y, Z: Cardinal): PArray_Vector3Byte;
begin
Result := PArray_Vector3Byte(inherited RowPtr(Y, Z));
end;
procedure TRGBImage.InvertRGBColors;
var
i: Cardinal;
prgb: PVector3byte;
begin
prgb := RGBPixels;
for i := 1 to Width * Height * Depth do
begin
prgb^[0] := High(byte)-prgb^[0];
prgb^[1] := High(byte)-prgb^[1];
prgb^[2] := High(byte)-prgb^[2];
Inc(prgb);
end;
end;
procedure TRGBImage.SetColorRGB(const x, y: Integer; const v: TVector3Single);
begin
PVector3Byte(PixelPtr(x, y))^ := Vector3Byte(v);
end;
procedure TRGBImage.Clear(const Pixel: TVector4Byte);
var
P: PVector3Byte;
I: Cardinal;
begin
P := RGBPixels;
for I := 1 to Width * Height * Depth do
begin
Move(Pixel, P^, SizeOf(TVector3Byte));
Inc(P);
end;
end;
function TRGBImage.IsClear(const Pixel: TVector4Byte): boolean;
var
P: PVector3Byte;
I: Cardinal;
begin
P := RGBPixels;
for I := 1 to Width * Height * Depth do
begin
if not CompareMem(@Pixel, P, SizeOf(TVector3Byte)) then
begin
Result := false;
Exit;
end;
Inc(P);
end;
Result := true;
end;
procedure TRGBImage.TransformRGB(const Matrix: TMatrix3Single);
type PPixel = PVector3Byte;
{$I images_transformrgb_implement.inc}
procedure TRGBImage.ModulateRGB(const ColorModulator: TColorModulatorByteFunc);
type PPixel = PVector3Byte;
{$I images_modulatergb_implement.inc}
procedure TRGBImage.DrawCore(Source: TCastleImage;
X, Y, SourceX, SourceY, SourceWidth, SourceHeight: Integer);
var
PSource: PVector4Byte;
PDest: PVector3Byte;
DestX, DestY: Integer;
SourceAlpha: TRGBAlphaImage;
W: Word;
begin
if Source is TRGBAlphaImage then
begin
SourceAlpha := TRGBAlphaImage(Source);
if SourceAlpha.PremultipliedAlpha then
begin
for DestY := Y to Y + SourceHeight - 1 do
begin
PSource := Source.PixelPtr(SourceX, SourceY + DestY - Y);
PDest := PixelPtr(X, DestY);
for DestX := X to X + SourceWidth - 1 do
begin
W := PDest^[0] + Word(PSource^[0]); if W > 255 then W := 255;
PDest^[0] := W;
W := PDest^[1] + Word(PSource^[1]); if W > 255 then W := 255;
PDest^[1] := W;
W := PDest^[2] + Word(PSource^[2]); if W > 255 then W := 255;
PDest^[2] := W;
Inc(PSource);
Inc(PDest);
end;
end;
end else
begin
for DestY := Y to Y + SourceHeight - 1 do
begin
PSource := Source.PixelPtr(SourceX, SourceY + DestY - Y);
PDest := PixelPtr(X, DestY);
for DestX := X to X + SourceWidth - 1 do
begin
PDest^[0] := Clamped(PDest^[0] + Round(PSource^[0] * PSource^[3] / 255), 0, 255);
PDest^[1] := Clamped(PDest^[1] + Round(PSource^[1] * PSource^[3] / 255), 0, 255);
PDest^[2] := Clamped(PDest^[2] + Round(PSource^[2] * PSource^[3] / 255), 0, 255);
Inc(PSource);
Inc(PDest);
end;
end;
end;
end else
inherited;
end;
function TRGBImage.ToRGBAlphaImage: TRGBAlphaImage;
var
pi: PVector3Byte;
pa: PVector4Byte;
i: Cardinal;
begin
Result := TRGBAlphaImage.Create(Width, Height, Depth);
pi := RGBPixels;
pa := Result.AlphaPixels;
for i := 1 to Width * Height * Depth do
begin
Move(pi^, pa^, SizeOf(TVector3Byte));
pa^[3] := High(Byte);
Inc(pi);
Inc(pa);
end;
end;
function TRGBImage.ToRGBFloat: TRGBFloatImage;
var
PFloat: PVector3Single;
PByte: PVector3Byte;
i: Cardinal;
begin
result := TRGBFloatImage.Create(Width, Height, Depth);
try
PByte := RGBPixels;
PFloat := Result.RGBFloatPixels;
for i := 1 to Width * Height * Depth do
begin
PFloat^ := Vector3Single(PByte^);
Inc(PByte);
Inc(PFloat);
end;
except Result.Free; raise end;
end;
function TRGBImage.ToGrayscale: TGrayscaleImage;
var
pRGB: PVector3Byte;
pGrayscale: PByte;
I: Cardinal;
begin
Result := TGrayscaleImage.Create(Width, Height, Depth);
try
pRGB := RGBPixels;
pGrayscale := Result.GrayscalePixels;
for i := 1 to Width * Height * Depth do
begin
pGrayscale^ := GrayscaleValue(pRGB^);
Inc(pRGB);
Inc(pGrayscale);
end;
except Result.Free; raise end;
end;
procedure TRGBImage.HorizontalLine(const x1, x2, y: Integer;
const Color: TVector3Byte);
var
P: PVector3Byte;
i: Integer;
begin
P := PixelPtr(x1, y);
for i := 0 to x2 - x1 do begin P^ := Color; Inc(P) end;
end;
procedure TRGBImage.HorizontalLine(const X1, X2, Y: Integer;
const Color: TCastleColor);
begin
HorizontalLine(X1, X2, Y, Vector3Byte(Vector3SingleCut(Color)));
end;
procedure TRGBImage.VerticalLine(const x, y1, y2: Integer;
const Color: TVector3Byte);
var P: PVector3Byte;
i: Integer;
begin
P := PixelPtr(x, y1);
for i := 0 to y2 - y1 do
begin
P^ := Color;
P := PointerAdd(P, SizeOf(TVector3Byte) * Width);
end;
end;
procedure TRGBImage.VerticalLine(const x, y1, y2: Integer;
const Color: TCastleColor);
begin
VerticalLine(X, Y1, Y2, Vector3Byte(Vector3SingleCut(Color)));
end;
procedure TRGBImage.LerpWith(const Value: Single; SecondImage: TCastleImage);
var
SelfPtr: PVector3Byte;
SecondPtr: PVector3Byte;
I: Cardinal;
begin
LerpSimpleCheckConditions(SecondImage);
SelfPtr := RGBPixels;
SecondPtr := TRGBImage(SecondImage).RGBPixels;
for I := 1 to Width * Height * Depth do
begin
SelfPtr^ := Lerp(Value, SelfPtr^, SecondPtr^);
Inc(SelfPtr);
Inc(SecondPtr);
end;
end;
{ $define FAST_UNSAFE_MIX_COLORS}
class procedure TRGBImage.MixColors(const OutputColor: Pointer;
const Weights: TVector4Single; const Colors: TVector4Pointer);
var
OutputCol: PVector3Byte absolute OutputColor;
Cols: array [0..3] of PVector3Byte absolute Colors;
begin
{$I norqcheckbegin.inc}
OutputCol^[0] := {$ifndef FAST_UNSAFE_MIX_COLORS} Clamped( {$endif} Round(Weights[0] * Cols[0]^[0] + Weights[1] * Cols[1]^[0] + Weights[2] * Cols[2]^[0] + Weights[3] * Cols[3]^[0]) {$ifndef FAST_UNSAFE_MIX_COLORS} , 0, High(Byte)) {$endif};
OutputCol^[1] := {$ifndef FAST_UNSAFE_MIX_COLORS} Clamped( {$endif} Round(Weights[0] * Cols[0]^[1] + Weights[1] * Cols[1]^[1] + Weights[2] * Cols[2]^[1] + Weights[3] * Cols[3]^[1]) {$ifndef FAST_UNSAFE_MIX_COLORS} , 0, High(Byte)) {$endif};
OutputCol^[2] := {$ifndef FAST_UNSAFE_MIX_COLORS} Clamped( {$endif} Round(Weights[0] * Cols[0]^[2] + Weights[1] * Cols[1]^[2] + Weights[2] * Cols[2]^[2] + Weights[3] * Cols[3]^[2]) {$ifndef FAST_UNSAFE_MIX_COLORS} , 0, High(Byte)) {$endif};
{$I norqcheckend.inc}
end;
procedure TRGBImage.Assign(const Source: TCastleImage);
var
FloatPtr: PVector3Single;
RgbaPtr: PVector4Byte;
SelfPtr: PVector3Byte;
I: Cardinal;
begin
if Source is TRGBAlphaImage then
begin
SetSize(Source);
SelfPtr := RGBPixels;
RgbaPtr := TRGBAlphaImage(Source).AlphaPixels;
for I := 1 to Width * Height * Depth do
begin
Move(RgbaPtr^, SelfPtr^, SizeOf(TVector3Byte));
Inc(SelfPtr);
Inc(RgbaPtr);
end;
URL := Source.URL;
end else
if Source is TRGBFloatImage then
begin
SetSize(Source);
SelfPtr := RGBPixels;
FloatPtr := TRGBFloatImage(Source).RGBFloatPixels;
for I := 1 to Width * Height * Depth do
begin
SelfPtr^ := Vector3Byte(FloatPtr^);
Inc(SelfPtr);
Inc(FloatPtr);
end;
URL := Source.URL;
end else
inherited;
end;
{ TRGBAlphaImage ------------------------------------------------------------ }
function TRGBAlphaImage.GetAlphaPixels: PVector4Byte;
begin
Result := PVector4Byte(RawPixels);
end;
class function TRGBAlphaImage.PixelSize: Cardinal;
begin
Result := 4;
end;
class function TRGBAlphaImage.ColorComponentsCount: Cardinal;
begin
Result := 4;
end;
function TRGBAlphaImage.PixelPtr(const X, Y, Z: Cardinal): PVector4Byte;
begin
Result := PVector4Byte(inherited PixelPtr(X, Y, Z));
end;
function TRGBAlphaImage.RowPtr(const Y, Z: Cardinal): PArray_Vector4Byte;
begin
Result := PArray_Vector4Byte(inherited RowPtr(Y, Z));
end;
procedure TRGBAlphaImage.InvertRGBColors;
var
i: Cardinal;
palpha: PVector4byte;
begin
palpha := AlphaPixels;
for i := 1 to Width * Height * Depth do
begin
palpha^[0] := High(byte)-palpha^[0];
palpha^[1] := High(byte)-palpha^[1];
palpha^[2] := High(byte)-palpha^[2];
Inc(palpha);
end;
end;
procedure TRGBAlphaImage.SetColorRGB(const x, y: Integer; const v: TVector3Single);
begin
PVector3Byte(PixelPtr(x, y))^ := Vector3Byte(v);
end;
procedure TRGBAlphaImage.Clear(const Pixel: TVector4Byte);
begin
FillDWord(RawPixels^, Width*Height, LongWord(Pixel));
end;
procedure TRGBAlphaImage.ClearAlpha(const Alpha: Byte);
var
i: Cardinal;
palpha: PVector4byte;
begin
palpha := AlphaPixels;
for i := 1 to Width * Height * Depth do
begin
palpha^[3] := Alpha;
Inc(palpha);
end;
end;
function TRGBAlphaImage.IsClear(const Pixel: TVector4Byte): boolean;
begin
Result := IsMemDWordFilled(RawPixels^, Width*Height, LongWord(Pixel));
end;
procedure TRGBAlphaImage.TransformRGB(const Matrix: TMatrix3Single);
type PPixel = PVector4Byte;
{$I images_transformrgb_implement.inc}
procedure TRGBAlphaImage.ModulateRGB(const ColorModulator: TColorModulatorByteFunc);
type PPixel = PVector4Byte;
{$I images_modulatergb_implement.inc}
procedure TRGBAlphaImage.AlphaDecide(const AlphaColor: TVector3Byte;
Tolerance: Byte; AlphaOnColor: Byte; AlphaOnNoColor: Byte);
var
pa: PVector4Byte;
i: Cardinal;
begin
pa := AlphaPixels;
for i := 1 to Width * Height * Depth do
begin
if EqualRGB(AlphaColor, PVector3Byte(pa)^, Tolerance) then
pa^[3] := AlphaOnColor else
pa^[3] := AlphaOnNoColor;
Inc(pa);
end;
end;
procedure TRGBAlphaImage.Compose(RGB: TRGBImage; AGrayscale: TGrayscaleImage);
var
PtrAlpha: PVector4Byte;
PtrRGB: PVector3Byte;
PtrGrayscale: PByte;
I: Cardinal;
begin
Check( (RGB.Width = AGrayscale.Width) and
(RGB.Height = AGrayscale.Height) and
(RGB.Depth = AGrayscale.Depth),
'For TRGBAlphaImage.Compose, RGB and alpha images must have the same sizes');
SetSize(RGB);
PtrAlpha := AlphaPixels;
PtrRGB := RGB.RGBPixels;
PtrGrayscale := AGrayscale.GrayscalePixels;
for I := 1 to Width * Height * Depth do
begin
System.Move(PtrRGB^, PtrAlpha^, SizeOf(TVector3Byte));
PtrAlpha^[3] := PtrGrayscale^;
Inc(PtrAlpha);
Inc(PtrRGB);
Inc(PtrGrayscale);
end;
end;
function TRGBAlphaImage.HasAlpha: boolean;
begin
Result := true;
end;
function TRGBAlphaImage.AlphaChannel(
const AlphaTolerance: Byte): TAlphaChannel;
var
PtrAlpha: PVector4Byte;
I: Cardinal;
begin
PtrAlpha := AlphaPixels;
for I := 1 to Width * Height * Depth do
begin
if (PtrAlpha^[3] > AlphaTolerance) and
(PtrAlpha^[3] < 255 - AlphaTolerance) then
Exit(acFullRange);
Inc(PtrAlpha);
end;
Result := acSimpleYesNo;
end;
procedure TRGBAlphaImage.LerpWith(const Value: Single; SecondImage: TCastleImage);
var
SelfPtr: PVector4Byte;
SecondPtr: PVector4Byte;
I: Cardinal;
begin
LerpSimpleCheckConditions(SecondImage);
SelfPtr := AlphaPixels;
SecondPtr := TRGBAlphaImage(SecondImage).AlphaPixels;
for I := 1 to Width * Height * Depth do
begin
SelfPtr^ := Lerp(Value, SelfPtr^, SecondPtr^);
Inc(SelfPtr);
Inc(SecondPtr);
end;
end;
class procedure TRGBAlphaImage.MixColors(const OutputColor: Pointer;
const Weights: TVector4Single; const Colors: TVector4Pointer);
var
OutputCol: PVector4Byte absolute OutputColor;
Cols: array [0..3] of PVector4Byte absolute Colors;
begin
{$I norqcheckbegin.inc}
OutputCol^[0] := {$ifndef FAST_UNSAFE_MIX_COLORS} Clamped( {$endif} Round(Weights[0] * Cols[0]^[0] + Weights[1] * Cols[1]^[0] + Weights[2] * Cols[2]^[0] + Weights[3] * Cols[3]^[0]) {$ifndef FAST_UNSAFE_MIX_COLORS} , 0, High(Byte)) {$endif};
OutputCol^[1] := {$ifndef FAST_UNSAFE_MIX_COLORS} Clamped( {$endif} Round(Weights[0] * Cols[0]^[1] + Weights[1] * Cols[1]^[1] + Weights[2] * Cols[2]^[1] + Weights[3] * Cols[3]^[1]) {$ifndef FAST_UNSAFE_MIX_COLORS} , 0, High(Byte)) {$endif};
OutputCol^[2] := {$ifndef FAST_UNSAFE_MIX_COLORS} Clamped( {$endif} Round(Weights[0] * Cols[0]^[2] + Weights[1] * Cols[1]^[2] + Weights[2] * Cols[2]^[2] + Weights[3] * Cols[3]^[2]) {$ifndef FAST_UNSAFE_MIX_COLORS} , 0, High(Byte)) {$endif};
OutputCol^[3] := {$ifndef FAST_UNSAFE_MIX_COLORS} Clamped( {$endif} Round(Weights[0] * Cols[0]^[3] + Weights[1] * Cols[1]^[3] + Weights[2] * Cols[2]^[3] + Weights[3] * Cols[3]^[3]) {$ifndef FAST_UNSAFE_MIX_COLORS} , 0, High(Byte)) {$endif};
{$I norqcheckend.inc}
end;
function TRGBAlphaImage.ToRGBImage: TRGBImage;
begin
Result := TRGBImage.Create(0, 0);
Result.Assign(Self);
end;
function TRGBAlphaImage.ToGrayscaleImage: TGrayscaleImage;
begin
Result := TGrayscaleImage.Create(0, 0);
Result.Assign(Self);
end;
function TRGBAlphaImage.ToGrayscaleAlphaImage: TGrayscaleAlphaImage;
begin
Result := TGrayscaleAlphaImage.Create(0, 0);
Result.Assign(Self);
end;
procedure TRGBAlphaImage.PremultiplyAlpha;
var
P: PVector4Byte;
I: Integer;
begin
if not FPremultipliedAlpha then
begin
FPremultipliedAlpha := true;
P := AlphaPixels;
for I := 1 to Width * Height * Depth do
begin
P^[0] := Clamped(Round(P^[0] * P^[3] / 255), 0, 255);
P^[1] := Clamped(Round(P^[1] * P^[3] / 255), 0, 255);
P^[2] := Clamped(Round(P^[2] * P^[3] / 255), 0, 255);
Inc(P);
end;
end;
end;
{ TRGBFloatImage ------------------------------------------------------------ }
function TRGBFloatImage.GetRGBFloatPixels: PVector3Single;
begin
Result := PVector3Single(RawPixels);
end;
class function TRGBFloatImage.PixelSize: Cardinal;
begin
Result := SizeOf(TVector3Single);
end;
class function TRGBFloatImage.ColorComponentsCount: Cardinal;
begin
Result := 3;
end;
function TRGBFloatImage.PixelPtr(const X, Y, Z: Cardinal): PVector3Single;
begin
Result := PVector3Single(inherited PixelPtr(X, Y, Z));
end;
function TRGBFloatImage.RowPtr(const Y, Z: Cardinal): PArray_Vector3Single;
begin
Result := PArray_Vector3Single(inherited RowPtr(Y, Z));
end;
procedure TRGBFloatImage.SetColorRGB(const x, y: Integer; const V: TVector3Single);
begin
PVector3Single(PixelPtr(x, y))^ := V;
end;
procedure TRGBFloatImage.Clear(const Pixel: TVector3Single);
var
P: PVector3Single;
I: Cardinal;
begin
P := RGBFloatPixels;
for I := 1 to Width * Height * Depth do
begin
Move(Pixel, P^, SizeOf(TVector3Single));
Inc(P);
end;
end;
function TRGBFloatImage.IsClear(const Pixel: TVector3Single): boolean;
var
P: PVector3Single;
I: Cardinal;
begin
P := RGBFloatPixels;
for I := 1 to Width * Height * Depth do
begin
if not CompareMem(@Pixel, P, SizeOf(TVector3Single)) then
begin
Result := false;
Exit;
end;
Inc(P);
end;
Result := true;
end;
function TRGBFloatImage.ToRGBImage: TRGBImage;
begin
Result := TRGBImage.Create(0, 0);
Result.Assign(Self);
end;
procedure TRGBFloatImage.ScaleColors(const Scale: Single);
var
pFloat: PVector3Single;
i: Cardinal;
begin
PFloat := RGBFloatPixels;
for i := 1 to Width * Height * Depth do
begin
PFloat^ := VectorScale(PFloat^, Scale);
Inc(PFloat);
end;
end;
procedure TRGBFloatImage.ExpColors(const Exp: Single);
var
pFloat: PVector3Single;
i: Cardinal;
begin
PFloat := RGBFloatPixels;
for i := 1 to Width * Height * Depth do
begin
PFloat^ := VectorPowerComponents(PFloat^, Exp);
Inc(PFloat);
end;
end;
procedure TRGBFloatImage.LerpWith(const Value: Single; SecondImage: TCastleImage);
var
SelfPtr: PVector3Single;
SecondPtr: PVector3Single;
I: Cardinal;
begin
LerpSimpleCheckConditions(SecondImage);
SelfPtr := RGBFloatPixels;
SecondPtr := TRGBFloatImage(SecondImage).RGBFloatPixels;
for I := 1 to Width * Height * Depth do
begin
SelfPtr^ := Lerp(Value, SelfPtr^, SecondPtr^);
Inc(SelfPtr);
Inc(SecondPtr);
end;
end;
class procedure TRGBFloatImage.MixColors(const OutputColor: Pointer;
const Weights: TVector4Single; const Colors: TVector4Pointer);
var
OutputCol: PVector3Single absolute OutputColor;
Cols: array [0..3] of PVector3Single absolute Colors;
begin
OutputCol^[0] := Weights[0] * Cols[0]^[0] + Weights[1] * Cols[1]^[0] + Weights[2] * Cols[2]^[0] + Weights[3] * Cols[3]^[0];
OutputCol^[1] := Weights[0] * Cols[0]^[1] + Weights[1] * Cols[1]^[1] + Weights[2] * Cols[2]^[1] + Weights[3] * Cols[3]^[1];
OutputCol^[2] := Weights[0] * Cols[0]^[2] + Weights[1] * Cols[1]^[2] + Weights[2] * Cols[2]^[2] + Weights[3] * Cols[3]^[2];
end;
{ TGrayscaleImage ------------------------------------------------------------ }
function TGrayscaleImage.GetGrayscalePixels: PByte;
begin
Result := PByte(RawPixels);
end;
class function TGrayscaleImage.PixelSize: Cardinal;
begin
Result := 1;
end;
class function TGrayscaleImage.ColorComponentsCount: Cardinal;
begin
Result := 1;
end;
function TGrayscaleImage.PixelPtr(const X, Y, Z: Cardinal): PByte;
begin
Result := PByte(inherited PixelPtr(X, Y, Z));
end;
function TGrayscaleImage.RowPtr(const Y, Z: Cardinal): PByteArray;
begin
Result := PByteArray(inherited RowPtr(Y, Z));
end;
procedure TGrayscaleImage.Clear(const Pixel: Byte);
begin
FillChar(RawPixels^, Size, Pixel);
end;
function TGrayscaleImage.IsClear(const Pixel: Byte): boolean;
begin
Result := IsMemCharFilled(RawPixels^, Size, Char(Pixel));
end;
procedure TGrayscaleImage.HalfColors;
var
P: PByte;
I: Cardinal;
begin
P := GrayscalePixels;
for I := 1 to Width * Height * Depth do
begin
P^ := P^ shr 1;
Inc(P);
end;
end;
procedure TGrayscaleImage.LerpWith(const Value: Single; SecondImage: TCastleImage);
var
SelfPtr: PByte;
SecondPtr: PByte;
I: Cardinal;
begin
LerpSimpleCheckConditions(SecondImage);
SelfPtr := GrayscalePixels;
SecondPtr := TGrayscaleImage(SecondImage).GrayscalePixels;
for I := 1 to Width * Height * Depth do
begin
SelfPtr^ := Clamped(Round(Lerp(Value, SelfPtr^, SecondPtr^)), 0, High(Byte));
Inc(SelfPtr);
Inc(SecondPtr);
end;
end;
class procedure TGrayscaleImage.MixColors(const OutputColor: Pointer;
const Weights: TVector4Single; const Colors: TVector4Pointer);
var
OutputCol: PByte absolute OutputColor;
Cols: array [0..3] of PByte absolute Colors;
begin
{$I norqcheckbegin.inc}
OutputCol^ := {$ifndef FAST_UNSAFE_MIX_COLORS} Clamped( {$endif} Round(Weights[0] * Cols[0]^ + Weights[1] * Cols[1]^ + Weights[2] * Cols[2]^ + Weights[3] * Cols[3]^) {$ifndef FAST_UNSAFE_MIX_COLORS} , 0, High(Byte)) {$endif};
{$I norqcheckend.inc}
end;
function TGrayscaleImage.ToGrayscaleAlphaImage: TGrayscaleAlphaImage;
var
pg: PByte;
pa: PVector2Byte;
I: Cardinal;
begin
Result := TGrayscaleAlphaImage.Create(Width, Height, Depth);
pg := GrayscalePixels;
pa := Result.GrayscaleAlphaPixels;
if TreatAsAlpha then
begin
for i := 1 to Width * Height * Depth do
begin
pa^[0] := High(Byte);
pa^[1] := pg^;
Inc(pg);
Inc(pa);
end;
end else
begin
for i := 1 to Width * Height * Depth do
begin
pa^[0] := pg^;
pa^[1] := High(Byte);
Inc(pg);
Inc(pa);
end;
end;
end;
function TGrayscaleImage.AlphaChannel(
const AlphaTolerance: Byte): TAlphaChannel;
var
PtrAlpha: PByte;
I: Cardinal;
begin
if not TreatAsAlpha then
Exit(inherited AlphaChannel(AlphaTolerance));
PtrAlpha := GrayscalePixels;
for I := 1 to Width * Height * Depth do
begin
if (PtrAlpha^ > AlphaTolerance) and
(PtrAlpha^ < 255 - AlphaTolerance) then
Exit(acFullRange);
Inc(PtrAlpha);
end;
Result := acSimpleYesNo;
end;
procedure TGrayscaleImage.Assign(const Source: TCastleImage);
var
RgbaPtr: PVector4Byte;
RgbPtr: PVector3Byte absolute RgbaPtr;
SelfPtr: PByte;
I: Cardinal;
begin
if Source is TRGBAlphaImage then
begin
SetSize(Source);
SelfPtr := GrayscalePixels;
RgbaPtr := TRGBAlphaImage(Source).AlphaPixels;
for I := 1 to Width * Height * Depth do
begin
SelfPtr^ := GrayscaleValue(RgbPtr^);
Inc(SelfPtr);
Inc(RgbaPtr);
end;
URL := Source.URL;
end else
inherited;
end;
{ TGrayscaleAlphaImage ------------------------------------------------------------ }
function TGrayscaleAlphaImage.GetGrayscaleAlphaPixels: PVector2Byte;
begin
Result := PVector2Byte(RawPixels);
end;
class function TGrayscaleAlphaImage.PixelSize: Cardinal;
begin
Result := 2;
end;
class function TGrayscaleAlphaImage.ColorComponentsCount: Cardinal;
begin
Result := 2;
end;
function TGrayscaleAlphaImage.PixelPtr(const X, Y, Z: Cardinal): PVector2Byte;
begin
Result := PVector2Byte(inherited PixelPtr(X, Y, Z));
end;
function TGrayscaleAlphaImage.RowPtr(const Y, Z: Cardinal): PArray_Vector2Byte;
begin
Result := PArray_Vector2Byte(inherited RowPtr(Y, Z));
end;
procedure TGrayscaleAlphaImage.Clear(const Pixel: TVector2Byte);
var
P: PVector2Byte;
I: Cardinal;
begin
P := GrayscaleAlphaPixels;
for I := 1 to Width * Height * Depth do
begin
Move(Pixel, P^, SizeOf(Pixel));
Inc(P);
end;
end;
function TGrayscaleAlphaImage.IsClear(const Pixel: TVector2Byte): boolean;
var
P: PVector2Byte;
I: Cardinal;
begin
P := GrayscaleAlphaPixels;
for I := 1 to Width * Height * Depth do
begin
if not CompareMem(@Pixel, P, SizeOf(Pixel)) then
begin
Result := false;
Exit;
end;
Inc(P);
end;
Result := true;
end;
function TGrayscaleAlphaImage.HasAlpha: boolean;
begin
Result := true;
end;
function TGrayscaleAlphaImage.AlphaChannel(
const AlphaTolerance: Byte): TAlphaChannel;
var
PtrAlpha: PVector2Byte;
I: Cardinal;
begin
PtrAlpha := GrayscaleAlphaPixels;
for I := 1 to Width * Height * Depth do
begin
if (PtrAlpha^[1] > AlphaTolerance) and
(PtrAlpha^[1] < 255 - AlphaTolerance) then
Exit(acFullRange);
Inc(PtrAlpha);
end;
Result := acSimpleYesNo;
end;
procedure TGrayscaleAlphaImage.LerpWith(const Value: Single; SecondImage: TCastleImage);
var
SelfPtr: PVector2Byte;
SecondPtr: PVector2Byte;
I: Cardinal;
begin
LerpSimpleCheckConditions(SecondImage);
SelfPtr := GrayscaleAlphaPixels;
SecondPtr := TGrayscaleAlphaImage(SecondImage).GrayscaleAlphaPixels;
for I := 1 to Width * Height * Depth do
begin
SelfPtr^ := Lerp(Value, SelfPtr^, SecondPtr^);
Inc(SelfPtr);
Inc(SecondPtr);
end;
end;
class procedure TGrayscaleAlphaImage.MixColors(const OutputColor: Pointer;
const Weights: TVector4Single; const Colors: TVector4Pointer);
var
OutputCol: PVector2Byte absolute OutputColor;
Cols: array [0..3] of PVector2Byte absolute Colors;
begin
{$I norqcheckbegin.inc}
OutputCol^[0] := {$ifndef FAST_UNSAFE_MIX_COLORS} Clamped( {$endif} Round(Weights[0] * Cols[0]^[0] + Weights[1] * Cols[1]^[0] + Weights[2] * Cols[2]^[0] + Weights[3] * Cols[3]^[0]) {$ifndef FAST_UNSAFE_MIX_COLORS} , 0, High(Byte)) {$endif};
OutputCol^[1] := {$ifndef FAST_UNSAFE_MIX_COLORS} Clamped( {$endif} Round(Weights[0] * Cols[0]^[1] + Weights[1] * Cols[1]^[1] + Weights[2] * Cols[2]^[1] + Weights[3] * Cols[3]^[1]) {$ifndef FAST_UNSAFE_MIX_COLORS} , 0, High(Byte)) {$endif};
{$I norqcheckend.inc}
end;
procedure TGrayscaleAlphaImage.Assign(const Source: TCastleImage);
var
RgbaPtr: PVector4Byte;
RgbPtr: PVector3Byte absolute RgbaPtr;
SelfPtr: PVector2Byte;
I: Cardinal;
begin
if Source is TRGBAlphaImage then
begin
SetSize(Source);
SelfPtr := GrayscaleAlphaPixels;
RgbaPtr := TRGBAlphaImage(Source).AlphaPixels;
for I := 1 to Width * Height * Depth do
begin
SelfPtr^[0] := GrayscaleValue(RgbPtr^);
SelfPtr^[1] := RgbaPtr^[3];
Inc(SelfPtr);
Inc(RgbaPtr);
end;
URL := Source.URL;
end else
inherited;
end;
{ RGBE <-> 3 Single color convertion --------------------------------- }
const
{ do signed Exponent dodaj RGBEExponentOffset zeby zapisac exponent jako Byte }
RGBEExponentOffset = 128;
{ RGBEMin/MaxExponent = min i max wartosci dla exponent ktore moga dac
(Exponent + RGBEExponentOffset) w zakresie Byte.
Czyli RGBEMinExponent + RGBEExponentOffset = 0,
RGBEMaxExponent + RGBEExponentOffset = High(Byte),
stad RGBEMinExponent = -RGBEExponentOffset,
RGBEMaxExponent = High(Byte) - RGBEExponentOffset }
RGBEMinExponent = -RGBEExponentOffset;
RGBEMaxExponent = High(Byte) - RGBEExponentOffset;
{ zero musi byc reprezentowane w specjalny sposob w formacie RGBE,
podobnie jak w kazdym formacie zmiennoprzec. }
RGBEZero: TVector4Byte=(0, 0, 0, 0);
RGBELow :TVector4Byte=(0, 0, 0, 0); { = RGBEZero }
RGBEHigh: TVector4Byte=(High(Byte), High(Byte), High(Byte), High(Byte));
function Vector3ToRGBE(const v: TVector3Single): TVector4Byte;
{ implementacja : jak Graphic Gems II.5 ale z poprawkami -
- nazwy MaxVal i V sa osobne (dla czytelnosci),
- checki czy Exponent jest w granicach RGBEMin/MaxExponent }
{ uwagi : moznaby sadzic ze Multiplier powinien byc liczony jako
Mantissa * 255 / MaxVal (255 = High(Byte) zamiast 256),
zeby poprawnie mapowac zakres 0..1 na zakres bajta.
Ale,
- po pierwsze, specyfikacja formatu RGBE (czyli Graphic Gems II.5)
mowi zeby uzywac 256
- po drugie, uzywanie 256 podaje nam prosty warunek na sprawdzenie
czy czworka bajtow jest poprawnym RGBE : mianowicie, przynajmniej
jeden z pierwszych trzech bajtow musi byc >= 128
(czyli musi miec najstarszy bit = 1). Tym samym ten bajt jest >= 0.5
a wiec jest poprawna mantysa. Ten prosty test na poprawnosc ma zastosowanie
przy kodowaniu plikow rgbe przy uzyciu prostego RLE, gdzie wykorzystujemy
takie niepoprawne czworki RGBE to kodowania specjalnych informacji.
- po trzecie i chyba najwazniejsze, gdyby uzywac 256 to wartosc
mantysy = 255 byla bezuzyteczna bo odpowiadalaby wartosci float = 1.0
a mantysa zawsze musi byc ostro mniejsza od 1, z definicji.
I to jest chyba koronny argument za mnozeniem tutaj przez 256.
}
var
MaxVal, Multiplier: Single;
Mantissa: Extended;
Exponent: Integer;
begin
MaxVal := CastleUtils.max(v[0], CastleUtils.max(v[1], v[2]));
{ rozpatrujemy tu nie tylko przypadek gdy liczba jest = 0 ale takze
gdy jest bliska zeru. To jest standardowe zachowanie, ale uwaga -
- w tym przypadku mogloby sie (blednie) wydawac ze mozemy tutaj zrobic
wyjatek i sprawdzac ponizej tylko MaxVal = 0.0 (dokladna rownosc)
a sprawdzanie bliskosci do zera zrzucic na test Exponent < RGBEMinExponent
ponizej. ALE to nie jest prawda - test Exponent < RGBEMinExponent przejdzie
dopiero dla niesamowicie mikroskopijnych liczb (< 1 / 2^127) podczas gdy liczby
pomiedzy tymi "mikroskopijnie malymi" a SINGLE_EQUALITY_EPSILON ciagle
beda powodowac problemy (bo przy liczeniu Multiplier dzielimy przez MaxVal
wiec male MaxVal -> Float overflow). }
if MaxVal < SingleEqualityEpsilon then begin result := RGBEZero; Exit end;
Frexp(MaxVal, Mantissa, Exponent);
if Exponent < RGBEMinExponent then begin result := RGBELow; Exit end;
if Exponent > RGBEMaxExponent then begin result := RGBEHigh; Exit end;
Multiplier := Mantissa * 256 / MaxVal;
{ MaxVal * Multiplier daje Mantissa * High(byte) a wiec cos w zakresie
0 .. High(Byte) bo Mantissa <= 1 (de facto, Mantissa >= 0.5 wiec
mozna podac dokladniejsze ograniczenie na Mantissa * High(byte)).
Wszystkie pozostale v[] sa mniejsze od MaxVal wiec one tez dadza cos
w zakresie bajta. }
result[0] := Clamped(Round(v[0]*Multiplier), 0, High(Byte));
result[1] := Clamped(Round(v[1]*Multiplier), 0, High(Byte));
result[2] := Clamped(Round(v[2]*Multiplier), 0, High(Byte));
{ sprawdzajac czy Exponent in RGBEMin/MaxExponent wczesniej juz zapewnilem
sobie ze ponizsze przypisanie jest Ok, wynik zmiesci sie w zakresie bajta. }
result[3] := Exponent + RGBEExponentOffset;
end;
function VectorRGBETo3Single(const v: TVector4Byte): TVector3Single;
{ implementacja : jak Graphic Gems II.5.
Multiplier wychodzi od 1/256 (a nie 1/255), nalezaloby tu wiec poczynic
podobne uwagi co przy konwersji w druga strone, Vector3ToRGBE.
Patrz tamtejszy komentarz. }
var
Multiplier: Single;
begin
if v[3] = 0 then begin result := ZeroVector3Single; Exit end;
Multiplier := Ldexp(1/256, Integer(v[3])-RGBEExponentOffset);
result[0] := v[0]*Multiplier;
result[1] := v[1]*Multiplier;
result[2] := v[2]*Multiplier;
end;
{ LoadEncodedImage ----------------------------------------------------------- }
{ Make sure the image has an alpha channel.
If image doesn't have an alpha channel (it is TRGBImage or TGrayscaleImage),
we will create new image instance (respectively, TRGBAlphaImage or TGrayscaleAlphaImage)
that adds an alpha channel. The newly created alpha channel will have constant opaque alpha,
except in the special case of TGrayscaleImage with TGrayscaleImage.TreatAsAlpha = @true
(where the contents will be copied to alpha, and intensity set to white).
If the image already had an alpha channel, then just return it. }
procedure ImageAddAlphaTo1st(var Img: TEncodedImage);
var
NewImg: TCastleImage;
begin
if Img is TRGBImage then
begin
NewImg := TRGBImage(Img).ToRGBAlphaImage;
FreeAndNil(Img);
Img := NewImg;
end else
if Img is TGrayscaleImage then
begin
NewImg := TGrayscaleImage(Img).ToGrayscaleAlphaImage;
FreeAndNil(Img);
Img := NewImg;
end;
if not Img.HasAlpha then
raise EInternalError.Create(
'ImageAddAlphaTo1st not possible for this image class: ' + Img.ClassName);
end;
function LoadEncodedImage(Stream: TStream; const StreamFormat: TImageFormat;
const AllowedImageClasses: array of TEncodedImageClass)
:TEncodedImage;
{ ClassAllowed is only a shortcut to global utility. }
function ClassAllowed(ImageClass: TEncodedImageClass): boolean;
begin
Result := CastleImages.ClassAllowed(ImageClass, AllowedImageClasses);
end;
{ On input, Image must be TRGBImage and on output it will be TGrayscaleImage. }
procedure ImageGrayscaleTo1st(var Image: TEncodedImage);
var
NewImage: TGrayscaleImage;
begin
NewImage := (Image as TRGBImage).ToGrayscale;
FreeAndNil(Image);
Image := NewImage;
end;
procedure ImageRGBToFloatTo1st(var Image: TEncodedImage);
var
NewResult: TEncodedImage;
begin
NewResult := (Image as TRGBImage).ToRGBFloat;
Image.Free;
Image := NewResult;
end;
procedure ImageRGBToGrayscaleTo1st(var Image: TEncodedImage);
var
NewResult: TEncodedImage;
begin
NewResult := (Image as TRGBImage).ToGrayscale;
Image.Free;
Image := NewResult;
end;
var
Load: TImageLoadFunc;
begin
Result := nil;
try
if Assigned(ImageFormatInfos[StreamFormat].Load) then
begin
Load := ImageFormatInfos[StreamFormat].Load;
case ImageFormatInfos[StreamFormat].LoadedClasses of
lcG_GA_RGB_RGBA, lcG_GA_RGB_RGBA_GPUCompressed:
begin
if ClassAllowed(TRGBImage) or
ClassAllowed(TRGBAlphaImage) or
ClassAllowed(TGrayscaleImage) or
ClassAllowed(TGrayscaleAlphaImage) or
( ClassAllowed(TGPUCompressedImage) and
(ImageFormatInfos[StreamFormat].LoadedClasses = lcG_GA_RGB_RGBA_GPUCompressed) ) then
Result := Load(Stream, AllowedImageClasses) else
if ClassAllowed(TRGBFloatImage) then
begin
Result := Load(Stream, [TRGBImage]);
ImageRGBToFloatTo1st(result);
end else
raise EUnableToLoadImage.CreateFmt('LoadEncodedImage cannot load this image file format to %s', [LoadEncodedImageParams(AllowedImageClasses)]);
end;
lcRGB_RGBA:
begin
if ClassAllowed(TRGBImage) or
ClassAllowed(TRGBAlphaImage) then
Result := Load(Stream, AllowedImageClasses) else
if ClassAllowed(TGrayscaleImage) then
begin
Result := Load(Stream, [TRGBImage]);
ImageRGBToGrayscaleTo1st(result);
end else
{ TODO: if ClassAllowed(TGrayscaleAlphaImage) then
... }
if ClassAllowed(TRGBFloatImage) then
begin
Result := Load(Stream, [TRGBImage]);
ImageRGBToFloatTo1st(result);
end else
raise EUnableToLoadImage.CreateFmt('LoadEncodedImage cannot load this image file format to %s', [LoadEncodedImageParams(AllowedImageClasses)]);
end;
lcRGB:
begin
Result := Load(Stream, [TRGBImage]);
Assert(Result is TRGBImage);
if not (ClassAllowed(TRGBImage)) then
begin
if ClassAllowed(TRGBAlphaImage) then
begin
ImageAddAlphaTo1st(Result);
end else
if ClassAllowed(TGrayscaleImage) then
begin
ImageGrayscaleTo1st(Result);
end else
{ TODO:
if ClassAllowed(TGrayscaleAlphaImage) then
begin
ImageAddAlphaTo1st(Result);
ImageGrayscaleAlphaTo1st(Result);
end else }
if ClassAllowed(TRGBFloatImage) then
begin
ImageRGBToFloatTo1st(result);
end else
raise EUnableToLoadImage.CreateFmt('LoadEncodedImage cannot load this image file format to %s', [LoadEncodedImageParams(AllowedImageClasses)]);
end;
end;
lcRGB_RGBFloat:
begin
if ClassAllowed(TRGBFloatImage) or
ClassAllowed(TRGBImage) then
Result := LoadRGBE(Stream, AllowedImageClasses) else
begin
Result := LoadRGBE(Stream, [TRGBImage]);
if ClassAllowed(TRGBAlphaImage) then
begin
ImageAddAlphaTo1st(result);
end else
if ClassAllowed(TGrayscaleImage) then
begin
ImageGrayscaleTo1st(Result);
end else
if ClassAllowed(TGrayscaleAlphaImage) then
begin
ImageGrayscaleTo1st(Result);
ImageAddAlphaTo1st(Result);
end else
raise EUnableToLoadImage.CreateFmt('LoadEncodedImage: RGBE format cannot be loaded to %s', [LoadEncodedImageParams(AllowedImageClasses)]);
end;
end;
else raise EInternalError.Create('LoadEncodedImage: LoadedClasses?');
end;
end else
raise EImageFormatNotSupported.Create('Can''t load image format "'+
ImageFormatInfos[StreamFormat].FormatName+'"');
except Result.Free; raise end;
end;
function LoadEncodedImage(Stream: TStream; const MimeType: string;
const AllowedImageClasses: array of TEncodedImageClass)
:TEncodedImage;
var
iff: TImageFormat;
begin
if MimeTypeToImageFormat(MimeType, true, false, iff) then
result := LoadEncodedImage(Stream, iff, AllowedImageClasses) else
raise EImageFormatNotSupported.Create('Unrecognized image MIME type: "'+MimeType+'"');
end;
function LoadEncodedImage(URL: string;
const AllowedImageClasses: array of TEncodedImageClass): TEncodedImage;
const
SLoadError = 'Error loading image from URL "%s": %s';
var
F: TStream;
MimeType: string;
begin
try
try
if Assigned(LoadImagePreprocess) then
LoadImagePreprocess(URL);
F := Download(URL, [soForceMemoryStream], MimeType);
except
on E: EReadError do raise EImageLoadError.Create(E.Message);
end;
try
Result := LoadEncodedImage(F, MimeType, AllowedImageClasses);
Result.FURL := URL;
finally F.Free end;
except
{ capture some exceptions to add URL to exception message }
on E: EImageLoadError do
begin
E.Message := Format(SLoadError, [URIDisplay(URL), E.Message]);
raise;
end;
on E: EImageFormatNotSupported do
begin
E.Message := Format(SLoadError, [URIDisplay(URL), E.Message]);
raise;
end;
end;
end;
function LoadEncodedImage(const URL: string): TEncodedImage;
begin
Result := LoadEncodedImage(URL, []);
end;
{ LoadImage ------------------------------------------------------------------ }
function LoadImage(Stream: TStream; const StreamFormat: TImageFormat;
const AllowedImageClasses: array of TEncodedImageClass): TCastleImage;
var
E: TEncodedImage;
begin
E := LoadEncodedImage(Stream, StreamFormat, AllowedImageClasses);
if not (E is TCastleImage) then
raise EImageLoadError.Create('Image is compressed for GPU, cannot load it to uncompressed format. You can only render such image.');
Result := TCastleImage(E);
end;
function LoadImage(Stream: TStream; const MimeType: string;
const AllowedImageClasses: array of TEncodedImageClass): TCastleImage;
var
E: TEncodedImage;
begin
E := LoadEncodedImage(Stream, MimeType, AllowedImageClasses);
if not (E is TCastleImage) then
raise EImageLoadError.Create('Image is compressed for GPU, cannot load it to uncompressed format. You can only render such image.');
Result := TCastleImage(E);
end;
function LoadImage(const URL: string;
const AllowedImageClasses: array of TEncodedImageClass): TCastleImage;
var
E: TEncodedImage;
begin
E := LoadEncodedImage(URL, AllowedImageClasses);
if not (E is TCastleImage) then
raise EImageLoadError.CreateFmt('Image "%s" is compressed for GPU, cannot load it to uncompressed format. You can only render such image.',
[URIDisplay(URL)]);
Result := TCastleImage(E);
end;
function LoadImage(const URL: string): TCastleImage;
var
E: TEncodedImage;
begin
E := LoadEncodedImage(URL);
if not (E is TCastleImage) then
raise EImageLoadError.CreateFmt('Image "%s" is compressed for GPU, cannot load it to uncompressed format. You can only render such image.',
[URIDisplay(URL)]);
Result := TCastleImage(E);
end;
function LoadImage(const URL: string;
const AllowedImageClasses: array of TEncodedImageClass;
const ResizeWidth, ResizeHeight: Cardinal;
const Interpolation: TResizeInterpolation): TCastleImage;
var
E: TEncodedImage;
begin
E := LoadEncodedImage(URL, AllowedImageClasses);
if not (E is TCastleImage) then
raise EImageLoadError.CreateFmt('Image "%s" is compressed for GPU, cannot load it to uncompressed format. You can only render such image.',
[URIDisplay(URL)]);
Result := TCastleImage(E);
Result.Resize(ResizeWidth, ResizeHeight, Interpolation);
end;
{ SaveImage on TEncodedImage ---------------------------------------------------- }
procedure SaveImage(const Img: TEncodedImage; const Format: TImageFormat; Stream: TStream);
var
ImgRGB: TRGBImage;
Save: TImageSaveFunc;
begin
if Assigned(ImageFormatInfos[Format].Save) then
begin
Save := ImageFormatInfos[Format].Save;
case ImageFormatInfos[Format].SavedClasses of
scRGB:
begin
if Img is TRGBImage then
Save(Img, Stream) else
if Img is TRGBFloatImage then
begin
ImgRGB := TRGBFloatImage(Img).ToRGBImage;
try
SaveImage(ImgRGB, Format, Stream);
finally ImgRGB.Free end;
end else
raise EImageSaveError.CreateFmt('Saving image not possible: Cannot save image class %s to this format', [Img.ClassName]);
end;
scG_GA_RGB_RGBA, scG_GA_RGB_RGBA_GPUCompressed:
begin
if (Img is TRGBImage) or
(Img is TRGBAlphaImage) or
(Img is TGrayscaleImage) or
(Img is TGrayscaleAlphaImage) or
( (Img is TGPUCompressedImage) and
(ImageFormatInfos[Format].SavedClasses = scG_GA_RGB_RGBA_GPUCompressed) ) then
Save(Img, Stream) else
if Img is TRGBFloatImage then
begin
ImgRGB := TRGBFloatImage(Img).ToRGBImage;
try
SaveImage(ImgRGB, Format, Stream);
finally ImgRGB.Free end;
end else
raise EImageSaveError.CreateFmt('Saving image not possible: Cannot save image class %s to this format', [Img.ClassName]);
end;
scRGB_RGBFloat:
begin
if (Img is TRGBImage) or
(Img is TRGBFloatImage) then
Save(Img, Stream) else
raise EImageSaveError.CreateFmt('Saving image not possible: Cannot save image class %s to this format', [Img.ClassName]);
end;
else raise EInternalError.Create('SaveImage: SavedClasses?');
end;
end else
raise EImageSaveError.CreateFmt('Saving image class %s not implemented', [Img.ClassName]);
end;
procedure SaveImage(const img: TEncodedImage; const MimeType: string; Stream: TStream);
var
Format: TImageFormat;
begin
if not MimeTypeToImageFormat(MimeType, false, true, Format) then
raise EImageSaveError.CreateFmt('Unknown image MIME type "%s", cannot save. Make sure the filename/URL you want to save has one of the recognized extensions',
[MimeType]);
SaveImage(Img, Format, Stream);
end;
procedure SaveImage(const Img: TEncodedImage; const URL: string);
var
Stream: TStream;
Format: TImageFormat;
MimeType: string;
begin
{ Do not call SaveImage with MimeType: string parameter, instead calculate
Format here. This way we can make better error messaage. }
MimeType := URIMimeType(URL);
if not MimeTypeToImageFormat(MimeType, false, true, Format) then
raise EImageSaveError.CreateFmt('Unknown image MIME type "%s", cannot save URL "%s". Make sure the filename/URL you want to save has one of the recognized extensions',
[MimeType, URL]);
Stream := URLSaveStream(URL);
try
SaveImage(Img, Format, Stream);
finally FreeAndNil(Stream) end;
end;
{ unit initialization / finalization ----------------------------------------- }
procedure AlphaMaxTo1st(var A: TAlphaChannel; const B: TAlphaChannel);
begin
if B > A then A := B;
end;
function StringToAlpha(S: string; var WarningDone: boolean): TAutoAlphaChannel;
begin
S := UpperCase(S);
if S = 'AUTO' then
Result := acAuto else
if S = 'NONE' then
Result := acNone else
if S = 'SIMPLE_YES_NO' then
Result := acSimpleYesNo else
if S = 'FULL_RANGE' then
Result := acFullRange else
begin
if not WarningDone then
begin
OnWarning(wtMajor, 'VRML/X3D', Format('Invalid "alphaChannel" field value "%s"', [S]));
WarningDone := true;
end;
Result := acAuto;
end;
end;
initialization
InitializeImagesFileFilters;
{$ifndef CASTLE_PNG_USING_FCL_IMAGE}
InitializePNG;
{$endif}
finalization
FreeAndNil(LoadImage_FileFilters);
FreeAndNil(SaveImage_FileFilters);
end.
|