[Digikam-devel] [Bug 127577] raw display too dark and not rotated
Gilles Caulier
caulier.gilles at free.fr
Thu May 18 15:49:40 BST 2006
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=127577
------- Additional Comments From caulier.gilles free fr 2006-05-18 16:49 -------
SVN commit 542179 by cgilles:
digikam from trunk : do not perform auto-rotation with RAW files in editor (dcraw will perform this job automaticly), but only auto-rotate JPEG files.
TODO: check if TIFF/EP files can be procressed likeJPEG here.
CCBUGS: 127577
CCMAIL: digikam-devel kde org
M +3 -1 dimginterface.cpp
--- trunk/extragear/graphics/digikam/utilities/imageeditor/canvas/dimginterface.cpp #542178:542179
@ -390,7 +390,9 @
valRet = false;
}
- if (d->exifOrient)
+ // Raw file are already rotated properlly by dcraw. Only rotate JPEG file.
+ // TODO support TIFF/EP file here like JPEG.
+ if (d->exifOrient && d->image.attribute("format").toString() == QString("JPEG"))
exifRotate(d->filename);
emit signalImageLoaded(d->filename, valRet);
More information about the Digikam-devel
mailing list