linkicc.1 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. .\"Shiju P. Nair September 30, 2004
  2. .\"Thomas Weber <tweber@debian.org> April 23, 2014
  3. .TH LINKICC 1 "September 30, 2004"
  4. .SH NAME
  5. linkicc - little cms device link generator.
  6. .SH SYNOPSIS
  7. .B linkicc
  8. .RI [ options ] " profiles"
  9. .SH DESCRIPTION
  10. lcms is a standalone CMM engine, which deals with the color management.
  11. It implements a fast transformation between ICC profiles.
  12. .B linkicc
  13. is a little cms device link generator.
  14. .P
  15. Links two or more profiles into a single devicelink profile.
  16. Colorspaces must be paired except Lab/XYZ, that can be interchanged.
  17. .SH OPTIONS
  18. .TP
  19. .BR \-a\ NUM
  20. Observer adaptation state (abs.col. only), (0..1.0, float value) [defaults to 1.0].
  21. .TP
  22. .B \-b
  23. Black point compensation.
  24. .TP
  25. .BI \-c\ precision
  26. Precision (0=LowRes, 1=Normal, 2=Hi-res) [defaults to 1].
  27. .TP
  28. .BI \-d\ description
  29. Description text (quotes can be used).
  30. .TP
  31. .BI \-h\ NUM
  32. Show summary of options and examples (0=help, 1=Built-in profiles, 2=Examples, 3=Contact information)
  33. .TP
  34. .BI \-k\ inklimit
  35. Ink-limiting in % (CMYK only), (0..400.0, float value) [default 400.0].
  36. .TP
  37. .B \-l
  38. Use linearization curves (may affect accuracy).
  39. .TP
  40. .BI \-n\ gridpoints
  41. Alternate way to set precision, number of CLUT points.
  42. .TP
  43. .BI \-o\ profile
  44. Output devicelink profile [defaults to 'devicelink.icm'].
  45. .TP
  46. .BI \-r\ profileversion
  47. Profile version. (CAUTION: may change the profile implementation), (2.0..4.3, float value) [defaults to 4.3].
  48. .TP
  49. .BI \-t\ NUM
  50. Rendering intent
  51. .nf
  52. .RS
  53. 0=Perceptual [default]
  54. 1=Relative colorimetric
  55. 2=Saturation
  56. 3=Absolute colorimetric
  57. 10=Perceptual preserving black ink
  58. 11=Relative colorimetric preserving black ink
  59. 12=Saturation preserving black ink
  60. 13=Perceptual preserving black plane
  61. 14=Relative colorimetric preserving black plane
  62. 15=Saturation preserving black plane
  63. .RE
  64. .fi
  65. .TP
  66. .BI \-v\ verbosity
  67. Verbosity level, (0=None, 1=Normal, 2=High, 3=Very High) [defaults to 0].
  68. .TP
  69. .B \-x
  70. Creatively, guess deviceclass of resulting profile.
  71. .TP
  72. .BI \-y\ copyright
  73. Copyright notice (quotes can be used) ["No copyright, use freely"].
  74. .TP
  75. .B \-8
  76. Creates 8-bit devicelink.
  77. .SH BUILT-IN PROFILES
  78. .nf
  79. *Lab2 -- D50-based v2 CIEL*a*b
  80. *Lab4 -- D50-based v4 CIEL*a*b
  81. *Lab -- D50-based v4 CIEL*a*b
  82. *XYZ -- CIE XYZ (PCS)
  83. *sRGB -- sRGB color space
  84. *Gray22 - Monochrome of Gamma 2.2
  85. *Gray30 - Monochrome of Gamma 3.0
  86. *null - Monochrome black for all input
  87. *Lin2222- CMYK linearization of gamma 2.2 on each channel
  88. .fi
  89. .SH EXAMPLES
  90. .nf
  91. To create 'devicelink.icm' from a.icc to b.icc:
  92. linkicc a.icc b.icc
  93. To create 'out.icc' from sRGB to cmyk.icc:
  94. linkicc -o out.icc *sRGB cmyk.icc
  95. To create a sRGB input profile working in Lab:
  96. linkicc -x -o sRGBLab.icc *sRGB *Lab
  97. To create a XYZ -> sRGB output profile:
  98. linkicc -x -o sRGBLab.icc *XYZ *sRGB
  99. To create a abstract profile doing softproof for cmyk.icc:
  100. linkicc -t1 -x -o softproof.icc *Lab cmyk.icc cmyk.icc *Lab
  101. To create a 'grayer' sRGB input profile:
  102. linkicc -x -o grayer.icc *sRGB gray.icc gray.icc *Lab
  103. To embed ink limiting into a cmyk output profile:
  104. linkicc -x -o cmyklimited.icc -k 250 cmyk.icc *Lab
  105. .fi
  106. .SH NOTES
  107. For suggestions, comments, bug reports etc. send mail to
  108. info@littlecms.com.
  109. .SH SEE ALSO
  110. .BR jpgicc (1),
  111. .BR psicc (1),
  112. .BR tificc (1),
  113. .BR transicc (1)
  114. .SH AUTHOR
  115. This manual page was written by Shiju p. Nair <shiju.p@gmail.com>,
  116. for the Debian project.