• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

Build/XCode/H15-Jun-2014-2,5342,516

Contrib/H03-May-2022-16,36112,232

IccProfLib/H03-May-2022-42,65322,738

Tools/H03-May-2022-10,7248,497

AUTHORSH A D05-Mar-201484 42

COPYINGH A D05-Mar-20142 KiB4935

ChangeLogH A D15-Jun-201413.8 KiB294242

INSTALLH A D05-Mar-20149 KiB230175

Makefile.amH A D05-Mar-2014399 1913

Makefile.inH A D03-May-202227 KiB868770

NEWSH A D05-Mar-2014110 32

READMEH A D05-Mar-20142.9 KiB7756

README.OSXH A D05-Mar-2014759 1813

aclocal.m4H A D15-Jun-2014340 KiB9,6648,707

bootstrapH A D05-Mar-20141.4 KiB6248

config.guessH A D05-Mar-201443.4 KiB1,5111,298

config.subH A D05-Mar-201431.8 KiB1,6171,473

configureH A D15-Jun-2014550.5 KiB18,18415,275

configure.acH A D15-Jun-20147 KiB216197

depcompH A D05-Mar-201417.2 KiB585370

install-shH A D05-Mar-201412.9 KiB508340

ltmain.shH A D05-Mar-2014276.8 KiB9,6567,304

missingH A D05-Mar-201410.9 KiB368275

mkinstalldirsH A D05-Mar-20141.8 KiB10072

sampleicc.pc.inH A D05-Mar-2014384 1411

README

1ABOUT THE SAMPLEICC LIBRARY
2---------------------------
3
4IccProfLib (originally IccLib, but that conflicted with the Argyll library of
5the same name) is both an ICC profile I/O library and a reference CMM.
6
7LICENSE
8-------
9
10The ICC Software License, Version 0.2
11
12Copyright � 2003-2010 - The International Color Consortium. All rights reserved.
13
14Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
15
16 1. Redistributions of source code must retain the above copyright
17    notice, this list of conditions and the following disclaimer.
18
19 2. Redistributions in binary form must reproduce the above copyright
20    notice, this list of conditions and the following disclaimer in
21    the documentation and/or other materials provided with the
22    distribution.
23
24 3. In the absence of prior written permission, the names "ICC" and "The
25    International Color Consortium" must not be used to imply that the
26    ICC organization endorses or promotes products derived from this
27    software.
28
29====================================================================
30THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
31WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
32OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
33DISCLAIMED. IN NO EVENT SHALL THE INTERNATIONAL COLOR CONSORTIUM OR
34ITS CONTRIBUTING MEMBERS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
35SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
36LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
37USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
38ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
39OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
40OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
41SUCH DAMAGE.
42====================================================================
43
44This software consists of voluntary contributions made by many
45individuals on behalf of the The International Color Consortium.
46
47Membership in the ICC is encouraged when this software is used for
48commercial purposes.
49
50WHAT'S INCLUDED
51---------------
52
53Besides the IccProfLib library the release includes four command-line
54utilities that demonstrate how one might use the libraries to write,
55read and apply ICC profiles.
56
57BUILDING SampleICC
58------------------
59
60Mac OS X users, see README.OSX for build details.
61
62As one might expect, on GNU/Linux or other UNIX-like systems, a simple
63        ./configure
64        make
65        make install
66
67will configure, compile and install the IccProfLib headers and the
68SampleICC build products.  See the INSTALL file for more details or try
69       ./configure --help
70
71All include files needed to use the IccProfLib library are installed in
72the SampleICC subdirectory of the install prefix, e.g.
73	/usr/local/include/SampleICC
74
75Windows users, see README.win for build details.
76
77

README.OSX

1Mac OS X users will need a copy of the TIFF library.  One way to do
2this is to install the MacPorts system from www.macports.org.  Having
3done that, install the library with
4
5	port install tiff
6
7This will install the TIFF library into /opt/local/lib, and the TIFF
8header files into /opt/local/include.  The configure script will look
9for the library and header files in those locations, but if you have
10installed them somewhere else (e.g. you prefer using Fink to MacPorts,
11so your downloaded software is under /sw instead of /opt), you can
12indicate this by supplying the --with-tifflib option, as follows:
13
14	./configure --with-tifflib=/sw
15
16This indicates that the configure script should check for the library
17in /sw/lib and the header files in /sw/include.
18