~ubuntu-branches/ubuntu/saucy/argyll/saucy

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
<!DOCTYPE html PUBLIC "-//w3c//dtd html 4.0 transitional//en">
<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html;
      charset=ISO-8859-1">
    <meta name="author" content="Graeme Gill">
    <meta name="description" content="Root of Argyll CMS documentation">
    <meta name="GENERATOR" content="Mozilla/4.73 [en] (WinNT; I)
      [Netscape]">
    <title>Argyll Documentation Top</title>
  </head>
  <body>
    <h1> Argyll CMS documentation index (V1.4.0)<br>
    </h1>
    Date:&nbsp;&nbsp; 20th April 2012<br>
    Author: Graeme Gill
    <h2><u><a name="Intro"></a>Introduction</u></h2>
    ArgyllCMS is an ICC compatible color management system, available as
    Open Source. It supports accurate ICC profile creation for scanners,
    cameras and film recorders, and calibration and profiling of
    displays and RGB &amp; CMYK printers. Spectral sample data is
    supported, allowing a selection of illuminants observer types, and
    paper fluorescent whitener additive compensation. Profiles can also
    incorporate source specific gamut mappings for perceptual and
    saturation intents. Gamut mapping and profile linking uses the
    CIECAM02 appearance model, a unique gamut mapping algorithm, and a
    wide selection of rendering intents. Device Link can be created with
    a wide variety of advanced options. It also includes code for the
    fastest portable 8 bit raster color conversion engine available
    anywhere, as well as support for fast, fully accurate 16 bit
    conversion. Device color gamuts can also be viewed and compared
    using a VRML viewer. Comprehensive documentation is provided for
    each major tool, and a general guide to using the tools for typical
    color management tasks is also available. A mailing list provides
    support for more advanced usage.<br>
    <p>This is Version 1.4.0, a bug fix and feature update to V1.3.7
      released on 26th March 2012. The first public release of icclib
      was in November 1998, and of Argyll was in October 2000. Code
      development commenced in 1995. See <a href="ChangesSummary.html">Changes

        Summary</a> for an overview of changes since the last release.
      Changes between revisions is detailed in the <b>log.txt</b> file
      that accompanies the source code. </p>
    <p>The latest source code is available from <a
        href="http://www.argyllcms.com/">here</a>. </p>
    <p>Argyll is known to compile and run in at least nine environments:
    </p>
    1) MSWindows 2K system using Microsoft VC++ 6.0 compiler<br>
    2) MSWindows 2K system using Microsoft VC++ 8.0 Express compiler +
    Platform SDK Feb. 2003<br>
    3) MSWindows 2K system using Microsoft VC++ 9.0 Express compiler +
    Platform SDK Feb. 2003<br>
    4) MSWindows 2K system using the MingW port of the GCC compiler<br>
    5) Linux on Fedora Core 8, 32 bit using gcc <br>
    6) Linux on Fedora Core 8, 64 bit using gcc<br>
    7) Apple OSX 10.3 PPC using gcc<br>
    8) Apple OSX 10.4 Intel using&nbsp; gcc<br>
    9) Apple OSX 10.5 Intel using&nbsp; gcc<br>
    <br>
    It is also known to run on:<br>
    <br>
    &nbsp;MSWindows 2000, XP, Vista &amp; Windows 7 32 bit.<br>
    &nbsp;MSWindows Vista 64bit &amp; Windows 7 64bit<br>
    &nbsp;Linux Ubuntu 7.10<br>
    &nbsp;Linux Kubuntu 7.10<br>
    &nbsp;Linux Mandriva 2008.0<br>
    &nbsp;Linux OpenSuSE 10.3<br>
    &nbsp;Linux Whitebox 4.2/2<br>
    &nbsp;Apple OSX 10.6 Intel<br>
    &nbsp;Apple OSX 10.7 Intel<br>
    <p>but may well compile and run correctly in many more than this. </p>
    This is a <span style="font-weight: bold;">command line terminal</span>
    only environment. Those unfamiliar with command line environments
    should consult an appropriate tutorial for their environment if they
    are interested in using this software. See the listing of <a
      href="#cltutes">tutorials</a> below.<span style="font-weight:
      bold;"></span><br>
    <br>
    The following color measuring instruments are directly supported:<br>
    <br>
    X-Rite:<br>
    &nbsp;&nbsp;&nbsp; <a href="instruments.html#DTP20">DTP20 "Pulse"</a>&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














    - "swipe" type reflective spectrometer, that can be used untethered.<br>
    &nbsp;&nbsp;&nbsp; <a href="instruments.html#DTP22">DTP22 Digital
      Swatchbook</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














    - spot type reflective spectrometer.<br>
    &nbsp;&nbsp;&nbsp; <a href="instruments.html#DTP41">DTP41</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














    - spot and strip reading reflective spectrometer.<br>
    &nbsp;&nbsp;&nbsp; <a href="instruments.html#DTP41">DTP41T</a>
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














    - spot and strip reading reflective/transmissive spectrometer.<br>
    &nbsp;&nbsp;&nbsp; <a href="instruments.html#dtp51">DTP51</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














    - strip reading reflective colorimeter.<br>
    &nbsp;&nbsp;&nbsp; <a href="instruments.html#DTP92">DTP92</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














    - CRT display colorimeter.<br>
    &nbsp;&nbsp;&nbsp; <a href="instruments.html#DTP94">DTP94</a> <font
      size="-1">"Optix XR"</font> or "Optix XR2" or "Optix Pro"- display
    colorimeter.<br>
    &nbsp;&nbsp;&nbsp; <a href="instruments.html#ColorMunki"><span
        style="text-decoration: underline;">ColorMunki</span></a> Design
    or Photo&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -
    spot and "swipe" reflective/emissive spectrometer (UV cut only).<br>
    &nbsp;&nbsp;&nbsp; <a href="instruments.html#i1d"><span
        style="text-decoration: underline;">ColorMunki</span></a> Create
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; - display
    colorimeter. (Treated as a Eye-One Display 2)<br>
    &nbsp;&nbsp;&nbsp; <a href="instruments.html#Huey">Lenovo W</a>
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; -
    built in laptop Huey display colorimeter.<br>
    &nbsp;&nbsp;&nbsp; <a href="instruments.html#i1d3">Eye-One Display
      3</a> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; - Xrite i1 DisplayPro and ColorMunki
    Display <br>
    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [ The OEM
    i1Display Pro and<br>
    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    NEC SpectraSensor Pro are also reported to work.]<br>
    <br>
    Gretag-Macbeth (now X-Rite):<br>
    &nbsp; &nbsp; <a href="instruments.html#sl">Spectrolino</a> &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; - spot
    reflective/emissive spectrometer.<br>
    &nbsp; &nbsp; <a href="instruments.html#ss">SpectroScan</a> &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; - spot
    reflective/emissive, XY table reflective spectrometer&nbsp; .<br>
    &nbsp; &nbsp; <a href="instruments.html#ss">SpectroScanT</a> &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; - spot
    reflective/emissive/transmissive, XY table reflective spectrometer.<br>
    &nbsp; &nbsp; <a href="instruments.html#i1p">Eye-One Pro</a> "EFI
    ES-1000" &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; - spot and "swipe"
    reflective/emissive spectrometer.<br>
    &nbsp; &nbsp; <a href="instruments.html#i1m">Eye-One Monitor</a>
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; - spot and "swipe" emissive
    spectrometer.<br>
    &nbsp;&nbsp;&nbsp; <a href="instruments.html#i1d">Eye-One Display 1
      or 2&nbsp; or LT</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -
    display colorimeter.<br>
    &nbsp;&nbsp;&nbsp; <a href="instruments.html#i1d">HP DreamColor or
      APS</a>&nbsp;
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














    - display colorimeter. (Treated as a Eye-One Display 2)<br>
    &nbsp;&nbsp;&nbsp; <a href="instruments.html#i1d">CalMAN X2</a>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














    - display colorimeter. (Treated as a Eye-One Display 2)<br>
    &nbsp;&nbsp;&nbsp; <a href="instruments.html#Huey">Huey</a> &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; - display colorimeter.<br>
    <br>
    Sequel imaging (Now X-Rite):<br>
    &nbsp;&nbsp;&nbsp;&nbsp; <a href="instruments.html#mox">MonacoOPTIX</a>
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; - display
    colorimeter (Treated as an Eye-One Display 1)<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














    [The Sequel Chroma 4 may also work.]<br>
    <br>
    Lacie Blue
    Eye:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














    - see <a href="instruments.html#i1d">Eye-One Display</a><br>
    <br>
    DataColor ColorVision:<br>
    &nbsp;&nbsp;&nbsp;&nbsp; <a href="instruments.html#spyd2">Spyder 2</a>
    &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; - display colorimeter (Note
    that the user must <a href="spyd2en.html">supply</a> firmware)<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














    [The Spyder 1 has also been reported as working, but this has not
    been confirmed.]<br>
    &nbsp;&nbsp;&nbsp;&nbsp; <a href="instruments.html#spyd3">Spyder 3</a>
    &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; - display colorimeter.<br>
    &nbsp;&nbsp;&nbsp;&nbsp; <a href="instruments.html#spyd4">Spyder 4</a>
    &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; - display colorimeter (Note
    that the user must <a href="spyd4en.html">supply</a> calibration
    data)<br>
    <br>
    Other:<br>
    &nbsp;&nbsp;&nbsp; <span class="titre"><a
        href="instruments.html#HCFR">Colorim&egrave;tre HCFR</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














      - display colorimeter (Not on MSWindows 64 bit)</span><br>
    <span style="font-weight: bold;"></span><span class="titre"><br>
      See </span><a href="instruments.html">Operation of particular
      instruments</a> for more instrument specific detail.<br>
    <br>
    <span style="font-weight: bold;">Please note that instruments are
      being driven by ArgyllCMS drivers, and that any problems or
      queries regarding instrument<br>
      operation </span><span style="font-weight: bold;">should be
      directed to the Argyll's author(s) or the Argyll mailing list, and
      not to any</span> <span style="font-weight: bold;">other party.</span><br>
    <br>
    <br>
    There is a <a href="ccmxs.html">list of contributed</a> <span
      style="font-weight: bold;">ccmx</span> (Colorimeter Correction
    Matrix) files for some display/colorimeter combinations.<br>
    <br>
    Other instruments can be supported indirectly, since patch result
    files created by other packages can be imported into Argyll.<br>
    <br>
    Please <span style="font-weight: bold;">note</span> the <a
      href="Installing.html">installation instructions</a> for each
    platform - they contain important information for getting your
    instruments working.<br>
    <p>If you've decided to buy a color instrument because Argyll
      supports it, please let the dealer and manufacturer know that "<span
        style="font-weight: bold;">You bought it because Argyll CMS
        supports it</span>" - thanks.<br>
    </p>
    <p><span style="font-weight: bold;">Please direct</span> any queries
      or problems regarding operation of color instruments in
      combination with Argyll, to the Author(s) of Argyll, and not to
      any other party. </p>
    <h2><span style="text-decoration: underline; color: rgb(51, 0, 51);"><a
          name="Copyright"></a>Copyright and Licensing:</span><br>
    </h2>
    <p>Most of the source code and provided executable files are
      copyrighted works, licensed under the <span style="font-weight:
        bold;">Affero GNU Version 3 license</span>, and therefore they
      (or works derived from them) can't be copied, sold or made
      available to users interacting with them remotely through a
      computer network, without providing the source code. Nothing other
      than your agreement and compliance with the Affero GNU License
      grants you permission to use, modify or distribute Argyll source
      code, executables or its derivative works. You could be sued for
      copyright infringement if you use or distribute Argyll without a
      valid license. The <span style="font-weight: bold;">Affero GNU</span>
      license <span style="font-weight: bold;">prohibits</span>
      extending these tools<span style="font-weight: bold;"></span>
      (i.e. by combining them with other programs or scripts that make
      use of, depend on, or work with the Argyll code) and distributing
      them, unless the all the elements of the extensions are also made
      available under a GPL compatible license. It is permissible to
      provide Argyll tools with other non GPL components if the elements
      of the package are not related, such that the packaging is mere
      aggregation. For all the gory details, please read the
      accompanying <a href="License.txt">license</a>. </p>
    Note that unlike many commercial ICC profiling tools, the profiles
    created using Argyll, are not subject to any claims or restrictions
    of Argyll's author(s), but are assumed to be the copyright property
    of the person who gathers the characterization data, and causes the
    profiles to be created.
    <p>The Argyll CMS is Copyright 1995 - 2012 Graeme W. Gill, and is
      made available under the terms of the Affero GNU General Public
      License Version 3, as detailed in the <a href="License.txt">License.txt</a>
      file. Documentation is licensed under the terms of the GNU Free
      Documentation License, Version 1.3. The author asserts his moral
      rights over this material in relationship to the attribution and
      integrity of these works. In particular, if these works are
      modified in a way that materially changes their functionality,
      then the modified works should be renamed in a way that clearly
      distinguishes them from "Argyll" or "ArgyllCMS" so that the
      effects of such changes do not reflect on the original works
      integrity or the original authors reputation. A subset of files
      (those that are related to the color istrument drivers, and are
      collected together into the instlib.zip archive by the
      spectro/instlib.ksh script + xicc/ccmx.h and xicc/ccmx.c) are
      licensed under the General Public License Version 2 or later, as
      detailed in the <a href="License2.txt">License2.txt</a> file.<br>
    </p>
    <p>Portions of the ColorHug instrument library
      (spectro/colorhug.[ch]) are Copyright 2011, Richard Hughes, and is
      licensed under the General Public License Version 2 or later, as
      detailed in the <a href="License2.txt">License2.txt</a> file.</p>
    <p>The tool spectro/spec2cie.c is Copyright 2005 Gerhard Fuernkranz,
      and is made available under the terms of the GNU General Public
      License Version 2 or later, and is licensed here under the Version
      3 license, as detailed in the <a href="License3.txt">License3.txt</a>
      file.<br>
    </p>
    <p>The UNIX USB library libusb included in this distribution, is
      copyright Johannes Erdfelt, Thomas Sailer and Brad Hards, and is
      licensed under the GNU LGPL Version 2 or later. See&nbsp;
      libusb/LICENSE and libusb/COPYING for details. <br>
    </p>
    <p>The Win32 USB library libusb-win32, included in this
      distribution, is copyright Stephan Meyer, Johannes Erdfelt and
      Thomas Sailer, and is licensed under the GNU LGPL Version 2 or
      latter (the DLL)&nbsp; and GNU GPL Version 2 or later (the
      drivers, services, installer). See&nbsp; libusbw/License.txt,
      libusbw/COPYING_LGPL.txt and libusbw/COPYING_GPL.txt for details.<br>
    </p>
    <p>The USB library libusb V1.0 included in this distribution, is
      copyright by the authors listed in the <span style="font-weight:
        bold;">libusb1/AUTHORS</span> file, and is licensed under the
      GNU LGPL Version 2 or later. See&nbsp; <span style="font-weight:
        bold;">libusb1/COPYING</span> for details of this license. The
      MSWindows kernel driver is Copyright Stephan Meyer, and is licesed
      under the GNU GPL Version 2 or later - See <span
        style="font-weight: bold;">libusb1/KDRIVER_LICENSE</span> and <span
        style="font-weight: bold;">libusb1/COPYING_GPL</span>. The
      WinUSB CoInstaller redistributable files from the Microsoft
      Windows Driver Kit are&nbsp; licensed by Microsoft according to
      the terms indicated in the <span style="font-weight: bold;">libusb1/license.rtf</span>
      file, section 2. These operating system files are provided
      ("aggregated") here under the terms of the Microsoft license
      purely for convenience, and do not form part of the libusb V1.0
      package, and are therefore not subject to the terms of the libusb
      V1.0 license(s). The .inf files that make use of the CoInstallers
      are provided under a free use, "MIT" type license. </p>
    <p>The icc library in<span style="font-weight: bold;"> icc</span>/,
      the CGATS library in <span style="font-weight: bold;">cgats</span>/,














      the jcnf library in <span style="font-weight: bold;">jcnf</span>/,













      the files <span style="font-weight: bold;">spectro/xdg_bds.*</span>,
      <span style="font-weight: bold;">spectro/aglob.*</span> and the
      ucmm library in <span style="font-weight: bold;">ucmm</span>/ are
      Copyright 1995 - 2011 Graeme W. Gill, and available according to
      the "MIT" license granted in the icc/License.txt and
      cgats/License.txt files, and the licenses at the top of
      ucmm/ucmm.c and jcnf/jcnf.c.<br>
    </p>
    <p>The yajl library in <span style="font-weight: bold;">jcnf/yajl</span>
      is Copyright 2007-2009, Lloyd Hilaiel and is licensed according to
      the Berkeley-style License granted in the jcnf/yajl/COPYING files.
      The yajl library has been repackaged and modified slightly for
      convenience.<br>
    </p>
    <p> The TIFF library included in this distribution for convenience,
      has its own copyright and license detailed in tiff/COPYRIGHT (an
      "MIT"/"BSD" like license).<br>
    </p>
    <p>The Independent JPEG Group's JPEG library included in this
      distribution for convenience, has its own copyright and license
      detailed in jpg/README (an "MIT"/"BSD" like license). Executables
      that include JPEG format support are based in part on the work of
      the Independent JPEG Group. </p>
    <p>xicc/iccjpeg.h and xicc/iccjpeg.c are lcms and they are Copyright
      (c) 1998-2010 Marti Maria Saguer and is licensed under an
      "MIT"/"BSD" like license. See the top of the iccjpeg.c file for
      the detailed copyright and licensing conditions.<br>
    </p>
    <p>The mongoose web server software is Copyright (c) 2004-2011
      Sergey Lyubka, and is licensed under an "MIT" license. </p>
    <h2><span style="text-decoration: underline; color: rgb(51, 0, 51);"><a
          name="ProjType"></a>What sort of project is this ? (re:
        contributions)<br>
      </span></h2>
    This is essentially my private project, that I've made available
    under GNU licensing conditions. Because I license my code under
    other licenses as well, there is a limit to what I will accept in
    the way of code contributions back into this project. For me to
    accept contributions into the distribution, it either has to a
    non-core (side) project, or has to be offered to me with copyright
    conditions that are compatible with my other uses (i.e.. a "BSD"
    like license, or assigning or licensing the copyright to me), or has
    to be so trivial (say a one line bug fix), that it can't be the
    subject of copyright. <br>
    <br>
    Of course there is nothing to stop someone setting up a real free
    software, community project based on the GNU licensed code made
    available here, that would be able to take GNU licensed
    contributions from everyone and would essentially be a "fork" of
    this code base.<br>
    <br>
    <h1><u><a href="Compiling.html">Compiling</a></u></h1>
    How to <a href="Compiling.html">build the software</a> from the
    source if you want to.<br>
    <span style="font-weight: bold;">Note</span> that you don't need to
    do this if you are using one of the binary installations.<br>
    <h1 style="color: rgb(51, 204, 0);"><u><a href="Installing.html">Installing</a></u></h1>
    Important notes on <a href="Installing.html">installing the binary
      software</a> on various platforms.<br>
    <br>
    <h2 style="color: rgb(51, 0, 51);"><u><u><a name="GUIs"></a>Graphic
          User Interfaces<br>
        </u></u></h2>
    ArgyllCMS does not directly support a graphic user interface, but
    several people have written <span style="font-weight: bold;">GUI</span>
    based front ends for it. A popular <span style="font-weight: bold;"></span>front
