[Digikam-devel] extragear/graphics/digikam/libs/dimg/loaders
Gilles Caulier
caulier.gilles at free.fr
Sun Jul 9 11:35:46 BST 2006
SVN commit 560124 by cgilles:
digikam from trunk : BUGFIX : The default output color space used by dcraw is sRGB ! This commit set the output to RawMode. The color correction will be performed by digiKam itself else we will have both workspace color correction : one by dcraw, one by digiKam.
This way require than digikam color management enable!
TODO : use the default color space used by dcraw only if digiKam CM is not enable.
CCMAIL: digikam-devel at kde.org, fj.cruz at supercable.es
M +3 -1 rawloader.cpp
--- trunk/extragear/graphics/digikam/libs/dimg/loaders/rawloader.cpp #560123:560124
@@ -344,7 +344,9 @@
*m_process << QFile::encodeName( m_rawDecodingSettings.cameraICCProfilePath );
break;
- default:
+ default: // No ICC color Correction : converter to RAW Color Mode.
+ *m_process << "-o";
+ *m_process << "0";
break;
}
More information about the Digikam-devel
mailing list