[Digikam-devel] [Bug 277370] Unclear licensing for profiles/prophoto.icm and profiles/srgb-d65.icm

Francesco Riosa francesco+kde at pnpitalia.it
Wed Mar 21 13:36:05 GMT 2012


https://bugs.kde.org/show_bug.cgi?id=277370

--- Comment #10 from Francesco Riosa <francesco+kde at pnpitalia.it> ---
Created attachment 69786
  --> https://bugs.kde.org/attachment.cgi?id=69786&action=edit
elenco_icc.txt

tl;dr My suggestion is keep out of that mess, keep a short list of know good
profiles for sRGB, AdobeRGB, Wide Gamut and ProPhoto, possibly one CMYK coated
to simulate printer.
The profiles can be absent from the system and digikam should survive.

More random toughts below:
boh ... IANAL, licensing in the color managment world is a so harsh matter I'm
glad others are taking care of.
Namely others are OpenIcc, colord and argyll members/mantainers.
Attached there is a list of all profiles installed on my system (generated with
#1) which include the two bigger provider of free profiles at the moment:
media-gfx/shared-color-profiles =>
https://github.com/hughsie/shared-color-profiles
media-libs/icc-profiles-openicc  =>
http://www.freedesktop.org/wiki/OpenIcc/ProfilePackages
We can be pretty confident those packages will be present on every distro I
hope.

#1  to use on your system replace `qfile` with a command that link file->pkg

PKGNAME='UnPackaged (added manually)'
find /usr/share/color/ ~/.local/share/color/icc/ -type f -iname "*.icc" -or
-iname '*.icm' \
| while IFS= read -r icc
do
  PKGNAME2=$(qfile -C "${icc}")
  PKGNAME2=${PKGNAME2%% *}
  if [[ ${PKGNAME} != ${PKGNAME2} ]]
  then
    PKGNAME="${PKGNAME2}"
    [[ -z $PKGNAME ]] && PKGNAME='UnPackaged (added manually)'
    echo ; echo " ====== ${PKGNAME} ====== " ; echo
  fi
  echo " -- ${icc##*/} -- "
  argyll-iccdump "${icc}" | grep -i -e Creator -e Device\ Class -e Copyright
done > ~/elenco_icc.txt

-- 
You are receiving this mail because:
You are the assignee for the bug.



More information about the Digikam-devel mailing list