Color Management: Difference between revisions

From SlackWiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(11 intermediate revisions by the same user not shown)
Line 1: Line 1:
== Color management and calibration software ==
== Color management and calibration software ==


* colord-gtk
*
* oyranos
* oyranos
* gnome-color-manager
* DisplayCAL
* DisplayCAL
* monica
* monica
* cups-calibrate
* cups-calibrate
== Colord ==
[https://www.freedesktop.org/software/colord/ Homepage]
[https://slackbuilds.org/repository/14.2/system/colord/ SBo]
Provides '''colormgr''' console utility for color management.
== xiccd ==
Desktop color management daemon.
It needed to import profiles into colord and apply them to monitor.
If you use KDE or Gnome, you do not need xiccd. Gnome uses gnome-settings-daemon instead.
Depends on: colord
[https://forums.freebsd.org/threads/51153/ Guide for FreeBSD]
== gnome-color-manager ==
Requires colord-gtk - gtk library for colord
Useful GUI for colormgr utility.


== Iccprofiles ==
== Iccprofiles ==


Package with icc profiles kit.
Package with common icc profiles collection from Adobe and ECI.


== Xcalib ==
== Xcalib ==


xcalib is a tool for loading icc profile for monitor.
xcalib is a tool for direct loading icc profile for monitor.
 
 
== Colord ==
[https://www.freedesktop.org/software/colord/ Homepage]
[https://slackbuilds.org/repository/14.2/system/colord/ SBo]


== lprof ==
== lprof ==
Line 49: Line 63:
We can use lprof to create icc profile for monitor or camera/scanner.
We can use lprof to create icc profile for monitor or camera/scanner.


== See also ==


[https://wiki.archlinux.org/index.php/ICC_profiles Page on Archwiki dedicated to this problem]
[https://wiki.archlinux.org/index.php/ICC_profiles Page on Archwiki dedicated to this problem]
[http://www.hughski.com/ Open source display colorimeter]


Page in progress.
Page in progress.

Latest revision as of 13:39, 17 July 2017

Color management and calibration software

  • oyranos
  • DisplayCAL
  • monica
  • cups-calibrate


Colord

Homepage SBo

Provides colormgr console utility for color management.

xiccd

Desktop color management daemon. It needed to import profiles into colord and apply them to monitor. If you use KDE or Gnome, you do not need xiccd. Gnome uses gnome-settings-daemon instead.

Depends on: colord

Guide for FreeBSD

gnome-color-manager

Requires colord-gtk - gtk library for colord

Useful GUI for colormgr utility.

Iccprofiles

Package with common icc profiles collection from Adobe and ECI.

Xcalib

xcalib is a tool for direct loading icc profile for monitor.

lprof

Homepage

Lprof does not included in slackbuilds repository.

Requires: qt3, Vigra

Installation

Create directory for installation. In my case:

mkdir ~/software/lprof

In order to compile we need some tricks on source tree directory:

find . -iname "*.c" -o -iname "*.cpp" -o -iname "*.h" | xargs sed -i 's/BOOL/bool/g'
find . -iname "*.c" | xargs sed -i '/typedef long int bool/d'
find . -iname "*.c" | xargs sed -i '1i typedef enum { FALSE, TRUE } bool;'

Then

scons PREFIX=~/software/lprof/ qt_directory=/opt/kde3/lib/qt3-3.3.8b/ install

Usage

We can use lprof to create icc profile for monitor or camera/scanner.


See also

Page on Archwiki dedicated to this problem

Open source display colorimeter

Page in progress.