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
|
/* sample_colorize.c
* A GIMP Plug-In by Wolfgang Hofer
*/
/* GIMP - The GNU Image Manipulation Program
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program 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. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "config.h"
#include <stdlib.h>
#include <string.h>
#include <glib/gstdio.h>
#include <libgimp/gimp.h>
#include <libgimp/gimpui.h>
#include "libgimp/stdplugins-intl.h"
#define PLUG_IN_PROC "plug-in-sample-colorize"
#define PLUG_IN_BINARY "sample-colorize"
#define PLUG_IN_ROLE "gimp-sample-colorize"
#define NUMBER_IN_ARGS 13
#define LUMINOSITY_0(X) ((X[0] * 30 + X[1] * 59 + X[2] * 11))
#define LUMINOSITY_1(X) ((X[0] * 30 + X[1] * 59 + X[2] * 11) / 100)
#define MIX_CHANNEL(a, b, m) (((a * m) + (b * (255 - m))) / 255)
#define SMP_GRADIENT -444
#define SMP_INV_GRADIENT -445
#define PREVIEW_BPP 3
#define PREVIEW_SIZE_X 256
#define PREVIEW_SIZE_Y 256
#define DA_WIDTH 256
#define DA_HEIGHT 25
#define GRADIENT_HEIGHT 15
#define CONTROL_HEIGHT DA_HEIGHT - GRADIENT_HEIGHT
#define LEVELS_DA_MASK (GDK_EXPOSURE_MASK | \
GDK_ENTER_NOTIFY_MASK | \
GDK_BUTTON_PRESS_MASK | \
GDK_BUTTON_RELEASE_MASK | \
GDK_BUTTON1_MOTION_MASK | \
GDK_POINTER_MOTION_HINT_MASK)
#define LOW_INPUT 0x1
#define GAMMA 0x2
#define HIGH_INPUT 0x4
#define LOW_OUTPUT 0x8
#define HIGH_OUTPUT 0x10
#define INPUT_LEVELS 0x20
#define OUTPUT_LEVELS 0x40
#define INPUT_SLIDERS 0x80
#define OUTPUT_SLIDERS 0x100
#define DRAW 0x200
#define REFRESH_DST 0x400
#define ALL 0xFFF
#define MC_GET_SAMPLE_COLORS 1
#define MC_DST_REMAP 2
#define MC_ALL (MC_GET_SAMPLE_COLORS | MC_DST_REMAP)
typedef struct
{
GimpDrawable *dst;
gint32 sample_id;
GimpDrawable *sample;
gint32 guess_missing; /* TRUE or FALSE */
gint32 lvl_in_min; /* 0 up to 254 */
gint32 lvl_in_max; /* 1 up to 255 */
float lvl_in_gamma; /* 0.1 up to 10.0 (1.0 == linear) */
gint32 lvl_out_min; /* 0 up to 254 */
gint32 lvl_out_max; /* 1 up to 255 */
float tol_col_err; /* 0.0% up to 100.0%
* this is used to find out colors of the same
* colortone, while analyzing sample colors,
* It does not make much sense for the user to adjust this
* value. (I used a param file to find out a suitable value)
*/
} t_values;
typedef struct
{
GimpProcedureConfig *config;
GtkWidget *dialog;
GtkWidget *sample_preview;
GtkWidget *dst_preview;
GtkWidget *sample_colortab_preview;
GtkWidget *sample_drawarea;
GtkWidget *in_lvl_gray_preview;
GtkWidget *in_lvl_drawarea;
GtkWidget *sample_button;
gint active_slider;
gint slider_pos[5]; /* positions for the five sliders */
gboolean enable_preview_update;
gboolean sample_show_selection;
gboolean dst_show_selection;
gboolean sample_show_color;
gboolean dst_show_color;
} t_samp_interface;
typedef struct
{
guchar color[4]; /* R,G,B,A */
gint32 sum_color; /* nr. of sourcepixels with (nearly the same) color */
void *next;
} t_samp_color_elem;
typedef struct
{
gint32 all_samples; /* number of all source pixels with this luminosity */
gint from_sample; /* TRUE: color found in sample, FALSE: interpolated color added */
t_samp_color_elem *col_ptr; /* List of sample colors at same luminosity */
} t_samp_table_elem;
typedef struct
{
GimpDrawable *drawable;
GeglBuffer *buffer;
const Babl *format;
gint width;
gint height;
void *sel_gdrw;
gint x1;
gint y1;
gint x2;
gint y2;
gint index_alpha; /* 0 == no alpha, 1 == GREYA, 3 == RGBA */
gint bpp;
gint tile_width;
gint tile_height;
gint shadow;
gint32 seldeltax;
gint32 seldeltay;
} t_GDRW;
typedef struct _Colorize Colorize;
typedef struct _ColorizeClass ColorizeClass;
struct _Colorize
{
GimpPlugIn parent_instance;
};
struct _ColorizeClass
{
GimpPlugInClass parent_class;
};
#define COLORIZE_TYPE (colorize_get_type ())
#define COLORIZE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), COLORIZE_TYPE, Colorize))
GType colorize_get_type (void) G_GNUC_CONST;
static GList * colorize_query_procedures (GimpPlugIn *plug_in);
static GimpProcedure * colorize_create_procedure (GimpPlugIn *plug_in,
const gchar *name);
static GimpValueArray * colorize_run (GimpProcedure *procedure,
GimpRunMode run_mode,
GimpImage *image,
GimpDrawable **drawables,
GimpProcedureConfig *config,
gpointer run_data);
static gint main_colorize (gint mc_flags,
GimpProcedureConfig *config);
static void get_filevalues (void);
static gboolean smp_dialog (GimpProcedure *procedure,
GimpProcedureConfig *config);
static void refresh_dst_preview (GtkWidget *preview,
guchar *src_buffer);
static void update_preview (GimpDrawable *drawable);
static void clear_tables (void);
static void free_colors (void);
static void levels_update (gint update);
static gint level_in_events (GtkWidget *widget,
GdkEvent *event);
static gint level_in_draw (GtkWidget *widget,
cairo_t *cr);
static gint level_out_events (GtkWidget *widget,
GdkEvent *event);
static gint level_out_draw (GtkWidget *widget,
cairo_t *cr);
static void calculate_level_transfers (void);
static void get_pixel (t_GDRW *gdrw,
gint32 x,
gint32 y,
guchar *pixel);
static void init_gdrw (t_GDRW *gdrw,
GimpDrawable *drawable,
gboolean shadow);
static void end_gdrw (t_GDRW *gdrw);
static void remap_pixel (guchar *pixel,
const guchar *original,
gint bpp2,
GimpProcedureConfig
*config);
static void guess_missing_colors (void);
static void fill_missing_colors (void);
static void smp_get_colors (GtkWidget *dialog);
static void get_gradient (gint mode);
static void clear_preview (GtkWidget *preview);
G_DEFINE_TYPE (Colorize, colorize, GIMP_TYPE_PLUG_IN)
GIMP_MAIN (COLORIZE_TYPE)
DEFINE_STD_SET_I18N
static t_samp_interface g_di; /* global dialog interface variables */
static t_values g_values = { NULL, -1, NULL, 1, 0, 255, 1.0, 0, 255, 5.5 };
static t_samp_table_elem g_lum_tab[256];
static guchar g_lvl_trans_tab[256];
static guchar g_out_trans_tab[256];
static guchar g_sample_color_tab[256 * 3];
static guchar g_dst_preview_buffer[PREVIEW_SIZE_X * PREVIEW_SIZE_Y * 4 ]; /* color copy with mask of dst in previewsize */
static gint32 g_tol_col_err;
static gint32 g_max_col_err;
static gint g_Sdebug = FALSE;
static gint g_show_progress = FALSE;
static void
colorize_class_init (ColorizeClass *klass)
{
GimpPlugInClass *plug_in_class = GIMP_PLUG_IN_CLASS (klass);
plug_in_class->query_procedures = colorize_query_procedures;
plug_in_class->create_procedure = colorize_create_procedure;
plug_in_class->set_i18n = STD_SET_I18N;
}
static void
colorize_init (Colorize *colorize)
{
}
static GList *
colorize_query_procedures (GimpPlugIn *plug_in)
{
return g_list_append (NULL, g_strdup (PLUG_IN_PROC));
}
static GimpProcedure *
colorize_create_procedure (GimpPlugIn *plug_in,
const gchar *name)
{
GimpProcedure *procedure = NULL;
if (! strcmp (name, PLUG_IN_PROC))
{
static gchar *help_string =
"This plug-in colorizes the contents of the specified (gray) layer"
" with the help of a sample (color) layer."
" It analyzes all colors in the sample layer."
" The sample colors are sorted by brightness (== intensity) and amount"
" and stored in a sample colortable (where brightness is the index)"
" The pixels of the destination layer are remapped with the help of the"
" sample colortable. If use_subcolors is TRUE, the remapping process uses"
" all sample colors of the corresponding brightness-intensity and"
" distributes the subcolors according to their amount in the sample"
" (If the sample has 5 green, 3 yellow, and 1 red pixel of the "
" intensity value 105, the destination pixels at intensity value 105"
" are randomly painted in green, yellow and red in a relation of 5:3:1"
" If use_subcolors is FALSE only one sample color per intensity is used."
" (green will be used in this example)"
" The brightness intensity value is transformed at the remapping process"
" according to the levels: out_lo, out_hi, in_lo, in_high and gamma"
" The in_low / in_high levels specify an initial mapping of the intensity."
" The gamma value determines how intensities are interpolated between"
" the in_lo and in_high levels. A gamma value of 1.0 results in linear"
" interpolation. Higher gamma values results in more high-level intensities"
" Lower gamma values results in more low-level intensities"
" The out_low/out_high levels constrain the resulting intensity index"
" The intensity index is used to pick the corresponding color"
" in the sample colortable. If hold_inten is FALSE the picked color"
" is used 1:1 as resulting remap_color."
" If hold_inten is TRUE The brightness of the picked color is adjusted"
" back to the original intensity value (only hue and saturation are"
" taken from the picked sample color)"
" (or to the input level, if orig_inten is set FALSE)"
" Works on both Grayscale and RGB image with/without alpha channel."
" (the image with the dst_drawable is converted to RGB if necessary)"
" The sample_drawable should be of type RGB or RGBA";
procedure = gimp_image_procedure_new (plug_in, name,
GIMP_PDB_PROC_TYPE_PLUGIN,
colorize_run, NULL, NULL);
gimp_procedure_set_image_types (procedure, "RGB*, GRAY*");
gimp_procedure_set_sensitivity_mask (procedure,
GIMP_PROCEDURE_SENSITIVE_DRAWABLE);
gimp_procedure_set_menu_label (procedure, _("_Sample Colorize..."));
gimp_procedure_add_menu_path (procedure, "<Image>/Colors/Map");
gimp_procedure_set_documentation (procedure,
_("Colorize image using a sample "
"image as a guide"),
_(help_string),
name);
gimp_procedure_set_attribution (procedure,
"Wolfgang Hofer",
"hof@hotbot.com",
"02/2000");
gimp_procedure_add_drawable_argument (procedure, "sample-drawable",
_("Sample drawable"),
_("Sample drawable (should be of Type RGB or RGBA)"),
TRUE,
G_PARAM_READWRITE);
gimp_procedure_add_boolean_argument (procedure, "hold-inten",
_("Hold _intensity"),
_("Hold brightness intensity levels"),
TRUE,
G_PARAM_READWRITE);
gimp_procedure_add_boolean_argument (procedure, "orig-inten",
_("Original i_ntensity"),
_("TRUE: hold brightness of original intensity "
"levels, "
"FALSE: Hold Intensity of input levels"),
TRUE,
G_PARAM_READWRITE);
gimp_procedure_add_boolean_argument (procedure, "rnd-subcolors",
_("Us_e subcolors"),
_("TRUE: Use all subcolors of same intensity, "
"FALSE: Use only one color per intensity"),
FALSE,
G_PARAM_READWRITE);
gimp_procedure_add_boolean_argument (procedure, "guess-missing",
_("Smooth sam_ples"),
_("TRUE: guess samplecolors for the missing "
"intensity values, "
"FALSE: use only colors found in the sample"),
TRUE,
G_PARAM_READWRITE);
gimp_procedure_add_int_argument (procedure, "in-low",
_("_Low"),
_("Intensity of lowest input"),
0, 254, 0,
G_PARAM_READWRITE);
gimp_procedure_add_int_argument (procedure, "in-high",
_("_High"),
_("Intensity of highest input"),
1, 255, 255,
G_PARAM_READWRITE);
gimp_procedure_add_double_argument (procedure, "gamma",
_("Ga_mma"),
_("Gamma adjustment factor, 1.0 is linear"),
0.1, 10.0, 1.0,
G_PARAM_READWRITE);
gimp_procedure_add_int_argument (procedure, "out-low",
_("Lo_w"),
_("Lowest sample color intensity"),
0, 254, 0,
G_PARAM_READWRITE);
gimp_procedure_add_int_argument (procedure, "out-high",
_("Hi_gh"),
_("Highest sample color intensity"),
1, 255, 255,
G_PARAM_READWRITE);
}
return procedure;
}
static GimpValueArray *
colorize_run (GimpProcedure *procedure,
GimpRunMode run_mode,
GimpImage *image,
GimpDrawable **drawables,
GimpProcedureConfig *config,
gpointer run_data)
{
const gchar *env;
GimpDrawable *drawable;
gegl_init (NULL, NULL);
if (gimp_core_object_array_get_length ((GObject **) drawables) != 1)
{
GError *error = NULL;
g_set_error (&error, GIMP_PLUG_IN_ERROR, 0,
_("Procedure '%s' only works with one drawable."),
PLUG_IN_PROC);
return gimp_procedure_new_return_values (procedure,
GIMP_PDB_CALLING_ERROR,
error);
}
else
{
drawable = drawables[0];
}
env = g_getenv ("SAMPLE_COLORIZE_DEBUG");
if (env != NULL && (*env != 'n') && (*env != 'N'))
g_Sdebug = TRUE;
if (g_Sdebug)
g_printf ("sample colorize run\n");
g_show_progress = FALSE;
g_di.config = config;
g_object_get (config,
"sample-drawable", &g_values.sample,
"guess_missing", &g_values.guess_missing,
"in-low", &g_values.lvl_in_min,
"in-high", &g_values.lvl_in_max,
"gamma", &g_values.lvl_in_gamma,
"out-low", &g_values.lvl_out_min,
"out-high", &g_values.lvl_out_max,
NULL);
g_values.sample_id = -1;
/* fix value */
g_values.tol_col_err = 5.5;
/* Get the specified dst_drawable */
g_values.dst = drawable;
clear_tables ();
/* Make sure that the drawable is gray or RGB color */
if (gimp_drawable_is_rgb (drawable) ||
gimp_drawable_is_gray (drawable))
{
switch (run_mode)
{
case GIMP_RUN_INTERACTIVE:
if (! smp_dialog (procedure, config))
{
return gimp_procedure_new_return_values (procedure,
GIMP_PDB_CANCEL,
NULL);
}
g_show_progress = TRUE;
if (main_colorize (MC_DST_REMAP, config) == 0)
{
gimp_displays_flush ();
g_show_progress = FALSE;
}
free_colors ();
gimp_displays_flush ();
break;
case GIMP_RUN_NONINTERACTIVE:
if (g_values.sample)
g_values.sample_id = gimp_item_get_id (GIMP_ITEM (g_values.sample));
if (main_colorize (MC_GET_SAMPLE_COLORS, config) >= 0)
{
main_colorize (MC_DST_REMAP, config);
}
else
{
return gimp_procedure_new_return_values (procedure,
GIMP_PDB_EXECUTION_ERROR,
NULL);
}
break;
case GIMP_RUN_WITH_LAST_VALS:
break;
}
}
else
{
return gimp_procedure_new_return_values (procedure,
GIMP_PDB_EXECUTION_ERROR,
NULL);
}
return gimp_procedure_new_return_values (procedure, GIMP_PDB_SUCCESS, NULL);
}
/* ============================================================================
* callback and constraint procedures for the dialog
* ============================================================================
*/
static void
smp_toggle_callback (GtkWidget *widget,
gpointer data)
{
gboolean hold_inten;
gboolean orig_inten;
gboolean rnd_subcolors;
gboolean guess_missing;
g_object_get (g_di.config,
"hold-inten", &hold_inten,
"orig-inten", &orig_inten,
"rnd_subcolors", &rnd_subcolors,
"guess_missing", &guess_missing,
NULL);
if ((data == &g_di.sample_show_selection) ||
(data == &g_di.sample_show_color))
{
update_preview (gimp_drawable_get_by_id (g_values.sample_id));
return;
}
if ((data == &g_di.dst_show_selection) ||
(data == &g_di.dst_show_color))
{
update_preview (g_values.dst);
return;
}
if (hold_inten || orig_inten || rnd_subcolors)
{
gimp_procedure_dialog_set_sensitive (GIMP_PROCEDURE_DIALOG (g_di.dialog),
"orig-inten", hold_inten, NULL,
NULL, FALSE);
refresh_dst_preview (g_di.dst_preview, &g_dst_preview_buffer[0]);
}
if (guess_missing)
guess_missing_colors ();
else
fill_missing_colors ();
smp_get_colors (NULL);
}
static void
smp_sample_combo_callback (GtkWidget *widget)
{
gint value;
gimp_int_combo_box_get_active (GIMP_INT_COMBO_BOX (widget), &value);
g_values.sample_id = value;
if (value == SMP_GRADIENT || value == SMP_INV_GRADIENT)
{
get_gradient (value);
smp_get_colors (NULL);
if (g_di.sample_preview)
clear_preview (g_di.sample_preview);
if (g_di.sample_button)
gtk_widget_set_sensitive (g_di.sample_button, FALSE);
}
else
{
update_preview (gimp_drawable_get_by_id (g_values.sample_id));
if (g_di.sample_button)
gtk_widget_set_sensitive (g_di.sample_button, TRUE);
}
}
static void
smp_dest_combo_callback (GtkWidget *widget)
{
gint id;
gimp_int_combo_box_get_active (GIMP_INT_COMBO_BOX (widget), &id);
g_values.dst = gimp_drawable_get_by_id (id);
update_preview (g_values.dst);
if (g_di.sample_button)
gtk_widget_set_sensitive (g_di.sample_button, TRUE);
}
static gint
smp_constrain (GimpImage *image,
GimpItem *item,
gpointer data)
{
/* don't accept layers from indexed images */
if (gimp_drawable_is_indexed (GIMP_DRAWABLE (item)))
return FALSE;
return TRUE;
}
static void
smp_adj_lvl_in_max_upd_callback (GObject *config,
const GParamSpec *pspec,
gpointer *data)
{
gint32 value;
gint upd_flags;
g_object_get (config,
"in-high", &value,
NULL);
value = CLAMP (value, 1, 255);
if (value != g_values.lvl_in_max)
{
g_values.lvl_in_max = value;
upd_flags = INPUT_SLIDERS | INPUT_LEVELS | DRAW | REFRESH_DST;
if (g_values.lvl_in_max < g_values.lvl_in_min)
{
g_values.lvl_in_min = g_values.lvl_in_max;
upd_flags |= LOW_INPUT;
}
levels_update (upd_flags);
}
}
static void
smp_adj_lvl_in_min_upd_callback (GObject *config,
const GParamSpec *pspec,
gpointer *data)
{
gint32 value;
gint upd_flags;
g_object_get (config,
"in-low", &value,
NULL);
if (value != g_values.lvl_in_min)
{
g_values.lvl_in_min = value;
upd_flags = INPUT_SLIDERS | INPUT_LEVELS | DRAW | REFRESH_DST;
if (g_values.lvl_in_min > g_values.lvl_in_max)
{
g_values.lvl_in_max = g_values.lvl_in_min;
upd_flags |= HIGH_INPUT;
}
levels_update (upd_flags);
}
}
static void
smp_text_gamma_upd_callback (GObject *config,
const GParamSpec *pspec,
gpointer *data)
{
double value;
g_object_get (config,
"gamma", &value,
NULL);
if (value != g_values.lvl_in_gamma)
{
g_values.lvl_in_gamma = value;
levels_update (INPUT_SLIDERS | INPUT_LEVELS | DRAW | REFRESH_DST);
}
}
static void
smp_adj_lvl_out_max_upd_callback (GObject *config,
const GParamSpec *pspec,
gpointer *data)
{
gint32 value;
gint upd_flags;
g_object_get (config,
"out-high", &value,
NULL);
value = CLAMP (value, 1, 255);
if (value != g_values.lvl_out_max)
{
g_values.lvl_out_max = value;
upd_flags = OUTPUT_SLIDERS | OUTPUT_LEVELS | DRAW | REFRESH_DST;
if (g_values.lvl_out_max < g_values.lvl_out_min)
{
g_values.lvl_out_min = g_values.lvl_out_max;
upd_flags |= LOW_OUTPUT;
}
levels_update (upd_flags);
}
}
static void
smp_adj_lvl_out_min_upd_callback (GObject *config,
const GParamSpec *pspec,
gpointer *data)
{
gint32 value;
gint upd_flags;
g_object_get (config,
"out-low", &value,
NULL);
if (value != g_values.lvl_out_min)
{
g_values.lvl_out_min = value;
upd_flags = OUTPUT_SLIDERS | OUTPUT_LEVELS | DRAW | REFRESH_DST;
if (g_values.lvl_out_min > g_values.lvl_out_max)
{
g_values.lvl_out_max = g_values.lvl_out_min;
upd_flags |= HIGH_OUTPUT;
}
levels_update (upd_flags);
}
}
/* ============================================================================
* DIALOG helper procedures
* (workers for the updates on the preview widgets)
* ============================================================================
*/
static void
refresh_dst_preview (GtkWidget *preview,
guchar *src_buffer)
{
guchar allrowsbuf[3 * PREVIEW_SIZE_X * PREVIEW_SIZE_Y];
guchar *ptr;
guchar *src_ptr;
guchar lum;
guchar maskbyte;
gint x, y;
gint preview_bpp;
gint src_bpp;
preview_bpp = PREVIEW_BPP;
src_bpp = PREVIEW_BPP +1; /* 3 colors + 1 maskbyte */
src_ptr = src_buffer;
ptr = allrowsbuf;
for (y = 0; y < PREVIEW_SIZE_Y; y++)
{
for (x = 0; x < PREVIEW_SIZE_X; x++)
{
if ((maskbyte = src_ptr[3]) == 0)
{
ptr[0] = src_ptr[0];
ptr[1] = src_ptr[1];
ptr[2] = src_ptr[2];
}
else
{
if (g_di.dst_show_color)
{
remap_pixel (ptr, src_ptr, 3, g_di.config);
}
else
{
/* lum = g_out_trans_tab[g_lvl_trans_tab[LUMINOSITY_1(src_ptr)]]; */
/* get brightness from (uncolorized) original */
lum = g_lvl_trans_tab[LUMINOSITY_1 (src_ptr)];
/* get brightness from (uncolorized) original */
ptr[0] = lum;
ptr[1] = lum;
ptr[2] = lum;
}
if (maskbyte < 255)
{
ptr[0] = MIX_CHANNEL (ptr[0], src_ptr[0], maskbyte);
ptr[1] = MIX_CHANNEL (ptr[1], src_ptr[1], maskbyte);
ptr[2] = MIX_CHANNEL (ptr[2], src_ptr[2], maskbyte);
}
}
ptr += preview_bpp;
src_ptr += src_bpp;
}
}
gimp_preview_area_draw (GIMP_PREVIEW_AREA (preview),
0, 0, PREVIEW_SIZE_X, PREVIEW_SIZE_Y,
GIMP_RGB_IMAGE,
allrowsbuf,
PREVIEW_SIZE_X * 3);
}
static void
clear_preview (GtkWidget *preview)
{
gimp_preview_area_fill (GIMP_PREVIEW_AREA (preview),
0, 0, PREVIEW_SIZE_X, PREVIEW_SIZE_Y,
170, 170, 170);
}
static void
update_pv (GtkWidget *preview,
gboolean show_selection,
t_GDRW *gdrw,
guchar *dst_buffer,
gboolean is_color)
{
guchar allrowsbuf[4 * PREVIEW_SIZE_X * PREVIEW_SIZE_Y];
guchar pixel[4];
guchar *ptr;
gint x, y;
gint x2, y2;
gint ofx, ofy;
gint sel_width, sel_height;
double scale_x, scale_y;
guchar *buf_ptr;
guchar dummy[4];
guchar maskbytes[4];
gint dstep;
guchar alpha;
if (! preview)
return;
/* init gray pixel (if we are called without a sourceimage (gdwr == NULL) */
pixel[0] = pixel[1] =pixel[2] = pixel[3] = 127;
/* calculate scale factors and offsets */
if (show_selection)
{
sel_width = gdrw->x2 - gdrw->x1;
sel_height = gdrw->y2 - gdrw->y1;
if (sel_height > sel_width)
{
scale_y = (gfloat) sel_height / PREVIEW_SIZE_Y;
scale_x = scale_y;
ofx = (gdrw->x1 +
((sel_width - (PREVIEW_SIZE_X * scale_x)) / 2));
ofy = gdrw->y1;
}
else
{
scale_x = (gfloat) sel_width / PREVIEW_SIZE_X;
scale_y = scale_x;
ofx = gdrw->x1;
ofy = (gdrw->y1 +
((sel_height - (PREVIEW_SIZE_Y * scale_y)) / 2));
}
}
else
{
if (gdrw->height > gdrw->width)
{
scale_y = (gfloat) gdrw->height / PREVIEW_SIZE_Y;
scale_x = scale_y;
ofx = (gdrw->width - (PREVIEW_SIZE_X * scale_x)) / 2;
ofy = 0;
}
else
{
scale_x = (gfloat) gdrw->width / PREVIEW_SIZE_X;
scale_y = scale_x;
ofx = 0;
ofy = (gdrw->height - (PREVIEW_SIZE_Y * scale_y)) / 2;
}
}
/* check if output goes to previw widget or to dst_buffer */
if (dst_buffer)
{
buf_ptr = dst_buffer;
dstep = PREVIEW_BPP +1;
}
else
{
buf_ptr = &dummy[0];
dstep = 0;
}
/* render preview */
ptr = allrowsbuf;
for (y = 0; y < PREVIEW_SIZE_Y; y++)
{
for (x = 0; x < PREVIEW_SIZE_X; x++)
{
if (gdrw->drawable)
{
x2 = ofx + (x * scale_x);
y2 = ofy + (y * scale_y);
get_pixel (gdrw, x2, y2, &pixel[0]);
if (gdrw->sel_gdrw)
{
get_pixel (gdrw->sel_gdrw,
x2 + gdrw->seldeltax,
y2 + gdrw->seldeltay,
&maskbytes[0]);
}
else
{
maskbytes[0] = 255;
}
}
alpha = pixel[gdrw->index_alpha];
if (is_color && (gdrw->bpp > 2))
{
buf_ptr[0] = ptr[0] = pixel[0];
buf_ptr[1] = ptr[1] = pixel[1];
buf_ptr[2] = ptr[2] = pixel[2];
}
else
{
if (gdrw->bpp > 2)
*ptr = LUMINOSITY_1 (pixel);
else
*ptr = pixel[0];
*buf_ptr = *ptr;
buf_ptr[1] = ptr[1] = *ptr;
buf_ptr[2] = ptr[2] = *ptr;
}
if (gdrw->index_alpha == 0) /* has no alpha channel */
buf_ptr[3] = ptr[3] = 255;
else
buf_ptr[3] = ptr[3] = MIN (maskbytes[0], alpha);
buf_ptr += dstep; /* advance (or stay at dummy byte) */
ptr += 4;
}
}
if (dst_buffer == NULL)
{
gimp_preview_area_draw (GIMP_PREVIEW_AREA (preview),
0, 0, PREVIEW_SIZE_X, PREVIEW_SIZE_Y,
GIMP_RGBA_IMAGE,
allrowsbuf,
PREVIEW_SIZE_X * 4);
gtk_widget_queue_draw (preview);
}
}
static void
update_preview (GimpDrawable *drawable)
{
t_GDRW gdrw;
gboolean is_drawable = FALSE;
if (! drawable || !g_di.enable_preview_update)
return;
if (gimp_item_get_id (GIMP_ITEM (drawable)) == g_values.sample_id)
{
is_drawable = TRUE;
init_gdrw (&gdrw, drawable, FALSE);
update_pv (g_di.sample_preview, g_di.sample_show_selection, &gdrw,
NULL, g_di.sample_show_color);
}
else if (gimp_item_get_id (GIMP_ITEM (drawable)) ==
gimp_item_get_id (GIMP_ITEM (g_values.dst)))
{
is_drawable = TRUE;
init_gdrw (&gdrw, drawable, FALSE);
update_pv (g_di.dst_preview, g_di.dst_show_selection, &gdrw,
&g_dst_preview_buffer[0], g_di.dst_show_color);
refresh_dst_preview (g_di.dst_preview, &g_dst_preview_buffer[0]);
}
if (is_drawable)
end_gdrw (&gdrw);
}
static void
levels_draw_slider (cairo_t *cr,
GdkRGBA *border_color,
GdkRGBA *fill_color,
gint xpos)
{
cairo_move_to (cr, xpos, 0);
cairo_line_to (cr, xpos - (CONTROL_HEIGHT - 1) / 2, CONTROL_HEIGHT - 1);
cairo_line_to (cr, xpos + (CONTROL_HEIGHT - 1) / 2, CONTROL_HEIGHT - 1);
cairo_line_to (cr, xpos, 0);
gdk_cairo_set_source_rgba (cr, fill_color);
cairo_fill_preserve (cr);
gdk_cairo_set_source_rgba (cr, border_color);
cairo_stroke (cr);
}
static void
smp_get_colors (GtkWidget *dialog)
{
gint i;
guchar buffer[3 * DA_WIDTH * GRADIENT_HEIGHT];
update_preview (gimp_drawable_get_by_id (g_values.sample_id));
/* do not colorize, just analyze sample colors */
if (dialog)
main_colorize (MC_GET_SAMPLE_COLORS, g_di.config);
for (i = 0; i < GRADIENT_HEIGHT; i++)
memcpy (buffer + i * 3 * DA_WIDTH, g_sample_color_tab, 3 * DA_WIDTH);
update_preview (g_values.dst);
gimp_preview_area_draw (GIMP_PREVIEW_AREA (g_di.sample_colortab_preview),
0, 0, DA_WIDTH, GRADIENT_HEIGHT,
GIMP_RGB_IMAGE,
buffer,
DA_WIDTH * 3);
}
static void
levels_update (gint update)
{
gint i;
if (g_Sdebug)
g_printf ("levels_update: update request %x\n", update);
/* Recalculate the transfer array */
calculate_level_transfers ();
if (update & REFRESH_DST)
refresh_dst_preview (g_di.dst_preview, &g_dst_preview_buffer[0]);
/* update the spinbutton entry widgets */
if (update & LOW_INPUT)
g_object_set (g_di.config,
"in-low", g_values.lvl_in_min,
NULL);
if (update & GAMMA)
{
g_values.lvl_in_gamma = CLAMP (g_values.lvl_in_gamma, 0.1, 10.0);
g_object_set (g_di.config,
"gamma", g_values.lvl_in_gamma,
NULL);
}
if (update & HIGH_INPUT)
g_object_set (g_di.config,
"in-high", g_values.lvl_in_max,
NULL);
if (update & LOW_OUTPUT)
g_object_set (g_di.config,
"out-low", g_values.lvl_out_min,
NULL);
if (update & HIGH_OUTPUT)
g_object_set (g_di.config,
"out-high", g_values.lvl_out_max,
NULL);
if (update & INPUT_LEVELS)
{
guchar buffer[DA_WIDTH * GRADIENT_HEIGHT];
for (i = 0; i < GRADIENT_HEIGHT; i++)
memcpy (buffer + DA_WIDTH * i, g_lvl_trans_tab, DA_WIDTH);
gimp_preview_area_draw (GIMP_PREVIEW_AREA (g_di.in_lvl_gray_preview),
0, 0, DA_WIDTH, GRADIENT_HEIGHT,
GIMP_GRAY_IMAGE,
buffer,
DA_WIDTH);
}
if (update & INPUT_SLIDERS)
gtk_widget_queue_draw (g_di.in_lvl_drawarea);
if (update & OUTPUT_SLIDERS)
gtk_widget_queue_draw (g_di.sample_drawarea);
}
static gboolean
level_in_events (GtkWidget *widget,
GdkEvent *event)
{
GdkEventButton *bevent;
GdkEventMotion *mevent;
gdouble width, mid, tmp;
gint x, distance;
gint i;
gint update = FALSE;
switch (event->type)
{
case GDK_BUTTON_PRESS:
if (g_Sdebug)
g_printf ("EVENT: GDK_BUTTON_PRESS\n");
gtk_grab_add (widget);
bevent = (GdkEventButton *) event;
distance = G_MAXINT;
for (i = 0; i < 3; i++)
{
if (fabs (bevent->x - g_di.slider_pos[i]) < distance)
{
g_di.active_slider = i;
distance = fabs (bevent->x - g_di.slider_pos[i]);
}
}
x = bevent->x;
update = TRUE;
break;
case GDK_BUTTON_RELEASE:
if (g_Sdebug)
g_printf ("EVENT: GDK_BUTTON_RELEASE\n");
gtk_grab_remove (widget);
switch (g_di.active_slider)
{
case 0: /* low input */
levels_update (LOW_INPUT | GAMMA | DRAW);
break;
case 1: /* gamma */
levels_update (GAMMA);
break;
case 2: /* high input */
levels_update (HIGH_INPUT | GAMMA | DRAW);
break;
}
refresh_dst_preview (g_di.dst_preview, &g_dst_preview_buffer[0]);
break;
case GDK_MOTION_NOTIFY:
if (g_Sdebug)
g_printf ("EVENT: GDK_MOTION_NOTIFY\n");
mevent = (GdkEventMotion *) event;
x = mevent->x;
gdk_event_request_motions (mevent);
update = TRUE;
break;
default:
if (g_Sdebug)
g_printf ("EVENT: default\n");
break;
}
if (update)
{
if (g_Sdebug)
g_printf ("EVENT: ** update **\n");
switch (g_di.active_slider)
{
case 0: /* low input */
{
gint lvl_in_max = (g_values.lvl_in_max < 255) ?
g_values.lvl_in_max : 254;
g_values.lvl_in_min = ((double) x / (double) DA_WIDTH) * 255.0;
g_values.lvl_in_min = CLAMP (g_values.lvl_in_min,
0, lvl_in_max);
}
break;
case 1: /* gamma */
width = (double) (g_di.slider_pos[2] - g_di.slider_pos[0]) / 2.0;
mid = g_di.slider_pos[0] + width;
x = CLAMP (x, g_di.slider_pos[0], g_di.slider_pos[2]);
tmp = (double) (x - mid) / width;
g_values.lvl_in_gamma = 1.0 / pow (10, tmp);
/* round the gamma value to the nearest 1/100th */
g_values.lvl_in_gamma =
floor (g_values.lvl_in_gamma * 100 + 0.5) / 100.0;
g_values.lvl_in_gamma = CLAMP (g_values.lvl_in_gamma, 0.1, 10.0);
break;
case 2: /* high input */
g_values.lvl_in_max = ((double) x / (double) DA_WIDTH) * 255.0;
g_values.lvl_in_max = CLAMP (g_values.lvl_in_max,
g_values.lvl_in_min, 255);
break;
}
levels_update (INPUT_SLIDERS | INPUT_LEVELS | DRAW);
}
return FALSE;
}
static gboolean
level_in_draw (GtkWidget *widget,
cairo_t *cr)
{
GtkStyleContext *style = gtk_widget_get_style_context (widget);
gdouble width, mid, tmp;
GdkRGBA black = { 0.0, 0.0, 0.0, 1.0 };
GdkRGBA white = { 1.0, 1.0, 1.0, 1.0 };
GdkRGBA gray = { 0.5, 0.5, 0.5, 1.0 };
gtk_render_background (style, cr, 0, 0,
gtk_widget_get_allocated_width (widget),
gtk_widget_get_allocated_height (widget));
cairo_translate (cr, 0.5, 0.5);
cairo_set_line_width (cr, 1.0);
g_di.slider_pos[0] = DA_WIDTH * ((double) g_values.lvl_in_min / 255.0);
g_di.slider_pos[2] = DA_WIDTH * ((double) g_values.lvl_in_max / 255.0);
width = (double) (g_di.slider_pos[2] - g_di.slider_pos[0]) / 2.0;
mid = g_di.slider_pos[0] + width;
tmp = log10 (1.0 / g_values.lvl_in_gamma);
g_di.slider_pos[1] = (int) (mid + width * tmp + 0.5);
levels_draw_slider (cr,
&black, &gray,
g_di.slider_pos[1]);
levels_draw_slider (cr,
&black, &black,
g_di.slider_pos[0]);
levels_draw_slider (cr,
&black, &white,
g_di.slider_pos[2]);
return FALSE;
}
static gboolean
level_out_events (GtkWidget *widget,
GdkEvent *event)
{
GdkEventButton *bevent;
GdkEventMotion *mevent;
gint x, distance;
gint i;
gint update = FALSE;
switch (event->type)
{
case GDK_BUTTON_PRESS:
if (g_Sdebug)
g_printf ("OUT_EVENT: GDK_BUTTON_PRESS\n");
bevent = (GdkEventButton *) event;
distance = G_MAXINT;
for (i = 3; i < 5; i++)
{
if (fabs (bevent->x - g_di.slider_pos[i]) < distance)
{
g_di.active_slider = i;
distance = fabs (bevent->x - g_di.slider_pos[i]);
}
}
x = bevent->x;
update = TRUE;
break;
case GDK_BUTTON_RELEASE:
if (g_Sdebug)
g_printf ("OUT_EVENT: GDK_BUTTON_RELEASE\n");
switch (g_di.active_slider)
{
case 3: /* low output */
levels_update (LOW_OUTPUT | DRAW);
break;
case 4: /* high output */
levels_update (HIGH_OUTPUT | DRAW);
break;
}
refresh_dst_preview (g_di.dst_preview, &g_dst_preview_buffer[0]);
break;
case GDK_MOTION_NOTIFY:
if (g_Sdebug)
g_printf ("OUT_EVENT: GDK_MOTION_NOTIFY\n");
mevent = (GdkEventMotion *) event;
x = mevent->x;
gdk_event_request_motions (mevent);
update = TRUE;
break;
default:
if (g_Sdebug)
g_printf ("OUT_EVENT: default\n");
break;
}
if (update)
{
if (g_Sdebug)
g_printf ("OUT_EVENT: ** update **\n");
switch (g_di.active_slider)
{
case 3: /* low output */
{
gint lvl_out_max = (g_values.lvl_out_max < 255) ?
g_values.lvl_out_max : 254;
g_values.lvl_out_min = ((double) x / (double) DA_WIDTH) * 255.0;
g_values.lvl_out_min = CLAMP (g_values.lvl_out_min,
0, lvl_out_max);
}
break;
case 4: /* high output */
g_values.lvl_out_max = ((double) x / (double) DA_WIDTH) * 255.0;
g_values.lvl_out_max = CLAMP (g_values.lvl_out_max,
g_values.lvl_out_min, 255);
break;
}
levels_update (OUTPUT_SLIDERS | OUTPUT_LEVELS | DRAW);
}
return FALSE;
}
static gboolean
level_out_draw (GtkWidget *widget,
cairo_t *cr)
{
GtkStyleContext *style = gtk_widget_get_style_context (widget);
GdkRGBA black = { 0.0, 0.0, 0.0, 1.0 };
gtk_render_background (style, cr, 0, 0,
gtk_widget_get_allocated_width (widget),
gtk_widget_get_allocated_height (widget));
cairo_translate (cr, 0.5, 0.5);
cairo_set_line_width (cr, 1.0);
g_di.slider_pos[3] = DA_WIDTH * ((double) g_values.lvl_out_min / 255.0);
g_di.slider_pos[4] = DA_WIDTH * ((double) g_values.lvl_out_max / 255.0);
levels_draw_slider (cr,
&black, &black,
g_di.slider_pos[3]);
levels_draw_slider (cr,
&black, &black,
g_di.slider_pos[4]);
return FALSE;
}
/* ============================================================================
* smp_dialog
* The Interactive Dialog
* ============================================================================
*/
static gboolean
smp_dialog (GimpProcedure *procedure,
GimpProcedureConfig *config)
{
GtkWidget *dialog;
GtkWidget *hbox;
GtkWidget *vbox2;
GtkWidget *frame;
GtkWidget *grid;
GtkWidget *check_button;
GtkWidget *label;
GtkWidget *spin_button;
GtkWidget *combo;
gint ty;
gboolean run;
/* set flags for check buttons from mode value bits */
if (g_Sdebug)
g_print ("smp_dialog START\n");
/* init some dialog variables */
g_di.enable_preview_update = FALSE;
g_di.sample_show_selection = TRUE;
g_di.dst_show_selection = TRUE;
g_di.dst_show_color = TRUE;
g_di.sample_show_color = TRUE;
/* Init GTK */
gimp_ui_init (PLUG_IN_BINARY);
/* Main Dialog */
g_di.dialog = dialog =
gimp_procedure_dialog_new (procedure,
GIMP_PROCEDURE_CONFIG (config),
_("Sample Colorize"));
/* grid for values */
grid = gtk_grid_new ();
gtk_grid_set_row_spacing (GTK_GRID (grid), 12);
gtk_grid_set_column_spacing (GTK_GRID (grid), 6);
gtk_container_set_border_width (GTK_CONTAINER (grid), 12);
gtk_box_pack_start (GTK_BOX (gtk_dialog_get_content_area (GTK_DIALOG (dialog))),
grid, TRUE, TRUE, 0);
ty = 0;
/* layer combo_box (Dst) */
label = gtk_label_new (_("Destination:"));
gtk_label_set_xalign (GTK_LABEL (label), 1.0);
gtk_grid_attach (GTK_GRID (grid), label, 0, ty, 1, 1);
gtk_widget_show (label);
combo = gimp_layer_combo_box_new (smp_constrain, NULL, NULL);
gimp_int_combo_box_connect (GIMP_INT_COMBO_BOX (combo),
gimp_item_get_id (GIMP_ITEM (g_values.dst)),
G_CALLBACK (smp_dest_combo_callback),
NULL, NULL);
gtk_grid_attach (GTK_GRID (grid), combo, 1, ty, 1, 1);
gtk_widget_show (combo);
/* layer combo_box (Sample) */
label = gtk_label_new (_("Sample:"));
gtk_label_set_xalign (GTK_LABEL (label), 1.0);
gtk_grid_attach (GTK_GRID (grid), label, 3, ty, 1, 1);
gtk_widget_show (label);
combo = gimp_layer_combo_box_new (smp_constrain, NULL, NULL);
gimp_int_combo_box_prepend (GIMP_INT_COMBO_BOX (combo),
GIMP_INT_STORE_VALUE, SMP_INV_GRADIENT,
GIMP_INT_STORE_LABEL, _("From reverse gradient"),
GIMP_INT_STORE_ICON_NAME, GIMP_ICON_GRADIENT,
-1);
gimp_int_combo_box_prepend (GIMP_INT_COMBO_BOX (combo),
GIMP_INT_STORE_VALUE, SMP_GRADIENT,
GIMP_INT_STORE_LABEL, _("From gradient"),
GIMP_INT_STORE_ICON_NAME, GIMP_ICON_GRADIENT,
-1);
gimp_int_combo_box_connect (GIMP_INT_COMBO_BOX (combo), g_values.sample_id,
G_CALLBACK (smp_sample_combo_callback),
NULL, NULL);
gtk_grid_attach (GTK_GRID (grid), combo, 4, ty, 1, 1);
gtk_widget_show (combo);
ty++;
hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6);
gtk_grid_attach (GTK_GRID (grid), hbox, 0, ty, 2, 1);
gtk_widget_show (hbox);
/* check button */
check_button = gtk_check_button_new_with_mnemonic (_("Sho_w selection"));
gtk_box_pack_start (GTK_BOX (hbox), check_button, FALSE, FALSE, 0);
gtk_widget_show (check_button);
g_signal_connect (check_button, "toggled",
G_CALLBACK (smp_toggle_callback),
&g_di.dst_show_selection);
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (check_button),
g_di.dst_show_selection);
/* check button */
check_button = gtk_check_button_new_with_mnemonic (_("Show co_lor"));
gtk_box_pack_start (GTK_BOX (hbox), check_button, FALSE, FALSE, 0);
gtk_widget_show (check_button);
g_signal_connect (check_button, "toggled",
G_CALLBACK (smp_toggle_callback),
&g_di.dst_show_color);
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (check_button),
g_di.dst_show_color);
hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6);
gtk_grid_attach (GTK_GRID (grid), hbox, 3, ty, 2, 1);
gtk_widget_show (hbox);
/* check button */
check_button = gtk_check_button_new_with_mnemonic (_("Show selec_tion"));
gtk_box_pack_start (GTK_BOX (hbox), check_button, FALSE, FALSE, 0);
gtk_widget_show (check_button);
g_signal_connect (check_button, "toggled",
G_CALLBACK (smp_toggle_callback),
&g_di.sample_show_selection);
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (check_button),
g_di.sample_show_selection);
/* check button */
check_button = gtk_check_button_new_with_mnemonic (_("Show c_olor"));
gtk_box_pack_start (GTK_BOX (hbox), check_button, FALSE, FALSE, 0);
gtk_widget_show (check_button);
g_signal_connect (check_button, "toggled",
G_CALLBACK (smp_toggle_callback),
&g_di.sample_show_color);
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (check_button),
g_di.sample_show_color);
ty++;
/* Preview (Dst) */
frame = gtk_frame_new (NULL);
gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_IN);
gtk_grid_attach (GTK_GRID (grid), frame, 0, ty, 2, 1);
gtk_widget_show (frame);
g_di.dst_preview = gimp_preview_area_new ();
gtk_widget_set_halign (g_di.dst_preview, GTK_ALIGN_CENTER);
gtk_widget_set_hexpand (g_di.dst_preview, TRUE);
gtk_widget_set_size_request (g_di.dst_preview,
PREVIEW_SIZE_X, PREVIEW_SIZE_Y);
gtk_container_add (GTK_CONTAINER (frame), g_di.dst_preview);
gtk_widget_show (g_di.dst_preview);
/* Preview (Sample)*/
frame = gtk_frame_new (NULL);
gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_IN);
gtk_grid_attach (GTK_GRID (grid), frame, 3, ty, 2, 1);
gtk_widget_show (frame);
g_di.sample_preview = gimp_preview_area_new ();
gtk_widget_set_halign (g_di.sample_preview, GTK_ALIGN_CENTER);
gtk_widget_set_hexpand (g_di.sample_preview, TRUE);
gtk_widget_set_size_request (g_di.sample_preview,
PREVIEW_SIZE_X, PREVIEW_SIZE_Y);
gtk_container_add (GTK_CONTAINER (frame), g_di.sample_preview);
gtk_widget_show (g_di.sample_preview);
ty++;
/* The levels graylevel prevev */
frame = gtk_frame_new (NULL);
vbox2 = gtk_box_new (GTK_ORIENTATION_VERTICAL, 2);
gtk_container_add (GTK_CONTAINER (frame), vbox2);
gtk_grid_attach (GTK_GRID (grid), frame, 0, ty, 2, 1);
g_di.in_lvl_gray_preview = gimp_preview_area_new ();
gtk_widget_set_halign (g_di.in_lvl_gray_preview, GTK_ALIGN_CENTER);
gtk_widget_set_hexpand (g_di.in_lvl_gray_preview, TRUE);
gtk_widget_set_size_request (g_di.in_lvl_gray_preview,
DA_WIDTH, GRADIENT_HEIGHT);
gtk_widget_set_events (g_di.in_lvl_gray_preview, LEVELS_DA_MASK);
gtk_box_pack_start (GTK_BOX (vbox2), g_di.in_lvl_gray_preview, FALSE, TRUE, 0);
gtk_widget_show (g_di.in_lvl_gray_preview);
g_signal_connect (g_di.in_lvl_gray_preview, "event",
G_CALLBACK (level_in_events),
NULL);
/* The levels drawing area */
g_di.in_lvl_drawarea = gtk_drawing_area_new ();
gtk_widget_set_halign (g_di.in_lvl_drawarea, GTK_ALIGN_CENTER);
gtk_widget_set_hexpand (g_di.in_lvl_drawarea, TRUE);
gtk_widget_set_size_request (g_di.in_lvl_drawarea,
DA_WIDTH, CONTROL_HEIGHT);
gtk_widget_set_events (g_di.in_lvl_drawarea, LEVELS_DA_MASK);
gtk_box_pack_start (GTK_BOX (vbox2), g_di.in_lvl_drawarea, FALSE, TRUE, 0);
gtk_widget_show (g_di.in_lvl_drawarea);
g_signal_connect (g_di.in_lvl_drawarea, "event",
G_CALLBACK (level_in_events),
NULL);
g_signal_connect (g_di.in_lvl_drawarea, "draw",
G_CALLBACK (level_in_draw),
NULL);
gtk_widget_show (vbox2);
gtk_widget_show (frame);
/* The sample_colortable prevev */
frame = gtk_frame_new (NULL);
vbox2 = gtk_box_new (GTK_ORIENTATION_VERTICAL, 2);
gtk_container_add (GTK_CONTAINER (frame), vbox2);
gtk_grid_attach (GTK_GRID (grid), frame, 3, ty, 2, 1);
g_di.sample_colortab_preview = gimp_preview_area_new ();
gtk_widget_set_halign (g_di.sample_colortab_preview, GTK_ALIGN_CENTER);
gtk_widget_set_hexpand (g_di.sample_colortab_preview, TRUE);
gtk_widget_set_size_request (g_di.sample_colortab_preview,
DA_WIDTH, GRADIENT_HEIGHT);
gtk_box_pack_start (GTK_BOX (vbox2), g_di.sample_colortab_preview, FALSE, TRUE, 0);
gtk_widget_show (g_di.sample_colortab_preview);
/* The levels drawing area */
g_di.sample_drawarea = gtk_drawing_area_new ();
gtk_widget_set_halign (g_di.sample_drawarea, GTK_ALIGN_CENTER);
gtk_widget_set_hexpand (g_di.sample_drawarea, TRUE);
gtk_widget_set_size_request (g_di.sample_drawarea,
DA_WIDTH, CONTROL_HEIGHT);
gtk_widget_set_events (g_di.sample_drawarea, LEVELS_DA_MASK);
gtk_box_pack_start (GTK_BOX (vbox2), g_di.sample_drawarea, FALSE, TRUE, 0);
gtk_widget_show (g_di.sample_drawarea);
g_signal_connect (g_di.sample_drawarea, "event",
G_CALLBACK (level_out_events),
NULL);
g_signal_connect (g_di.sample_drawarea, "draw",
G_CALLBACK (level_out_draw),
NULL);
gtk_widget_show (vbox2);
gtk_widget_show (frame);
ty++;
/* GimpProcedureDialog */
gimp_procedure_dialog_get_label (GIMP_PROCEDURE_DIALOG (dialog),
"input-label", _("Input levels:"), FALSE,
FALSE);
gimp_procedure_dialog_get_widget (GIMP_PROCEDURE_DIALOG (dialog), "in-low",
GIMP_TYPE_SPIN_BUTTON);
spin_button = gimp_procedure_dialog_get_widget (GIMP_PROCEDURE_DIALOG (dialog), "gamma",
GIMP_TYPE_SPIN_BUTTON);
gtk_spin_button_set_increments (GTK_SPIN_BUTTON (spin_button), 0.02, 0.2);
gimp_procedure_dialog_get_widget (GIMP_PROCEDURE_DIALOG (dialog), "in-high",
GIMP_TYPE_SPIN_BUTTON);
g_signal_connect (config, "notify::in-low",
G_CALLBACK (smp_adj_lvl_in_min_upd_callback),
NULL);
g_signal_connect (config, "notify::gamma",
G_CALLBACK (smp_text_gamma_upd_callback),
NULL);
g_signal_connect (config, "notify::in-high",
G_CALLBACK (smp_adj_lvl_in_max_upd_callback),
NULL);
hbox = gimp_procedure_dialog_fill_box (GIMP_PROCEDURE_DIALOG (dialog),
"low-hbox","input-label", "in-low",
"gamma", "in-high", NULL);
gtk_orientable_set_orientation (GTK_ORIENTABLE (hbox),
GTK_ORIENTATION_HORIZONTAL);
gtk_widget_set_halign (hbox, GTK_ALIGN_CENTER);
gimp_procedure_dialog_get_label (GIMP_PROCEDURE_DIALOG (dialog),
"output-label", _("Output levels:"), FALSE,
FALSE);
gimp_procedure_dialog_get_widget (GIMP_PROCEDURE_DIALOG (dialog), "out-low",
GIMP_TYPE_SPIN_BUTTON);
gimp_procedure_dialog_get_widget (GIMP_PROCEDURE_DIALOG (dialog), "out-high",
GIMP_TYPE_SPIN_BUTTON);
g_signal_connect (config, "notify::out-low",
G_CALLBACK (smp_adj_lvl_out_min_upd_callback),
NULL);
g_signal_connect (config, "notify::out-high",
G_CALLBACK (smp_adj_lvl_out_max_upd_callback),
NULL);
hbox = gimp_procedure_dialog_fill_box (GIMP_PROCEDURE_DIALOG (dialog),
"high-hbox","output-label", "out-low",
"out-high", NULL);
gtk_orientable_set_orientation (GTK_ORIENTABLE (hbox),
GTK_ORIENTATION_HORIZONTAL);
gtk_widget_set_halign (hbox, GTK_ALIGN_CENTER);
/* Checkboxes */
hbox = gimp_procedure_dialog_fill_box (GIMP_PROCEDURE_DIALOG (dialog),
"intensity-hbox", "hold-inten",
"orig-inten", NULL);
gtk_orientable_set_orientation (GTK_ORIENTABLE (hbox),
GTK_ORIENTATION_HORIZONTAL);
gtk_widget_set_halign (hbox, GTK_ALIGN_CENTER);
g_signal_connect (config, "notify::hold-inten",
G_CALLBACK (smp_toggle_callback),
NULL);
g_signal_connect (config, "notify::orig-inten",
G_CALLBACK (smp_toggle_callback),
NULL);
hbox = gimp_procedure_dialog_fill_box (GIMP_PROCEDURE_DIALOG (dialog),
"sample-hbox", "rnd-subcolors",
"guess-missing", NULL);
gtk_orientable_set_orientation (GTK_ORIENTABLE (hbox),
GTK_ORIENTATION_HORIZONTAL);
gtk_widget_set_halign (hbox, GTK_ALIGN_CENTER);
g_signal_connect (config, "notify::rnd-subcolors",
G_CALLBACK (smp_toggle_callback),
NULL);
g_signal_connect (config, "notify::guess-missing",
G_CALLBACK (smp_toggle_callback),
NULL);
g_di.sample_button = gtk_button_new_with_mnemonic (_("Get _Sample Colors"));
gtk_box_pack_start (GTK_BOX (hbox), g_di.sample_button, FALSE, FALSE, 12);
g_signal_connect (g_di.sample_button, "clicked",
G_CALLBACK (smp_get_colors),
dialog);
gtk_widget_set_visible (g_di.sample_button, TRUE);
gtk_widget_show (grid);
hbox = gimp_procedure_dialog_fill_box (GIMP_PROCEDURE_DIALOG (dialog),
"slider-row", "low-hbox",
"high-hbox", NULL);
gtk_orientable_set_orientation (GTK_ORIENTABLE (hbox),
GTK_ORIENTATION_HORIZONTAL);
hbox = gimp_procedure_dialog_fill_box (GIMP_PROCEDURE_DIALOG (dialog),
"check-row", "intensity-hbox",
"sample-hbox", NULL);
gtk_orientable_set_orientation (GTK_ORIENTABLE (hbox),
GTK_ORIENTATION_HORIZONTAL);
vbox2 = gimp_procedure_dialog_fill_box (GIMP_PROCEDURE_DIALOG (dialog),
"option-box", "slider-row",
"check-row", NULL);
gtk_box_set_spacing (GTK_BOX (vbox2), 12);
gimp_procedure_dialog_fill (GIMP_PROCEDURE_DIALOG (dialog),
"option-box", NULL);
gtk_widget_show (dialog);
/* set old_id's different (to force updates of the previews) */
g_di.enable_preview_update = TRUE;
smp_get_colors (NULL);
update_preview (g_values.dst);
levels_update (INPUT_SLIDERS | INPUT_LEVELS | DRAW);
run = gimp_procedure_dialog_run (GIMP_PROCEDURE_DIALOG (dialog));
gtk_widget_destroy (dialog);
return run;
}
/* -----------------------------
* DEBUG print procedures START
* -----------------------------
*/
static void
print_ppm (const gchar *ppm_name)
{
FILE *fp;
gint idx;
gint cnt;
gint r;
gint g;
gint b;
t_samp_color_elem *col_ptr;
if (ppm_name == NULL)
return;
fp = g_fopen (ppm_name, "w");
if (fp)
{
fprintf (fp, "P3\n# CREATOR: Gimp sample coloros\n256 256\n255\n");
for (idx = 0; idx < 256; idx++)
{
col_ptr = g_lum_tab[idx].col_ptr;
for (cnt = 0; cnt < 256; cnt++)
{
r = g = b = 0;
if (col_ptr)
{
if ((col_ptr->sum_color > 0) && (cnt != 20))
{
r = (gint) col_ptr->color[0];
g = (gint) col_ptr->color[1];
b = (gint) col_ptr->color[2];
}
if (cnt > 20)
col_ptr = col_ptr->next;
}
fprintf (fp, "%d %d %d\n", r, g, b);
}
}
fclose (fp);
}
}
static void
print_color_list (FILE *fp,
t_samp_color_elem *col_ptr)
{
if (fp == NULL)
return;
while (col_ptr)
{
fprintf (fp, " RGBA: %03d %03d %03d %03d sum: [%d]\n",
(gint)col_ptr->color[0],
(gint)col_ptr->color[1],
(gint)col_ptr->color[2],
(gint)col_ptr->color[3],
(gint)col_ptr->sum_color);
col_ptr = col_ptr->next;
}
}
static void
print_table (FILE *fp)
{
gint idx;
if (fp == NULL)
return;
fprintf (fp, "---------------------------\n");
fprintf (fp, "print_table\n");
fprintf (fp, "---------------------------\n");
for (idx = 0; idx < 256; idx++)
{
fprintf (fp, "LUM [%03d] pixcount:%d\n",
idx, (int)g_lum_tab[idx].all_samples);
print_color_list (fp, g_lum_tab[idx].col_ptr);
}
}
static void
print_transtable (FILE *fp)
{
gint idx;
if (fp == NULL)
return;
fprintf (fp, "---------------------------\n");
fprintf (fp, "print_transtable\n");
fprintf (fp, "---------------------------\n");
for (idx = 0; idx < 256; idx++)
{
fprintf (fp, "LVL_TRANS [%03d] in_lvl: %3d out_lvl: %3d\n",
idx, (int)g_lvl_trans_tab[idx], (int)g_out_trans_tab[idx]);
}
}
/* -----------------------------
* DEBUG print procedures END
* -----------------------------
*/
/* DEBUG: read values from file */
static void
get_filevalues (void)
{
FILE *fp;
gchar buf[1000];
/*
g_values.lvl_out_min = 0;
g_values.lvl_out_max = 255;
g_values.lvl_in_min = 0;
g_values.lvl_in_max = 255;
g_values.lvl_in_gamma = 1.0;
*/
g_values.tol_col_err = 5.5;
fp = g_fopen ("sample_colorize.values", "r");
if (fp != NULL)
{
fgets (buf, 999, fp);
sscanf (buf, "%f", &g_values.tol_col_err);
fclose (fp);
}
g_printf ("g_values.tol_col_err :%f\n", g_values.tol_col_err);
}
static gint32
color_error (guchar ref_red, guchar ref_green, guchar ref_blue,
guchar cmp_red, guchar cmp_green, guchar cmp_blue)
{
glong ff;
glong fs;
glong cmp_h, ref_h;
/* 1. Brightness differences */
cmp_h = (3 * cmp_red + 6 * cmp_green + cmp_blue) / 10;
ref_h = (3 * ref_red + 6 * ref_green + ref_blue) / 10;
fs = labs (ref_h - cmp_h);
ff = fs * fs;
/* 2. add Red Color differences */
fs = abs (ref_red - cmp_red);
ff += (fs * fs);
/* 3. add Green Color differences */
fs = abs (ref_green - cmp_green);
ff += (fs * fs);
/* 4. add Blue Color differences */
fs = abs (ref_blue - cmp_blue);
ff += (fs * fs);
return ((gint32)(ff));
}
/* get pixel value
* return light gray transparent pixel if out of bounds
* (should occur in the previews only)
*/
static void
get_pixel (t_GDRW *gdrw,
gint32 x,
gint32 y,
guchar *pixel)
{
gegl_buffer_sample (gdrw->buffer, x, y, NULL, pixel, gdrw->format,
GEGL_SAMPLER_NEAREST, GEGL_ABYSS_NONE);
}
/* clear table */
static void
clear_tables (void)
{
guint i;
for (i = 0; i < 256; i++)
{
g_lum_tab[i].col_ptr = NULL;
g_lum_tab[i].all_samples = 0;
g_lvl_trans_tab[i] = i;
g_out_trans_tab[i] = i;
g_sample_color_tab[3 * i + 0] = i;
g_sample_color_tab[3 * i + 1] = i;
g_sample_color_tab[3 * i + 2] = i;
}
}
/* free all allocated sample colors in table g_lum_tab */
static void
free_colors (void)
{
gint lum;
t_samp_color_elem *col_ptr;
t_samp_color_elem *next_ptr;
for (lum = 0; lum < 256; lum++)
{
for (col_ptr = g_lum_tab[lum].col_ptr;
col_ptr != NULL;
col_ptr = next_ptr)
{
next_ptr = (t_samp_color_elem *)col_ptr->next;
g_free (col_ptr);
}
g_lum_tab[lum].col_ptr = NULL;
g_lum_tab[lum].all_samples = 0;
}
}
/* setup lum transformer table according to input_levels, gamma and output levels
* (uses sam algorithm as GIMP Level Tool)
*/
static void
calculate_level_transfers (void)
{
double inten;
gint i;
gint in_min, in_max;
gint out_min, out_max;
if (g_values.lvl_in_max >= g_values.lvl_in_min)
{
in_max = g_values.lvl_in_max;
in_min = g_values.lvl_in_min;
}
else
{
in_max = g_values.lvl_in_min;
in_min = g_values.lvl_in_max;
}
if (g_values.lvl_out_max >= g_values.lvl_out_min)
{
out_max = g_values.lvl_out_max;
out_min = g_values.lvl_out_min;
}
else
{
out_max = g_values.lvl_out_min;
out_min = g_values.lvl_out_max;
}
/* Recalculate the levels arrays */
for (i = 0; i < 256; i++)
{
/* determine input intensity */
inten = (double) i / 255.0;
if (g_values.lvl_in_gamma != 0.0)
inten = pow (inten, (1.0 / g_values.lvl_in_gamma));
inten = (double) (inten * (in_max - in_min) + in_min);
inten = CLAMP (inten, 0.0, 255.0);
g_lvl_trans_tab[i] = (guchar) (inten + 0.5);
/* determine the output intensity */
inten = (double) i / 255.0;
inten = (double) (inten * (out_max - out_min) + out_min);
inten = CLAMP (inten, 0.0, 255.0);
g_out_trans_tab[i] = (guchar) (inten + 0.5);
}
}
/* alloc and init new col Element */
static t_samp_color_elem *
new_samp_color (const guchar *color)
{
t_samp_color_elem *col_ptr;
col_ptr = g_new0 (t_samp_color_elem, 1);
memcpy (&col_ptr->color[0], color, 4);
col_ptr->sum_color = 1;
col_ptr->next = NULL;
return col_ptr;
}
/* store color in g_lum_tab */
static void
add_color (const guchar *color)
{
gint32 lum;
t_samp_color_elem *col_ptr;
lum = LUMINOSITY_1(color);
g_lum_tab[lum].all_samples++;
g_lum_tab[lum].from_sample = TRUE;
/* check if exactly the same color is already in the list */
for (col_ptr = g_lum_tab[lum].col_ptr;
col_ptr != NULL;
col_ptr = (t_samp_color_elem *)col_ptr->next)
{
if ((color[0] == col_ptr->color[0]) &&
(color[1] == col_ptr->color[1]) &&
(color[2] == col_ptr->color[2]))
{
col_ptr->sum_color++;
return;
}
}
/* alloc and init element for the new color */
col_ptr = new_samp_color (color);
if (col_ptr != NULL)
{
/* add new color element as 1.st of the list */
col_ptr->next = g_lum_tab[lum].col_ptr;
g_lum_tab[lum].col_ptr = col_ptr;
}
}
/* sort Sublists (color) by descending sum_color in g_lum_tab
*/
static void
sort_color (gint32 lum)
{
t_samp_color_elem *col_ptr;
t_samp_color_elem *next_ptr;
t_samp_color_elem *prev_ptr;
t_samp_color_elem *sorted_col_ptr;
gint32 min;
gint32 min_next;
sorted_col_ptr = NULL;
min_next = 0;
while (g_lum_tab[lum].col_ptr != NULL)
{
min = min_next;
next_ptr = NULL;
prev_ptr = NULL;
for (col_ptr = g_lum_tab[lum].col_ptr;
col_ptr != NULL;
col_ptr = next_ptr)
{
next_ptr = col_ptr->next;
if (col_ptr->sum_color > min)
{
/* check min value for next loop */
if ((col_ptr->sum_color < min_next) || (min == min_next))
{
min_next = col_ptr->sum_color;
}
prev_ptr = col_ptr;
}
else
{
/* add element at head of sorted list */
col_ptr->next = sorted_col_ptr;
sorted_col_ptr = col_ptr;
/* remove element from list */
if (prev_ptr == NULL)
{
g_lum_tab[lum].col_ptr = next_ptr; /* remove 1.st element */
}
else
{
prev_ptr->next = next_ptr;
}
}
}
}
g_lum_tab[lum].col_ptr = sorted_col_ptr;
}
static void
cnt_same_sample_colortones (t_samp_color_elem *ref_ptr,
guchar *prev_color,
guchar *color_tone,
gint *csum)
{
gint32 col_error, ref_error;
t_samp_color_elem *col_ptr;
ref_error = 0;
if (prev_color != NULL)
{
ref_error = color_error (ref_ptr->color[0], ref_ptr->color[1], ref_ptr->color[2],
prev_color[0], prev_color[1], prev_color[2]);
}
/* collect colors that are (nearly) the same */
for (col_ptr = ref_ptr->next;
col_ptr != NULL;
col_ptr = (t_samp_color_elem *)col_ptr->next)
{
if (col_ptr->sum_color < 1)
continue;
col_error = color_error (ref_ptr->color[0], ref_ptr->color[1], ref_ptr->color[2],
col_ptr->color[0], col_ptr->color[1], col_ptr->color[2]);
if (col_error <= g_tol_col_err)
{
/* cout color of the same colortone */
*csum += col_ptr->sum_color;
/* mark the already checked color with negative sum_color value */
col_ptr->sum_color = 0 - col_ptr->sum_color;
if (prev_color != NULL)
{
col_error = color_error (col_ptr->color[0], col_ptr->color[1], col_ptr->color[2],
prev_color[0], prev_color[1], prev_color[2]);
if (col_error < ref_error)
{
/* use the color that is closest to prev_color */
memcpy (color_tone, &col_ptr->color[0], 3);
ref_error = col_error;
}
}
}
}
}
/* find the dominant colortones (out of all sample colors)
* for each available brightness intensity value.
* and store them in g_sample_color_tab
*/
static void
ideal_samples (void)
{
gint32 lum;
t_samp_color_elem *col_ptr;
guchar *color;
guchar color_tone[4];
guchar color_ideal[4];
gint csum, maxsum;
color = NULL;
for (lum = 0; lum < 256; lum++)
{
if (g_lum_tab[lum].col_ptr == NULL)
continue;
sort_color (lum);
col_ptr = g_lum_tab[lum].col_ptr;
memcpy (&color_ideal[0], &col_ptr->color[0], 3);
maxsum = 0;
/* collect colors that are (nearly) the same */
for (;
col_ptr != NULL;
col_ptr = (t_samp_color_elem *)col_ptr->next)
{
csum = 0;
if (col_ptr->sum_color > 0)
{
memcpy (&color_tone[0], &col_ptr->color[0], 3);
cnt_same_sample_colortones (col_ptr, color,
&color_tone[0], &csum);
if (csum > maxsum)
{
maxsum = csum;
memcpy (&color_ideal[0], &color_tone[0], 3);
}
}
else
col_ptr->sum_color = abs (col_ptr->sum_color);
}
/* store ideal color and keep track of the color */
color = &g_sample_color_tab[3 * lum];
memcpy (color, &color_ideal[0], 3);
}
}
static void
guess_missing_colors (void)
{
gint32 lum;
gint32 idx;
gfloat div;
guchar lo_color[4];
guchar hi_color[4];
guchar new_color[4];
lo_color[0] = 0;
lo_color[1] = 0;
lo_color[2] = 0;
lo_color[3] = 255;
hi_color[0] = 255;
hi_color[1] = 255;
hi_color[2] = 255;
hi_color[3] = 255;
new_color[0] = 0;
new_color[1] = 0;
new_color[2] = 0;
new_color[3] = 255;
for (lum = 0; lum < 256; lum++)
{
if ((g_lum_tab[lum].col_ptr == NULL) ||
(g_lum_tab[lum].from_sample == FALSE))
{
if (lum > 0)
{
for (idx = lum; idx < 256; idx++)
{
if ((g_lum_tab[idx].col_ptr != NULL) &&
g_lum_tab[idx].from_sample)
{
memcpy (&hi_color[0],
&g_sample_color_tab[3 * idx], 3);
break;
}
if (idx == 255)
{
hi_color[0] = 255;
hi_color[1] = 255;
hi_color[2] = 255;
break;
}
}
div = idx - (lum -1);
new_color[0] = lo_color[0] + ((float)(hi_color[0] - lo_color[0]) / div);
new_color[1] = lo_color[1] + ((float)(hi_color[1] - lo_color[1]) / div);
new_color[2] = lo_color[2] + ((float)(hi_color[2] - lo_color[2]) / div);
/*
* printf ("LO: %03d %03d %03d HI: %03d %03d %03d NEW: %03d %03d %03d\n",
* (int)lo_color[0], (int)lo_color[1], (int)lo_color[2],
* (int)hi_color[0], (int)hi_color[1], (int)hi_color[2],
* (int)new_color[0], (int)new_color[1], (int)new_color[2]);
*/
}
g_lum_tab[lum].col_ptr = new_samp_color (&new_color[0]);
g_lum_tab[lum].from_sample = FALSE;
memcpy (&g_sample_color_tab [3 * lum], &new_color[0], 3);
}
memcpy (&lo_color[0], &g_sample_color_tab [3 * lum], 3);
}
}
static void
fill_missing_colors (void)
{
gint32 lum;
gint32 idx;
gint32 lo_idx;
guchar lo_color[4];
guchar hi_color[4];
guchar new_color[4];
lo_color[0] = 0;
lo_color[1] = 0;
lo_color[2] = 0;
lo_color[3] = 255;
hi_color[0] = 255;
hi_color[1] = 255;
hi_color[2] = 255;
hi_color[3] = 255;
new_color[0] = 0;
new_color[1] = 0;
new_color[2] = 0;
new_color[3] = 255;
lo_idx = 0;
for (lum = 0; lum < 256; lum++)
{
if ((g_lum_tab[lum].col_ptr == NULL) ||
(g_lum_tab[lum].from_sample == FALSE))
{
if (lum > 0)
{
for (idx = lum; idx < 256; idx++)
{
if ((g_lum_tab[idx].col_ptr != NULL) &&
(g_lum_tab[idx].from_sample))
{
memcpy (&hi_color[0],
&g_sample_color_tab[3 * idx], 3);
break;
}
if (idx == 255)
{
/*
* hi_color[0] = 255;
* hi_color[1] = 255;
* hi_color[2] = 255;
*/
memcpy (&hi_color[0], &lo_color[0], 3);
break;
}
}
if ((lum > (lo_idx + ((idx - lo_idx ) / 2))) ||
(lo_idx == 0))
{
new_color[0] = hi_color[0];
new_color[1] = hi_color[1];
new_color[2] = hi_color[2];
}
else
{
new_color[0] = lo_color[0];
new_color[1] = lo_color[1];
new_color[2] = lo_color[2];
}
}
g_lum_tab[lum].col_ptr = new_samp_color (&new_color[0]);
g_lum_tab[lum].from_sample = FALSE;
memcpy (&g_sample_color_tab[3 * lum], &new_color[0], 3);
}
else
{
lo_idx = lum;
memcpy (&lo_color[0], &g_sample_color_tab[3 * lum], 3);
}
}
}
/* get 256 samples of active gradient (optional in inverse order) */
static void
get_gradient (gint mode)
{
GimpGradient *gradient;
GeglColor **colors;
const Babl *format_dst = babl_format ("RGB u8");
guchar *g_sample_color_tab_p;
gint lum;
free_colors ();
gradient = gimp_context_get_gradient ();
colors = gimp_gradient_get_uniform_samples (gradient, 256 /* n_samples */,
mode == SMP_INV_GRADIENT);
g_return_if_fail (gimp_color_array_get_length (colors) == 256);
g_sample_color_tab_p = g_sample_color_tab;
for (lum = 0; lum < 256; lum++)
{
gegl_color_get_pixel (colors[lum], format_dst, g_sample_color_tab_p);
g_lum_tab[lum].col_ptr = new_samp_color (g_sample_color_tab_p);
g_lum_tab[lum].from_sample = TRUE;
g_lum_tab[lum].all_samples = 1;
g_sample_color_tab_p += 3;
}
gimp_color_array_free (colors);
}
static void
end_gdrw (t_GDRW *gdrw)
{
t_GDRW *sel_gdrw = (t_GDRW *) gdrw->sel_gdrw;
if (sel_gdrw && sel_gdrw->buffer)
{
g_object_unref (sel_gdrw->buffer);
sel_gdrw->buffer = NULL;
}
g_object_unref (gdrw->buffer);
gdrw->buffer = NULL;
}
static void
init_gdrw (t_GDRW *gdrw,
GimpDrawable *drawable,
gboolean shadow)
{
GimpImage *image;
GimpDrawable *sel_channel;
gint32 x1, x2, y1, y2;
gint offsetx, offsety;
gint w, h;
gint sel_offsetx, sel_offsety;
t_GDRW *sel_gdrw;
gint32 non_empty;
gdrw->drawable = drawable;
if (shadow)
gdrw->buffer = gimp_drawable_get_shadow_buffer (drawable);
else
gdrw->buffer = gimp_drawable_get_buffer (drawable);
gdrw->width = gimp_drawable_get_width (drawable);
gdrw->height = gimp_drawable_get_height (drawable);
gdrw->tile_width = gimp_tile_width ();
gdrw->tile_height = gimp_tile_height ();
gdrw->shadow = shadow;
gdrw->seldeltax = 0;
gdrw->seldeltay = 0;
/* get offsets within the image */
gimp_drawable_get_offsets (gdrw->drawable, &offsetx, &offsety);
if (! gimp_drawable_mask_intersect (gdrw->drawable,
&gdrw->x1, &gdrw->y1, &w, &h))
return;
gdrw->x2 = gdrw->x1 + w;
gdrw->y2 = gdrw->y1 + h;
if (gimp_drawable_has_alpha (drawable))
gdrw->format = babl_format ("R'G'B'A u8");
else
gdrw->format = babl_format ("R'G'B' u8");
gdrw->bpp = babl_format_get_bytes_per_pixel (gdrw->format);
if (gimp_drawable_has_alpha (drawable))
{
/* index of the alpha channelbyte {1|3} */
gdrw->index_alpha = gdrw->bpp -1;
}
else
{
gdrw->index_alpha = 0; /* there is no alpha channel */
}
image = gimp_item_get_image (GIMP_ITEM (gdrw->drawable));
/* check and see if we have a selection mask */
sel_channel = GIMP_DRAWABLE (gimp_image_get_selection (image));
gimp_selection_bounds (image, &non_empty, &x1, &y1, &x2, &y2);
if (non_empty && sel_channel)
{
/* selection is TRUE */
sel_gdrw = g_new0 (t_GDRW, 1);
sel_gdrw->drawable = sel_channel;
sel_gdrw->buffer = gimp_drawable_get_buffer (sel_channel);
sel_gdrw->format = babl_format ("Y u8");
sel_gdrw->width = gimp_drawable_get_width (sel_channel);
sel_gdrw->height = gimp_drawable_get_height (sel_channel);
sel_gdrw->tile_width = gimp_tile_width ();
sel_gdrw->tile_height = gimp_tile_height ();
sel_gdrw->shadow = shadow;
sel_gdrw->x1 = x1;
sel_gdrw->y1 = y1;
sel_gdrw->x2 = x2;
sel_gdrw->y2 = y2;
sel_gdrw->seldeltax = 0;
sel_gdrw->seldeltay = 0;
sel_gdrw->bpp = babl_format_get_bytes_per_pixel (sel_gdrw->format);
sel_gdrw->index_alpha = 0; /* there is no alpha channel */
sel_gdrw->sel_gdrw = NULL;
/* offset delta between drawable and selection
* (selection always has image size and should always have offsets of 0 )
*/
gimp_drawable_get_offsets (sel_channel, &sel_offsetx, &sel_offsety);
gdrw->seldeltax = offsetx - sel_offsetx;
gdrw->seldeltay = offsety - sel_offsety;
gdrw->sel_gdrw = (t_GDRW *) sel_gdrw;
if (g_Sdebug)
{
g_printf ("init_gdrw: SEL_BOUNDS x1: %d y1: %d x2:%d y2: %d\n",
(int)sel_gdrw->x1, (int)sel_gdrw->y1,
(int)sel_gdrw->x2, (int)sel_gdrw->y2);
g_printf ("init_gdrw: SEL_OFFS x: %d y: %d\n",
(int)sel_offsetx, (int)sel_offsety );
g_printf ("init_gdrw: SEL_DELTA x: %d y: %d\n",
(int)gdrw->seldeltax, (int)gdrw->seldeltay );
}
}
else
gdrw->sel_gdrw = NULL; /* selection is FALSE */
}
/* analyze the colors in the sample_drawable */
static int
sample_analyze (t_GDRW *sample_gdrw)
{
gint32 sample_pixels;
gint32 row, col;
gint32 first_row, first_col, last_row, last_col;
gint32 x, y;
gint32 x2, y2;
float progress_step;
float progress_max;
float progress;
guchar color[4];
FILE *prot_fp;
sample_pixels = 0;
/* init progress */
progress_max = (sample_gdrw->x2 - sample_gdrw->x1);
progress_step = 1.0 / progress_max;
progress = 0.0;
if (g_show_progress)
gimp_progress_init (_("Sample analyze"));
prot_fp = NULL;
if (g_Sdebug)
prot_fp = g_fopen ("sample_colors.dump", "w");
/* ------------------------------------------------
* foreach pixel in the SAMPLE_drawable:
* calculate brightness intensity LUM
* ------------------------------------------------
* the inner loops (x/y) are designed to process
* all pixels of one tile in the sample drawable, the outer loops (row/col) do step
* to the next tiles. (this was done to reduce tile swapping)
*/
first_row = sample_gdrw->y1 / sample_gdrw->tile_height;
last_row = (sample_gdrw->y2 / sample_gdrw->tile_height);
first_col = sample_gdrw->x1 / sample_gdrw->tile_width;
last_col = (sample_gdrw->x2 / sample_gdrw->tile_width);
for (row = first_row; row <= last_row; row++)
{
for (col = first_col; col <= last_col; col++)
{
if (col == first_col)
x = sample_gdrw->x1;
else
x = col * sample_gdrw->tile_width;
if (col == last_col)
x2 = sample_gdrw->x2;
else
x2 = (col +1) * sample_gdrw->tile_width;
for ( ; x < x2; x++)
{
if (row == first_row)
y = sample_gdrw->y1;
else
y = row * sample_gdrw->tile_height;
if (row == last_row)
y2 = sample_gdrw->y2;
else
y2 = (row +1) * sample_gdrw->tile_height ;
/* printf ("X: %4d Y:%4d Y2:%4d\n", (int)x, (int)y, (int)y2); */
for ( ; y < y2; y++)
{
/* check if the pixel is in the selection */
if (sample_gdrw->sel_gdrw)
{
get_pixel (sample_gdrw->sel_gdrw,
(x + sample_gdrw->seldeltax),
(y + sample_gdrw->seldeltay),
&color[0]);
if (color[0] == 0)
continue;
}
get_pixel (sample_gdrw, x, y, &color[0]);
/* if this is a visible (non-transparent) pixel */
if ((sample_gdrw->index_alpha < 1) ||
(color[sample_gdrw->index_alpha] != 0))
{
/* store color in the sublists of g_lum_tab */
add_color (&color[0]);
sample_pixels++;
}
}
if (g_show_progress)
gimp_progress_update (progress += progress_step);
}
}
}
if (g_show_progress)
gimp_progress_update (1.0);
if (g_Sdebug)
g_printf ("ROWS: %d - %d COLS: %d - %d\n",
(int)first_row, (int)last_row,
(int)first_col, (int)last_col);
print_table (prot_fp);
if (g_Sdebug)
print_ppm ("sample_color_all.ppm");
/* find out ideal sample colors for each brightness intensity (lum)
* and set g_sample_color_tab to the ideal colors.
*/
ideal_samples ();
calculate_level_transfers ();
if (g_values.guess_missing)
guess_missing_colors ();
else
fill_missing_colors ();
print_table (prot_fp);
if (g_Sdebug)
print_ppm ("sample_color_2.ppm");
print_transtable (prot_fp);
if (prot_fp)
fclose (prot_fp);
/* check if there was at least one visible pixel */
if (sample_pixels == 0)
{
g_printf ("Error: Source sample has no visible Pixel\n");
return -1;
}
return 0;
}
static void
rnd_remap (gint32 lum,
guchar *mapped_color)
{
t_samp_color_elem *col_ptr;
gint rnd;
gint ct;
gint idx;
if (g_lum_tab[lum].all_samples > 1)
{
rnd = g_random_int_range (0, g_lum_tab[lum].all_samples);
ct = 0;
idx = 0;
for (col_ptr = g_lum_tab[lum].col_ptr;
col_ptr != NULL;
col_ptr = (t_samp_color_elem *)col_ptr->next)
{
ct += col_ptr->sum_color;
if (rnd < ct)
{
/* printf ("RND_remap: rnd: %d all:%d ct:%d idx:%d\n",
* rnd, (int)g_lum_tab[lum].all_samples, ct, idx);
*/
memcpy (mapped_color, &col_ptr->color[0], 3);
return;
}
idx++;
}
}
memcpy (mapped_color, &g_sample_color_tab[lum + lum + lum], 3);
}
static void
remap_pixel (guchar *pixel,
const guchar *original,
gint bpp2,
GimpProcedureConfig *config)
{
guchar mapped_color[4];
gint lum;
gdouble orig_lum, mapped_lum;
gdouble grn, red, blu;
gdouble mg, mr, mb;
gdouble dg, dr, db;
gdouble dlum;
gboolean hold_inten = FALSE;
gboolean orig_inten = FALSE;
gboolean rnd_subcolors = FALSE;
g_object_get (config,
"hold-inten", &hold_inten,
"orig-inten", &orig_inten,
"rnd-subcolors", &rnd_subcolors,
NULL);
/* get brightness from (uncolorized) original */
lum = g_out_trans_tab[g_lvl_trans_tab[LUMINOSITY_1 (original)]];
if (rnd_subcolors)
rnd_remap (lum, mapped_color);
else
memcpy (mapped_color, &g_sample_color_tab[3 * lum], 3);
if (hold_inten)
{
if (orig_inten)
orig_lum = LUMINOSITY_0(original);
else
orig_lum = 100.0 * g_lvl_trans_tab[LUMINOSITY_1 (original)];
mapped_lum = LUMINOSITY_0 (mapped_color);
if (mapped_lum == 0)
{
/* convert black to greylevel with desired brightness value */
mapped_color[0] = orig_lum / 100.0;
mapped_color[1] = mapped_color[0];
mapped_color[2] = mapped_color[0];
}
else
{
/* Calculate theoretical RGB to reach given intensity LUM
* value (orig_lum)
*/
mr = mapped_color[0];
mg = mapped_color[1];
mb = mapped_color[2];
if (mr > 0.0)
{
red =
orig_lum / (30 + (59 * mg / mr) + (11 * mb / mr));
grn = mg * red / mr;
blu = mb * red / mr;
}
else if (mg > 0.0)
{
grn =
orig_lum / ((30 * mr / mg) + 59 + (11 * mb / mg));
red = mr * grn / mg;
blu = mb * grn / mg;
}
else
{
blu =
orig_lum / ((30 * mr / mb) + (59 * mg / mb) + 11);
grn = mg * blu / mb;
red = mr * blu / mb;
}
/* on overflow: Calculate real RGB values
* (this may change the hue and saturation,
* more and more into white)
*/
if (red > 255)
{
if ((blu < 255) && (grn < 255))
{
/* overflow in the red channel (compensate with green and blue) */
dlum = (red - 255.0) * 30.0;
if (mg > 0)
{
dg = dlum / (59.0 + (11.0 * mb / mg));
db = dg * mb / mg;
}
else if (mb > 0)
{
db = dlum / (11.0 + (59.0 * mg / mb));
dg = db * mg / mb;
}
else
{
db = dlum / (11.0 + 59.0);
dg = dlum / (59.0 + 11.0);
}
grn += dg;
blu += db;
}
red = 255.0;
if (grn > 255)
{
grn = 255.0;
blu = (orig_lum - 22695) / 11; /* 22695 = (255 * 30) + (255 * 59) */
}
if (blu > 255)
{
blu = 255.0;
grn = (orig_lum - 10455) / 59; /* 10455 = (255 * 30) + (255 * 11) */
}
}
else if (grn > 255)
{
if ((blu < 255) && (red < 255))
{
/* overflow in the green channel (compensate with red and blue) */
dlum = (grn - 255.0) * 59.0;
if (mr > 0)
{
dr = dlum / (30.0 + (11.0 * mb / mr));
db = dr * mb / mr;
}
else if (mb > 0)
{
db = dlum / (11.0 + (30.0 * mr / mb));
dr = db * mr / mb;
}
else
{
db = dlum / (11.0 + 30.0);
dr = dlum / (30.0 + 11.0);
}
red += dr;
blu += db;
}
grn = 255.0;
if (red > 255)
{
red = 255.0;
blu = (orig_lum - 22695) / 11; /* 22695 = (255*59) + (255*30) */
}
if (blu > 255)
{
blu = 255.0;
red = (orig_lum - 17850) / 30; /* 17850 = (255*59) + (255*11) */
}
}
else if (blu > 255)
{
if ((red < 255) && (grn < 255))
{
/* overflow in the blue channel (compensate with green and red) */
dlum = (blu - 255.0) * 11.0;
if (mg > 0)
{
dg = dlum / (59.0 + (30.0 * mr / mg));
dr = dg * mr / mg;
}
else if (mr > 0)
{
dr = dlum / (30.0 + (59.0 * mg / mr));
dg = dr * mg / mr;
}
else
{
dr = dlum / (30.0 + 59.0);
dg = dlum / (59.0 + 30.0);
}
grn += dg;
red += dr;
}
blu = 255.0;
if (grn > 255)
{
grn = 255.0;
red = (orig_lum - 17850) / 30; /* 17850 = (255*11) + (255*59) */
}
if (red > 255)
{
red = 255.0;
grn = (orig_lum - 10455) / 59; /* 10455 = (255*11) + (255*30) */
}
}
mapped_color[0] = CLAMP0255 (red + 0.5);
mapped_color[1] = CLAMP0255 (grn + 0.5);
mapped_color[2] = CLAMP0255 (blu + 0.5);
}
}
/* set colorized pixel in shadow pr */
memcpy (pixel, &mapped_color[0], bpp2);
}
static void
colorize_func (const guchar *src,
guchar *dest,
gint bpp,
gboolean has_alpha,
GimpProcedureConfig *config)
{
if (has_alpha)
{
bpp--;
dest[bpp] = src[bpp];
}
remap_pixel (dest, src, bpp, config);
}
static void
colorize_drawable (GimpDrawable *drawable,
GimpProcedureConfig *config)
{
GeglBuffer *src_buffer;
GeglBuffer *dest_buffer;
GeglBufferIterator *iter;
const Babl *format;
gboolean has_alpha;
gint bpp;
gint x, y, w, h;
gint total_area;
gint area_so_far;
if (! gimp_drawable_mask_intersect (drawable, &x, &y, &w, &h))
return;
src_buffer = gimp_drawable_get_buffer (drawable);
dest_buffer = gimp_drawable_get_shadow_buffer (drawable);
has_alpha = gimp_drawable_has_alpha (drawable);
if (has_alpha)
format = babl_format ("R'G'B'A u8");
else
format = babl_format ("R'G'B' u8");
bpp = babl_format_get_bytes_per_pixel (format);
if (g_show_progress)
gimp_progress_init (_("Remap colorized"));
total_area = w * h;
area_so_far = 0;
if (total_area <= 0)
goto out;
iter = gegl_buffer_iterator_new (src_buffer,
GEGL_RECTANGLE (x, y, w, h), 0, format,
GEGL_ACCESS_READ, GEGL_ABYSS_NONE, 2);
gegl_buffer_iterator_add (iter, dest_buffer,
GEGL_RECTANGLE (x, y, w, h), 0 , format,
GEGL_ACCESS_WRITE, GEGL_ABYSS_NONE);
while (gegl_buffer_iterator_next (iter))
{
const guchar *src = iter->items[0].data;
guchar *dest = iter->items[1].data;
gint row;
for (row = 0; row < iter->items[0].roi.height; row++)
{
const guchar *s = src;
guchar *d = dest;
gint pixels = iter->items[0].roi.width;
while (pixels--)
{
colorize_func (s, d, bpp, has_alpha, config);
s += bpp;
d += bpp;
}
src += iter->items[0].roi.width * bpp;
dest += iter->items[1].roi.width * bpp;
}
area_so_far += iter->items[0].roi.width * iter->items[0].roi.height;
gimp_progress_update ((gdouble) area_so_far / (gdouble) total_area);
}
g_object_unref (src_buffer);
g_object_unref (dest_buffer);
gimp_drawable_merge_shadow (drawable, TRUE);
gimp_drawable_update (drawable, x, y, w, h);
out:
if (g_show_progress)
gimp_progress_update (0.0);
}
/* colorize dst_drawable like sample_drawable */
static int
main_colorize (gint mc_flags,
GimpProcedureConfig *config)
{
t_GDRW sample_gdrw;
gboolean sample_drawable = FALSE;
gint32 max;
gint32 id;
gint rc;
if (g_Sdebug)
get_filevalues (); /* for debugging: read values from file */
/* calculate value of tolerable color error */
max = color_error (0,0, 0, 255, 255, 255); /* 260100 */
g_tol_col_err = (((float)max * (g_values.tol_col_err * g_values.tol_col_err)) / (100.0 *100.0));
g_max_col_err = max;
rc = 0;
if (mc_flags & MC_GET_SAMPLE_COLORS)
{
id = g_values.sample_id;
if ((id == SMP_GRADIENT) || (id == SMP_INV_GRADIENT))
{
get_gradient (id);
}
else
{
sample_drawable = TRUE;
init_gdrw (&sample_gdrw, gimp_drawable_get_by_id (id), FALSE);
free_colors ();
rc = sample_analyze (&sample_gdrw);
}
}
if ((mc_flags & MC_DST_REMAP) && (rc == 0))
{
if (gimp_drawable_is_gray (g_values.dst) &&
(mc_flags & MC_DST_REMAP))
{
gimp_image_convert_rgb (gimp_item_get_image (GIMP_ITEM (g_values.dst)));
}
colorize_drawable (g_values.dst, config);
}
if (sample_drawable)
end_gdrw (&sample_gdrw);
return rc;
}
|