| Summary: | overexposure indicator in color management is saved as part of the picture | ||
|---|---|---|---|
| Product: | [Applications] digikam | Reporter: | Erik van der Velden <erikvandervelden> |
| Component: | ImageEditor-Canvas | Assignee: | Digikam Developers <digikam-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | caulier.gilles |
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Gentoo Packages | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | 0.9.0 | |
| Sentry Crash Report: | |||
|
Description
Erik van der Velden
2006-07-16 00:56:12 UTC
SVN commit 562893 by cgilles:
digiKam from trunk : Color Management image plugin : fix over exposure rule with final rendering
BUG: 130883
M +2 -1 NEWS
M +2 -2 imageplugins/imageeffect_iccproof.cpp
--- trunk/extragear/graphics/digikam/NEWS #562892:562893
@@ -166,6 +166,7 @@
103 ==> 126199 : Nikon D70 comments in jpegs are all shown as "charset="Ascii".
104 ==> 130381 : Automatic colorbalance and camera color balance checkboxes swapped.
105 ==> 117248 : Opening default app when camera inserted return KIOExec error.
-106 ==>
+106 ==> 130883 : Overexposure indicator in color management is saved as part of the picture
+107 ==>
----------------------------------------------------------------------------------------------------
--- trunk/extragear/graphics/digikam/imageplugins/imageeffect_iccproof.cpp #562892:562893
@@ -1018,8 +1018,7 @@
//-- Calculate and apply the curve on image after transformation -------------
Digikam::DImg img2(w, h, sb, a, 0, false);
- m_curves->curvesLutSetup(Digikam::ImageHistogram::AlphaChannel,
- m_overExposureIndicatorBox->isChecked());
+ m_curves->curvesLutSetup(Digikam::ImageHistogram::AlphaChannel, false);
m_curves->curvesLutProcess(img.bits(), img2.bits(), w, h);
//-- Adjust contrast ---------------------------------------------------------
@@ -1124,6 +1123,7 @@
KMessageBox::error(this, i18n("Sorry, it seems there is no embedded profile"), i18n("Profile Error"));
return;
}
+
QString intent;
cmsHPROFILE selectedProfile = cmsOpenProfileFromMem(profile.data(), (DWORD)profile.size());
QString profileName = QString((cmsTakeProductName(selectedProfile)));
|