Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mm2/Little-CMS.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarti Maria <marti.maria@littlecms.com>2022-08-22 15:31:29 +0300
committerMarti Maria <marti.maria@littlecms.com>2022-08-22 15:31:29 +0300
commit3ce1aa787e1b6749b4454a5172de8b8f24175deb (patch)
tree9882aed02b8197564127c4f75f38d8aa07519092
parent00a657c335e1452baeb7eed26c0988a5d2bd75f6 (diff)
Add more help to tifficc
Per #332 suggestion....
-rw-r--r--utils/tificc/tificc.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/utils/tificc/tificc.c b/utils/tificc/tificc.c
index efbdd1b..7b8e895 100644
--- a/utils/tificc/tificc.c
+++ b/utils/tificc/tificc.c
@@ -1005,6 +1005,7 @@ void Help(int level)
fprintf(stderr, "-p<profile> - Soft proof profile\n");
fprintf(stderr, "-m<n> - Soft proof intent\n");
+ fprintf(stderr, "\tThat is the intent used to translate the simulation to the output device.\n\tNote that the simulated intent is set by using -t not by -m");
fprintf(stderr, "-g - Marks out-of-gamut colors on softproof\n");
fprintf(stderr, "\n");
@@ -1022,6 +1023,8 @@ void Help(int level)
"\ttificc -oprinter.icm inrgb.tif outcmyk.tif\n"
"To recover sRGB from a CMYK separation:\n"
"\ttificc -iprinter.icm incmyk.tif outrgb.tif\n"
+ "To soft-poof how behaves Probev1_ICCv4.icc on perceptual:\n"
+ "\ttifficc -t0 -p Probev1_ICCv4.icc -m1 infile.tif out.tif\n"
"To convert from CIELab TIFF to sRGB\n"
"\ttificc -i*Lab in.tif out.tif\n\n");
@@ -1186,7 +1189,7 @@ int main(int argc, char* argv[])
TIFF *in, *out;
- fprintf(stderr, "Little CMS ICC profile applier for TIFF - v7.1 [LittleCMS %2.2f]\n\n", cmsGetEncodedCMMversion() / 1000.0);
+ fprintf(stderr, "Little CMS ICC profile applier for TIFF - v7.2 [LittleCMS %2.2f]\n\n", cmsGetEncodedCMMversion() / 1000.0);
fprintf(stderr, "Copyright (c) 1998-2022 Marti Maria Saguer. See COPYING file for details.\n");
fflush(stderr);