end
that
supports
display
calibration














    and profiling is <a href="http://hoech.net/dispcalGUI/">dispcalGUI</a>
    by Florian H&ouml;ch. Others can be found with a suitable <a
href="http://www.google.com/search?hl=en&amp;source=hp&amp;q=argyllcms+GUI&amp;aq=f&amp;aqi=g1&amp;aql=&amp;oq=">search</a>.<br>
    <h2 style="color: rgb(51, 0, 51);"><u><a name="CmdLine"></a>Main
        Tools and the command line<br>
      </u></h2>
    These are all command line ("DOS" shell) tools, and each tool
    require appropriate options to be set, followed by filename
    arguments. Sometimes the filenames will have to include the usual
    extensions, sometimes they are implicit. To get a brief listing of
    the possible arguments and <span style="font-weight: bold;">usage</span>
    of any of the tools, run it with just an "-?" argument, i.e. <b>targen












      -? </b>(or some other unrecognized flag, if the "?" character is
    treated specially in your shell, i.e. try "--" on OS X zsh).<br>
    <br>
    Note that in general the arguments consist of possible flags or
    options followed by file name arguments. All arguments need to be
    separated by whitespace.&nbsp; (If you need to specify a string with
    embedded white space, double quote the string). A flag consists of a
    dash attached to a single letter, the letter identifying the flag,
    and is usually case sensitive. An option is a flag that has an
    associated parameter or parameters. The parameter can be separated
    from the flag by white space, or may come directly after the flag.
    So if a tool has a usage that looks like this:<br>
    <br>
    &nbsp; tool -?<br>
    &nbsp; usage: tool [options] infile outfile<br>
    &nbsp;&nbsp;
    -v&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














    Verbose mode<br>
    &nbsp;&nbsp; -d
    n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














    Choose a depth 0-4<br>
    &nbsp;&nbsp; -r
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














    Use a random depth<br>
    &nbsp;&nbsp; -f
    [nn]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    Use full range. nn optional range 0 - 100.<br>
    &nbsp;&nbsp; -M
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














    Manual<br>
    &nbsp;&nbsp; infile
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














    Input file<br>
    &nbsp;&nbsp; outfile
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    Output file<br>
    <br>
    then there are&nbsp; 5 flags/options, and two filename arguments.
    Notice that square braces [] denote optional items. The first
    flag/option is a flag. The second is an option that has a numerical
    argument in the range 0 to 4. The third is a flag. the fourth is an
    option with an optional argument. The fourth is a flag.&nbsp; The
    flags and options can generally be in any order, but must be before
    the file name arguments. (For a few special tools you actually
    specify a sequence of flags and files where the flags apply just to
    the following file.) So example invocations may look like:<br>
    <br>
    &nbsp; tool -v testin testout<br>
    &nbsp; tool -d3 -M testin1 testout2<br>
    &nbsp; tool -f infile outfile<br>
    &nbsp; tool -f 45 infile outfile<br>
    &nbsp; tool -d 3 -f67 infile outfile<br>
    <p>In order to make use of the tools, it is necessary to keep track
      of where various files are, and what they are called. There are
      many possible ways of doing this. One way is to put each source
      profile and all its associated files (test charts, spectrometer
      values etc.) in one set of directories for each source profile
      type. Similarly the device profiles could be stored in a hierarchy
      of directories ordered by device type, media, resolution, device
      mode etc. Naturally you will want to set your $PATH so that you
      can run the tools from whichever directory you are in, as well as
      specify any necessary directory paths for file arguments so that
      the tools are able to open them.<br>
    </p>
    <p>Note that there are two ways the Argyll tools deal with filename
      extensions. In one you supply the extension (ie. you supply the
      whole file name), so the extension is up to you. In the other
      (used where one name is used for input and output files, or where
      there are multiple output files), the program adds the extension.
      In the documentation this should be indicated by calling it a
      "base name".<br>
    </p>
    <p><a name="cltutes"></a>For more information on using a command
      line environments, consult an appropriate tutorial:</p>
    <p>MS Windows :<br>
      &nbsp;&nbsp; &lt;<a
        href="http://www.bleepingcomputer.com/tutorials/tutorial76.html">http://www.bleepingcomputer.com/tutorials/tutorial76.html</a>&gt;<br>
      &nbsp;&nbsp; &lt;<a
        href="http://www.pcstats.com/articleview.cfm?articleid=1723&amp;page=1">http://www.pcstats.com/articleview.cfm?articleid=1723&amp;page=1</a>&gt;<br>
      &nbsp;&nbsp; &lt;<a
        href="http://www.voidspace.org.uk/python/articles/command_line.shtml">http://www.voidspace.org.uk/python/articles/command_line.shtml</a>&gt;<br>
      <br>
      &nbsp;&nbsp;&nbsp; To find more: &lt;<a
