Summary: | handle EXIF Information-Wizzard missing | ||
---|---|---|---|
Product: | [Applications] digikam | Reporter: | Ferdinand Gassauer <gassauer> |
Component: | Metadata-Exif | Assignee: | Digikam Developers <digikam-bugs-null> |
Status: | RESOLVED FIXED | ||
Severity: | wishlist | ||
Priority: | NOR | ||
Version: | 0.7.3 | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | 0.9.0 | |
Sentry Crash Report: |
Description
Ferdinand Gassauer
2005-06-19 13:47:52 UTC
I don't understand what you mean exactly. Please give me more information about... Gilles Caulier IMHO a lot of users will complain, that pictures are not automagically "rotated", as the "rotate" flag in "embedded info" is "Off" by default. Either this flag should be ON by default or at the first start of digikam, a question should be issued if it should be set to on. its a question of usability. SVN commit 566088 by cgilles: digikam from trunk : like Exif auto-rotation of thumbs/preview/image is an option witch do not change the pictures contents, this can be enable by default. BUG: 107724 M +2 -2 albumsettings.cpp --- trunk/extragear/graphics/digikam/digikam/albumsettings.cpp #566087:566088 @@ -153,7 +153,7 @@ d->iconShowTags = true; d->iconShowRating = true; - d->exifRotate = false; + d->exifRotate = true; d->exifSetOrientation = false; d->saveIptcTags = false; @@ -217,7 +217,7 @@ d->currentTheme = config->readEntry("Theme", i18n("Default")); config->setGroup("EXIF Settings"); - d->exifRotate = config->readBoolEntry("EXIF Rotate", false); + d->exifRotate = config->readBoolEntry("EXIF Rotate", true); d->exifSetOrientation = config->readBoolEntry("EXIF Set Orientation", false); config->setGroup("Metadata Settings"); |