<div dir="ltr">I think compatibleWithAdobeRGB1998.icc is supposed to be installed in /usr/share/kde4/apps/libkdcraw/profiles/ when digikam is installed. <div><br></div><div>core/libs/dimg/filters/icc/iccprofile.cpp looks for it there (if there is not the official AdobeRGB1998 profile somewhere?), and when it doesn't find it, files with AdobeRGB colorspace are treated as though there is no colorspace encoded in the file (ans they look desaturated)<br>
</div><div><br></div><div>I'm not sure if the digikam-libkdcraw should be changed so that this file is installed, or if iccprofile.cpp should be changed to look elsewhere for an AdobeRGB (or compatible) profile.</div>
<div><br></div><div>CMakeLists in extra/libkdcraw/profiles only installs files that match *.icm, I suggest the following:</div><div><br></div><div><br></div><div><div>diff --git a/profiles/CMakeLists.txt b/profiles/CMakeLists.txt</div>
<div>index 7767115..4af3222 100644</div><div>--- a/profiles/CMakeLists.txt</div><div>+++ b/profiles/CMakeLists.txt</div><div>@@ -23,6 +23,7 @@</div><div> # ============================================================</div>
<div> </div><div> FILE(GLOB icmfiles *.icm)</div><div>+FILE(GLOB iccfiles *.icc)</div><div> </div><div>-INSTALL(FILES  ${icmfiles}</div><div>+INSTALL(FILES  ${icmfiles} ${iccfiles}</div><div>         DESTINATION ${DATA_INSTALL_DIR}/libkdcraw/profiles )</div>
</div><div><br></div></div>