href="http://www.google.com/search?hl=en&amp;q=windows+command+prompt+tutorial">http://www.google.com/search?hl=en&amp;q=windows+command+prompt+tutorial&gt;</a><br>
      <br>
      OS X:<br>
      &nbsp;&nbsp;&nbsp; &lt;<a
        href="http://www.osxfaq.com/Tutorials/LearningCenter/">http://www.osxfaq.com/Tutorials/LearningCenter/</a>&gt;<br>
      &nbsp;&nbsp;&nbsp; &lt;<a
        href="http://www.atomiclearning.com/macosxterminalx.shtml">http://www.atomiclearning.com/macosxterminalx.shtml</a>&gt;<br>
      &nbsp;&nbsp;&nbsp; &lt;<a
        href="http://www.oreillynet.com/pub/a/mac/2001/12/14/terminal_one.html">http://www.oreillynet.com/pub/a/mac/2001/12/14/terminal_one.html</a>&gt;<br>
      <br>
      &nbsp;&nbsp;&nbsp; To find more: &lt;<a
        href="http://www.google.com/search?hl=en&amp;q=OS+X+shell+tutorial">http://www.google.com/search?hl=en&amp;q=OS+X+shell+tutorial</a>&gt;<br>
      <br>
      Linux:<br>
      &nbsp;&nbsp;&nbsp; &lt;<a
        href="http://www.linuxcommand.org/index.php">http://www.linuxcommand.org/index.php</a>&gt;<br>
      &nbsp;&nbsp;&nbsp; &lt;<a
        href="http://www.tuxfiles.org/linuxhelp/shell.html">http://www.tuxfiles.org/linuxhelp/shell.html</a>&gt;<br>
      &nbsp;&nbsp;&nbsp; &lt;<a
        href="http://www.ee.surrey.ac.uk/Teaching/Unix/">http://www.ee.surrey.ac.uk/Teaching/Unix/</a>&gt;<br>
      <br>
      &nbsp;&nbsp;&nbsp; To find more: &lt;<a
        href="http://www.google.com/search?q=linux+command+line+shell+tutorial">http://www.google.com/search?q=linux+command+line+shell+tutorial</a>&gt;</p>
    <p><br>
      <span style="font-weight: bold;">Note</span> that since OS X is
      based on UNIX, there is much in common between the OS X and Linux
      command line environments, and many of the UNIX tutorials may be
      useful:<br>
    </p>
    <p>&nbsp;&nbsp;&nbsp; &lt;<a
        href="http://www.rain.org/%7Emkummel/unix.html">http://www.rain.org/~mkummel/unix.html</a>&gt;<br>
    </p>
    <h2><u><a href="Scenarios.html">Tutorial: Typical usage scenarios
          and examples</a></u></h2>
    A <a href="Scenarios.html">guided tour</a> of the major tools,
    applied to typical CMS jobs, such as calibrating displays, creating
    device profiles, calibrating printers, linking profiles, and
    converting color spaces of raster files. <br>
    &nbsp; <br>
    <h3 style="color: rgb(0, 0, 0);"><u><a name="Topics"></a>Topical
        Discussions</u></h3>
    Discussions about particular topics:<br>
    <br>
    <a href="FWA.html">About Fluorescent Whitening Agent compensation</a><br>
    <br>
    <a href="instruments.html">Operation of particular instruments</a><br>
    <br>
    <a href="iccgamutmapping.html">About ICC profiles and Gamut Mapping</a><br>
    <br>
    <a href="monitorcontrols.html">About display monitor settings and
      targets</a><br>
    <br>
    <a href="gamma.html">About display "Gamma"</a><br>
    <br>
    <a href="calvschar.html">What's the difference between Calibration
      and Characterization ?</a><br>
    <br>
    <a href="WideGamutColmters.html">Why doesn't my Colorimeter work
      well on my Wide Gamut display ?</a><br>
    <span style="font-family: monospace;"></span><br>
    <a href="CrushedDisplyBlacks.html">My blacks get crushed on my
      display - why ? How do I fix it ?</a><br>
    <br>
    <a href="i1proDriver.html">How can I have confidence in the i1pro
      Driver ?</a><br>
    <br>
    <a href="evalInputTargets.html">Evaluating input targets</a><br>
    <br>
    <h2><b><u><font><b><u><font size="+2"><a name="Flow"></a>Flow
                  diagram of Major Tools:</font></u></b></font></u></b></h2>
    <br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a
      href="ArgyllFlow.jpg"><img alt="Thumbnail of Flow Diagram"
        src="ArgyllFlowThumb.jpg" style="border: 2px solid ; width:
        150px; height: 202px;"></a><br>
    <br>
    <h2><b><u><font size="+2"><a name="CatList"></a>Main Tools by
            category:</font></u></b></h2>
    <h3>Calibrating devices<br>
    </h3>
    <small><a style="font-family: monospace;" href="dispcal.html">dispcal</a><span
        style="font-family: monospace;">
        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></small>Adjust,
    calibrate and profile a display<small><big>.<br>
      </big></small><small><a style="font-family: monospace;"
        href="printcal.html">printcal</a><span style="font-family:
        monospace;"> &nbsp;&nbsp;&nbsp;&nbsp; </span></small>Create a
    printer calibration .cal file from a .ti3 data file<small><big>.</big></small><br>
    <h3>Creating test targets for profiling or print calibration<br>
    </h3>
    <small><a style="font-family: monospace;" href="targen.html">targen</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














      </span><big>Generate a profiling test target values .ti1 file. </big><br
        style="font-family: monospace;">
      <a style="font-family: monospace;" href="filmtarg.html">filmtarg</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span><big>Create














        film recorder TIFF files from Argyll .ti1 file. </big><br
        style="font-family: monospace;">
      <a style="font-family: monospace;" href="printtarg.html">printtarg</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp; </span><big>Create














        a PS, EPS or TIFF file containing test patch values, ready for
        printing.</big></small>
    <h3>Obtaining test results for profiling or print calibration<br>
    </h3>
    <small><a style="font-family: monospace;" href="chartread.html">chartread</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp; </span><big>Read














        a test chart using an instrument to create a .ti3 data file.</big><span
        style="font-family: monospace;"> </span><br style="font-family:
        monospace;">
      <a style="font-family: monospace;" href="dispread.html">dispread</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span><big>Test














        and read colorimetric values from a display </big><br
        style="font-family: monospace;">
      <a style="font-family: monospace;" href="filmread.html">filmread</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span><big>Read














        film colorimetric values using a SpectroScanT (Deprecated ?)</big><br
        style="font-family: monospace;">
      <a style="font-family: monospace;" href="scanin.html">scanin</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














      </span><big>Convert a TIFF&nbsp; image of a test chart into .ti3
        device values. <br>
      </big></small><small><a style="font-family: monospace;"
        href="illumread.html">illumread</a><span style="font-family:
        monospace;"> &nbsp;&nbsp;&nbsp; </span></small>Use an
    instrument to measure an illuminant spectrum, and estimate its UV
    content.<br style="font-family: monospace;">
    <small><a style="font-family: monospace;" href="fakeread.html">fakeread</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span><big>Fake














        the reading of a device using an ICC or MPP profile. <br>
      </big></small><small><a style="font-family: monospace;"
        href="synthread.html">synthread</a><span style="font-family:
        monospace;">&nbsp;&nbsp;&nbsp;&nbsp; </span><big>Fake the
        reading of a device using a synthetic device model. </big></small><br
      style="font-family: monospace;">
    <small><a style="font-family: monospace;" href="cb2ti3.html">cb2ti3</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














      </span><big>Convert Colorblind format CMY/RGB test chart into
        Argyll .ti3 CGATS format. </big><br style="font-family:
        monospace;">
      <a style="font-family: monospace;" href="kodak2ti3.html">kodak2ti3</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp; </span><big>Convert














        Kodak Colorflow format CMYK test chart into Argyll .ti3 CGATS
        format. </big><br style="font-family: monospace;">
      <a style="font-family: monospace;" href="txt2ti3.html">txt2ti3</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














      </span><big>Convert Gretag/Logo/X-Rite or other format RGB or CMYK
        test chart results into Argyll .ti3 CGATS format. </big><br
        style="font-family: monospace;">
      <a style="font-family: monospace;" href="fakeCMY.html">fakeCMY</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














      </span><big>Create a fake Argyll .ti3 CMY data file from a CMYK
        profile, as a basis of creating a CMY to CMYK separation<br>
      </big></small><small><a style="font-family: monospace;"
        href="average.html">average</a><span style="font-family:
        monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span><big>Average













        / Merge two measurement data files</big></small><br>
    <h3>Creating Device Profiles</h3>
    <small><a style="font-family: monospace;" href="colprof.html">colprof</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














      </span></small>Create an ICC profile from the .ti3 test data. <br>
    <small><a style="font-family: monospace;" href="mppprof.html">mppprof</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














      </span></small>Create a Model Printer Profile (MPP) from the .ti3
    test data. <br>
    <small><a style="font-family: monospace;" href="sepgen.html">sepgen</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














      </span></small><b>IN DEVELOPMENT</b> Create a CMY[K] to device
    colorant separation. <br>
    <small><a style="font-family: monospace;" href="revfix.html">revfix</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














      </span></small>Regenerate a device profiles B2A table data by
    inverting the A2B table.
    <h3>Creating Device Link Profiles</h3>
    <small><a style="font-family: monospace;" href="collink.html">collink</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














      </span></small>Link two device ICC profiles to create a device
    link profile.
    <h3>Converting colors or applying print calibration<br>
    </h3>
    <small><a style="font-family: monospace;" href="cctiff.html">cctiff</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














      </span></small>Color convert a TIFF or JPEG file using a sequence
    of ICC device, device link, abstract profiles and calibration files.
    <br>
    <small><a style="font-family: monospace;" href="applycal.html">applycal</a><span
        style="font-family: monospace;"> &nbsp;&nbsp;&nbsp;&nbsp; </span></small>Apply













    calibration curves to an ICC profile.<br>
    <small><a style="font-family: monospace;" href="icclu.html">icclu&nbsp;</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














      </span></small>Lookup individual color values through any ICC
    profile table. <br>
    <small><a style="font-family: monospace;" href="xicclu.html">xicclu</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














      </span></small>Lookup individual color values forward or inverted
    though an ICC profile table. <br>
    <small><a style="font-family: monospace;" href="mpplu.html">mpplu</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














      </span></small>Lookup individual color values though an MPP
    profile. Also create MPP gamut files/views.<br>
    <small><a style="font-family: monospace;" href="greytiff.html">greytiff</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></small>Convert














    a TIFF file to monochrome using an ICC device profile <br>
    <h3>Color Tweaking tools<br>
    </h3>
    <small><a style="font-family: monospace;" href="refine.html">refine</a><span
        style="font-family: monospace;">
        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></small>Creates an
    abstract profile from two chart readings, useful for refining
    proofing profiles. <a href="mppprof.html"><br>
    </a>
    <h3>Creating gamut views</h3>
    <small><a style="font-family: monospace;" href="iccgamut.html">iccgamut</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></small>Create














    a gamut file or VRML file of the color gamut of an ICC profile. <br>
    <small><a style="font-family: monospace;" href="tiffgamut.html">tiffgamut</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp; </span></small>Create














    a gamut file or VRML file of the color gamut of a TIFF or JPEG
    image. <br>
    <small><a style="font-family: monospace;" href="viewgam.html">viewgam</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














      </span></small>Convert one or more gamuts into a VRML 3D
    visualization file. Compute an intersection.<br>
    <h3>Diagnostic and test tools<br>
    </h3>
    <small><a style="font-family: monospace;" href="iccdump.html">iccdump</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














      </span></small>Dump the contents of an ICC profile as text. <br>
    <small><a style="font-family: monospace;" href="profcheck.html">profcheck</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp; </span></small>Check














    an ICC profile against .ti3 test chart data. <br>
    <small style="font-family: monospace;"><a href="invprofcheck.html">invprofcheck</a>&nbsp;














    </small>Check ICC forward against inverse lookup. <br>
    <small><a style="font-family: monospace;" href="splitti3.html">splitsti3</a><span
        style="font-family: monospace;"> &nbsp;&nbsp;&nbsp; </span></small>Split













    a CGATS file (ie. a .ti3) into two parts randomly to verify
    profiling. <br>
    <small style="font-family: monospace;"><a href="timage.html">timage</a>
      &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </small>Create TIFF test
    images. <br>
    <small><a style="font-family: monospace;" href="mppcheck.html">mppcheck</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></small>Check














    an MPP profile against .ti3 test chart data. <br>
    <small><a style="font-family: monospace;" href="spotread.html">spotread</a><span
        style="font-family: monospace;"> &nbsp;&nbsp;&nbsp;&nbsp; </span></small>Use













    an instrument to read a single spot color value. <br>
    <small><a style="font-family: monospace;" href="verify.html">verify</a><span
        style="font-family: monospace;">
        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></small>Verify
    matching of CIE in two CGATS/.ti3 files (also view differences as
    VRML)<br>
    <small><a style="font-family: monospace;" href="synthcal.html">synthcal</a><span
        style="font-family: monospace;"> &nbsp;&nbsp;&nbsp;&nbsp; </span></small>Create













    a synthetic input, display or output calibration (<a
      href="File_Formats.html#.cal">.cal</a>)file.
    <h3>Other Tools</h3>
    <small><a style="font-family: monospace;" href="ccxxmake.html">ccxxmake</a><span
        style="font-family: monospace;"> &nbsp;&nbsp;&nbsp;&nbsp; </span></small>Use













    a Spectrometer to create a Colorimeter Correction Matrix
    (CCMX)&nbsp; or a Colorimeter Calibration Spectral Set (CCSS)&nbsp;
    for a particular display.<br>
    <small><a style="font-family: monospace;" href="extracticc.html">extracticc</a><span
        style="font-family: monospace;"></span></small><small><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp; </span>Extract














      an embedded ICC profile from a TIFF or JPEG file.<br>
    </small><small><a style="font-family: monospace;"
        href="extractttag.html">extractttag</a><span style="font-family:
        monospace;"></span></small><small><span style="font-family:
        monospace;">&nbsp;&nbsp; </span>Extract a text tag (ie. CGATS
      .ti3 data or CAL) from an ICC profile.</small><br>
    <small><a style="font-family: monospace;" href="dispwin.html">dispwin</a><span
        style="font-family: monospace;"></span></small><small><span
        style="font-family: monospace;">&nbsp;&nbsp; &nbsp; &nbsp; </span></small>Install














    or uninstall display profile, set display calibration from profile
    or .cal file, test displace and dispwin access to a display.<br>
    <small><a style="font-family: monospace;" href="i1d3ccss.html">i1d3ccss</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></small>A
    special purpose tool that can either install CCSS files, or locat
    and translate X-Rite .EDR files to CCSS files and install them.<br>
    <small><a style="font-family: monospace;" href="specplot.html">specplot</a><span
        style="font-family: monospace;"> &nbsp;&nbsp;&nbsp; </span><span
        style="text-decoration: underline; font-family: monospace;"></span></small>&nbsp;














    Plot a spectrum (.sp) and calculate CCT and VCT.<br>
    <small><a style="font-family: monospace;" href="spec2cie.html">spec2cie</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span><span
        style="text-decoration: underline; font-family: monospace;"></span></small>Convert














    spectral .ti3 readings into CIE XYZ or L*a*b* readings. Apply FWA,
    plot spectrums.<br>
    <small><a style="font-family: monospace;" href="spyd2en.html">spyd2en</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














      </span><span style="text-decoration: underline; font-family:
        monospace;"></span></small>A special purpose tool that enables
    the Spyder 2 colorimeter.<br>
    <small><a style=" font-family: monospace;" href="spyd4en.html">spyd4en</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














      </span><span style="text-decoration: underline; font-family:
        monospace;"></span></small>A special purpose tool that enables
    the full range of Spyder 4 colorimeter calibration choices.<br>
    &nbsp;
    <h2><b><u><font size="+2"><a name="AlphList"></a>Main Tools
            Alphabetic Listing:</font></u></b></h2>
    <small><a style="font-family: monospace;" href="applycal.html">applycal</a><span
        style="font-family: monospace;"> &nbsp;&nbsp;&nbsp;&nbsp; </span></small>Apply













    calibration curves to an ICC profile.<br>
    <small><a style="font-family: monospace;" href="average.html">average</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














      </span><big>Average / Merge two measurement data files</big></small><br>
    <small><a style="font-family: monospace;" href="cb2ti3.html">cb2ti3</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














      </span></small>Convert Colorblind format CMY/RGB test chart into
    Argyll .ti3 CGATS format. <br>
    <small><a style="font-family: monospace;" href="cctiff.html">cctiff</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














      </span></small>Color convert a TIFF or JPEG file using a sequence
    of ICC device, device link, abstract profiles and calibration files.<br>
    <small><a style="font-family: monospace;" href="ccxxmake.html">ccxxmake</a><span
        style="font-family: monospace;"> &nbsp;&nbsp;&nbsp;&nbsp; </span></small>Use













    a Spectrometer to create a Colorimeter Correction Matrix
    (CCMX)&nbsp; or a Colorimeter Calibration Spectral Set (CCSS)&nbsp;
    for a particular display.<br>
    <small><a style="font-family: monospace;" href="chartread.html">chartread</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp; </span></small>Read














    a test chart using an instrument to create a .ti3 data file. <br>
    <small><a style="font-family: monospace;" href="collink.html">collink</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














      </span></small>Link two device ICC profiles to create a device
    link profile. <br>
    <small><a style="font-family: monospace;" href="colprof.html">colprof</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














      </span></small>Create an ICC profile from the .ti3 test data. <br>
    <small style="font-family: monospace;"><a href="dispcal.html">dispcal</a>
      &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </small>Adjust, calibrate and
    profile a display<small><big>.</big></small><br>
    <small><a style="font-family: monospace;" href="dispread.html">dispread</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></small>Test














    and read colorimetric values from a display <br>
    <small><a style="font-family: monospace;" href="dispwin.html">dispwin</a><span
        style="font-family: monospace;"></span></small><small><span
        style="font-family: monospace;">&nbsp;&nbsp; &nbsp; &nbsp; </span></small>Install














    or uninstall display profile, set display calibration from profile
    or .cal file, test displace and dispwin access to a display.<br>
    <small><a style="font-family: monospace;" href="extracticc.html">extracticc</a><span
        style="font-family: monospace;"></span></small><small><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp; </span>Extract














      an embedded ICC profile from a TIFF or JPEG file.<br>
    </small><small><a style="font-family: monospace;"
        href="extractttag.html">extractttag</a><span style="font-family:
        monospace;"></span></small><small><span style="font-family:
        monospace;">&nbsp;&nbsp; </span>Extract a text tag (ie. CGATS
      .ti3 data or CAL) from an ICC profile.</small><br>
    <small><a style="font-family: monospace;" href="fakeCMY.html">fakeCMY</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














      </span></small>Create a fake Argyll .ti3 CMY data file from a CMYK
    profile, as a basis of creating a CMY to CMYK separation <br>
    <small><a style="font-family: monospace;" href="fakeread.html">fakeread</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></small>Fake














    the reading of a device using an ICC or MPP profile. <br>
    <small><a style="font-family: monospace;" href="filmread.html">filmread</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></small>Read














    film colorimetric values using a SpectroScanT (Deprecated ?)<br>
    <small><a style="font-family: monospace;" href="filmtarg.html">filmtarg</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></small>Create














    film recorder TIFF files from Argyll .ti1 file. <br>
    <small><a style="font-family: monospace;" href="greytiff.html">greytiff</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></small>Convert














    a TIFF file to monochrome using an ICC device profile <br>
    <small><a style="font-family: monospace;" href="i1d3ccss.html">i1d3ccss</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></small>A
    special purpose tool that can either install CCSS files, or locat
    and translate X-Rite .EDR files to CCSS files and install them.<br>
    <small><a style="font-family: monospace;" href="iccdump.html">iccdump</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














      </span></small>Dump the contents of an ICC profile as text. <br>
    <small><a style="font-family: monospace;" href="iccgamut.html">iccgamut</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></small>Create














    a gamut file or VRML file of the color gamut of an ICC profile. <br>
    <small><a style="font-family: monospace;" href="icclu.html">icclu&nbsp;</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














      </span></small>Lookup individual color values through any ICC
    profile table. <br>
    <small><a style="font-family: monospace;" href="illumread.html">illumread</a><span
        style="font-family: monospace;"> &nbsp;&nbsp;&nbsp; </span></small>Use













    an instrument to measure an illuminant spectrum, and estimate its UV
    content.<br>
    <small><a style="font-family: monospace;" href="invprofcheck.html">invprofcheck</a><span
        style="font-family: monospace;">&nbsp; </span></small>Check ICC
    forward against inverse lookup. <br>
    <small><a style="font-family: monospace;" href="kodak2ti3.html">kodak2ti3</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp; </span></small>Convert














    Kodak Colorflow format CMYK test chart into Argyll .ti3 CGATS
    format. <br>
    <small><a style="font-family: monospace;" href="mppcheck.html">mppcheck</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></small>Check














    an MPP profile against .ti3 test chart data. <br>
    <small><a style="font-family: monospace;" href="mpplu.html">mpplu</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














      </span></small>Lookup individual color values though an MPP
    profile. Also create MPP gamut files/views. <br>
    <small><a style="font-family: monospace;" href="mppprof.html">mppprof</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














      </span></small>Create a Model Printer Profile (MPP) from the .ti3
    test data. <br>
    <small><a style="font-family: monospace;" href="printcal.html">printcal</a><span
        style="font-family: monospace;"> &nbsp;&nbsp;&nbsp;&nbsp; </span></small>Create













    a printer calibration .cal file from a .ti3 data file<small><big>.</big></small><br>
    <small><a style="font-family: monospace;" href="printtarg.html">printtarg</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp; </span></small><small><big>Create














        a PS, EPS or TIFF file containing test patch values, ready for
        printing.</big></small><br>
    <small><a style="font-family: monospace;" href="profcheck.html">profcheck</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp; </span></small>Check














    an ICC profile against .ti3 test chart data. <br>
    <small><a style="font-family: monospace;" href="refine.html">refine</a><span
        style="font-family: monospace;">
        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></small>Creates an
    abstract profile from two chart readings, useful for refining
    proofing profiles. <br>
    <small><a style="font-family: monospace;" href="revfix.html">revfix</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














      </span></small>Regenerate a device profiles B2A table data by
    inverting the A2B table. <br>
    <small><a style="font-family: monospace;" href="scanin.html">scanin</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














      </span></small>Convert a TIFF&nbsp; image of a test chart into
    .ti3 device values. <br>
    <small><a style="font-family: monospace;" href="sepgen.html">sepgen</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














      </span></small><b>IN DEVELOPMENT</b> Create a CMY[K] to device
    colorant separation. <br>
    <small><a style="font-family: monospace;" href="spec2cie.html">spec2cie</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span><span
        style="text-decoration: underline; font-family: monospace;"></span></small>Convert














    spectral .ti3 readings into CIE XYZ or L*a*b* readings. Apply FWA,
    plot spectrums.<br>
    <small><a style="font-family: monospace;" href="specplot.html">specplot</a><span
        style="font-family: monospace;"> &nbsp;&nbsp;&nbsp; </span><span
        style="text-decoration: underline; font-family: monospace;"></span></small>&nbsp;














    Plot a spectrum (.sp) and calculate CCT and VCT.<br>
    <small><a style="font-family: monospace;" href="splitti3.html">splitsti3</a><span
        style="font-family: monospace;"> &nbsp;&nbsp;&nbsp; </span></small>Split













    a CGATS file (ie. a .ti3) into two parts randomly to verify
    profiling. <br>
    <small><a style="font-family: monospace;" href="spotread.html">spotread</a><span
        style="font-family: monospace;"> &nbsp;&nbsp;&nbsp;&nbsp; </span></small>Use













    an instrument to read a single spot color value. <br>
    <small><a style="font-family: monospace;" href="spyd2en.html">spyd2en</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














      </span><span style="text-decoration: underline; font-family:
        monospace;"></span></small>A special purpose tool that enables
    the Spyder 2 colorimeter.<br>
    <small><a style=" font-family: monospace;" href="spyd4en.html">spyd4en</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














      </span><span style="text-decoration: underline; font-family:
        monospace;"></span></small>A special purpose tool that enables
    the full range of Spyder 4 colorimeter calibration choices.<br>
    <small><a style="font-family: monospace;" href="synthcal.html">synthcal</a><span
        style="font-family: monospace;"> &nbsp;&nbsp;&nbsp;&nbsp; </span></small>Create













    a synthetic input, display or output calibration (<a
      href="File_Formats.html#.cal">.cal</a>)file.<br>
    <small><a style="font-family: monospace;" href="synthread.html">synthread</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp; </span><big>Fake














        the reading of a device using a synthetic device model. </big></small><br>
    <small><a style="font-family: monospace;" href="targen.html">targen</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














      </span></small>Generate a profiling test target values .ti1 file.
    <br>
    <small><a style="font-family: monospace;" href="tiffgamut.html">tiffgamut</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp; </span></small>Create














    a gamut file or VRML file of the color gamut of a TIFF or JPEG
    image. <br>
    <small><a style="font-family: monospace;" href="timage.html">timage</a><span
        style="font-family: monospace;">
        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></small>Create TIFF
    test images. <br>
    <small><a style="font-family: monospace;" href="txt2ti3.html">txt2ti3</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














      </span></small><small><big>Convert Gretag/Logo/X-Rite or other
        format RGB or CMYK test chart results into Argyll .ti3 CGATS
        format.</big></small> <br>
    <font size="-1"><a style="font-family: monospace;"
        href="verify.html">verify</a><span style="font-family:
        monospace;"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></font>Verify














    matching of CIE in two CGATS/.ti3 files (also view differences as
    VRML)<br>
    <font size="-1"><a style="font-family: monospace;"
        href="viewgam.html">viewgam</a><span style="font-family:
        monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></font>Convert













    one or more gamuts into a VRML 3D visualization file. Compute an
    intersection.<br>
    <small><a style="font-family: monospace;" href="xicclu.html">xicclu</a><span
        style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














      </span></small>Lookup individual color values forward or inverted
    though an ICC profile table. <br>
    <br>
    <h2><u><a href="Environment.html">Environment Variables<br>
        </a></u></h2>
    <span style="text-decoration: underline;"><span style="font-weight:
        bold;"></span></span> Performance/memory tuning hints, plus
    tweaks for scipting.<br>
    <h2><u><a href="Performance.html">Performance Tuning<br>
        </a></u></h2>
    <span style="text-decoration: underline;"><span style="font-weight:
        bold;"></span></span> Performance hints. <br>
    <h2><u><a href="Overview.html">Overview</a></u></h2>
    Overview of the software and its aims and functionality.<br>
    <h2><u><a href="Limitations.html">Limitations</a></u></h2>
    Limitations of the current functionality.<br>
    <h2><u><a href="Organisation.html">Organization</a></u></h2>
    How directories are organized, what they contain.
    <h2><u><a href="Source.html">Source</a></u></h2>
    Any detailed documentation on how the software works, or what
    algorithms it is based on. (Very incomplete.)
    <h2><u><a href="MinorTools.html">Minor Tools</a></u></h2>
    A very brief description of minor tools and test harnesses. <br>
    <br>
    <br>
    <h2><u><a name="FFormats"></a><a href="File_Formats.html">File
          formats that Argyll uses</a></u></h2>
    Argyll uses a number of file formats for its operation, some that
    are external standards, and some that are unique to Argyll. <br>
    <br>
    <a href="File_Formats.html#.ti1">.ti1</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














    Device test values <br>
    <a href="File_Formats.html#.ti2">.ti2</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














    Device test values &amp; chart layout <br>
    <a href="File_Formats.html#.ti3">.ti3</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














    Device test values &amp; CIE tristimulus/spectral results&nbsp; <a
      href="ti3_format.html">Format details.</a><br>
    <a href="File_Formats.html#.cal">.cal</a>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Device
    calibration information. <a href="cal_format.html">Format details.</a><br>
    <a href="File_Formats.html#.cht">.cht</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














    Test chart recognition template. <a href="cht_format.html">Format
      details.</a> <br>
    <a href="File_Formats.html#.gam">.gam</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














    3D gamut surface description <br>
    <a href="File_Formats.html#.sp">.sp</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














    Illuminant spectral description <br>
    <a href="File_Formats.html#.ccmx">.ccmx</a>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Colorimeter Correction Matrix <br>
    <a href="File_Formats.html#.ccmx">.ccss</a>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; Colorimeter Calibration
    Spectral Set <br>
    <a href="File_Formats.html#CGATS">CGATS</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














    Standard text based data exchange format <br>
    <a href="File_Formats.html#ICC">ICC</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














    International Color Consortium profile format <br>
    <a href="File_Formats.html#MPP">MPP</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














    Model device profile format <br>
    <a href="File_Formats.html#TIFF">TIFF</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














    Tag Image File Format raster files. <br>
    <a href="File_Formats.html#JPEG">JPEG</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














    Joint Photographic Experts Group, JPEG File Interchange Format
    raster files. <br>
    <a href="File_Formats.html#VRML">VRML</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;














    Virtual Reality Modelling Language 3D file format. <br>
    <br>
    <a href="ucmm.html">ucmm</a> &nbsp; &nbsp;&nbsp;&nbsp; Unix micro
    Color Management Module convention and configuration file format and
    <span style="color: rgb(204, 0, 0); font-weight: bold;">Profile
      Locations</span>.<br>
    &nbsp;
    <h2><u>Errors, Corrections and Omissions:</u></h2>
    <script language="JavaScript">

<!--

// Comment

var v1 = ".com"

var v2 = "argyllcms"

var v3 = "Graeme"

var v4 = "@"

var v5 = "mailto:"

var v6 = v5 + v3 + v4 + v2 + v1

document.write("<a href=" + v6 + ">" + "Let me know" + "</a>")

//-->



</script> If you notice any errors, corrections needed or omissions in
    the current documentation, please contact the author.<br>
    &nbsp; <br>
    &nbsp;
  </body>
</html>