Version: 0.7.3-beta2 (using KDE 3.4.89 (>= 20050615), compiled sources) Compiler: gcc version 3.3.5 20050117 (prerelease) (SUSE Linux) OS: Linux (i686) release 2.6.11.4-21.7-smp Hi! IMHO the novice user will not be able to handle / set this correctly without help. EXIF "Rotate"Option should be ON by default. cu
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");