| Summary: | metadata lost when decoding a raw file | ||
|---|---|---|---|
| Product: | [Applications] digikam | Reporter: | Robert Zeller <robert.zeller> |
| Component: | Plugin-RawImport-Native | Assignee: | Digikam Developers <digikam-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | major | CC: | caulier.gilles |
| Priority: | NOR | ||
| Version First Reported In: | 1.7.0 | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | 1.8.0 | |
| Sentry Crash Report: | |||
|
Description
Robert Zeller
2011-01-20 11:13:42 UTC
SVN commit 1215912 by cgilles:
use right DimgImageFilter constructor to not lost metadata in editor when use press Import button in Raw Import tool
M +4 -2 rawpostprocessing.cpp
M +1 -1 rawpostprocessing.h
M +1 -1 rawpreview.cpp
M +1 -1 rawpreview.h
M +1 -1 rawsettingsbox.cpp
M +1 -1 rawsettingsbox.h
--- trunk/extragear/graphics/digikam/utilities/imageeditor/rawimport/rawpostprocessing.cpp #1215911:1215912
@@ -6,7 +6,7 @@
* Date : 2008-13-08
* Description : Raw post processing corrections.
*
- * Copyright (C) 2008-2010 by Gilles Caulier <caulier dot gilles at gmail dot com>
+ * Copyright (C) 2008-2011 by Gilles Caulier <caulier dot gilles at gmail dot com>
*
* This program is free software; you can redistribute it
* and/or modify it under the terms of the GNU General
@@ -40,8 +40,10 @@
{
RawPostProcessing::RawPostProcessing(DImg* orgImage, QObject* parent, const DRawDecoding& settings)
- : DImgThreadedFilter(orgImage, parent, "RawPostProcessing")
+ : DImgThreadedFilter(parent)
{
+ setFilterName("RawPostProcessing");
+ setOriginalImage(*orgImage);
m_customRawSettings = settings;
initFilter();
}
--- trunk/extragear/graphics/digikam/utilities/imageeditor/rawimport/rawpostprocessing.h #1215911:1215912
@@ -6,7 +6,7 @@
* Date : 2008-13-08
* Description : Raw post processing corrections.
*
- * Copyright (C) 2008-2010 by Gilles Caulier <caulier dot gilles at gmail dot com>
+ * Copyright (C) 2008-2011 by Gilles Caulier <caulier dot gilles at gmail dot com>
*
* This program is free software; you can redistribute it
* and/or modify it under the terms of the GNU General
--- trunk/extragear/graphics/digikam/utilities/imageeditor/rawimport/rawpreview.cpp #1215911:1215912
@@ -6,7 +6,7 @@
* Date : 2008-08-04
* Description : RAW postProcessedImg widget.
*
- * Copyright (C) 2008-2010 Gilles Caulier <caulier dot gilles at gmail dot com>
+ * Copyright (C) 2008-2011 Gilles Caulier <caulier dot gilles at gmail dot com>
*
* This program is free software; you can redistribute it
* and/or modify it under the terms of the GNU General
--- trunk/extragear/graphics/digikam/utilities/imageeditor/rawimport/rawpreview.h #1215911:1215912
@@ -6,7 +6,7 @@
* Date : 2008-08-04
* Description : RAW preview widget.
*
- * Copyright (C) 2008-2010 Gilles Caulier <caulier dot gilles at gmail dot com>
+ * Copyright (C) 2008-2011 Gilles Caulier <caulier dot gilles at gmail dot com>
*
* This program is free software; you can redistribute it
* and/or modify it under the terms of the GNU General
--- trunk/extragear/graphics/digikam/utilities/imageeditor/rawimport/rawsettingsbox.cpp #1215911:1215912
@@ -6,7 +6,7 @@
* Date : 2008-08-11
* Description : Raw import settings box
*
- * Copyright (C) 2008-2010 by Gilles Caulier <caulier dot gilles at gmail dot com>
+ * Copyright (C) 2008-2011 by Gilles Caulier <caulier dot gilles at gmail dot com>
*
* This program is free software; you can redistribute it
* and/or modify it under the terms of the GNU General
--- trunk/extragear/graphics/digikam/utilities/imageeditor/rawimport/rawsettingsbox.h #1215911:1215912
@@ -6,7 +6,7 @@
* Date : 2008-08-11
* Description : Raw import settings box
*
- * Copyright (C) 2008-2010 by Gilles Caulier <caulier dot gilles at gmail dot com>
+ * Copyright (C) 2008-2011 by Gilles Caulier <caulier dot gilles at gmail dot com>
*
* This program is free software; you can redistribute it
* and/or modify it under the terms of the GNU General
|