I've read some reports about the translation of Exiv tags to dates, but none of them seems to fit, so I open this new one here for some curiosity I found: I have TIFF images generated via an industrial camera - so no Exiv and such. On the original drive Windows has equal timestamps for "creation" and "modification". When copying those to a network drive windows sets "creation" to the time of copy and leaves "modification" unchanged. Copying to the computer running digiKam this happens again. When digiKam reads those files it obviously uses "modification" as the timestamp to store in Images.modificationDate as well as ImageInformation.creationDate columns. This is OK for me (but also somehow arguable regarding the names), as the creation of the image indeed is not in line with the "creation" timestamp that Windows assigns to the file. If the image is rotated using digiKam Images.modificationDate is updated to the current timestamp (which is fine, too), but also ImageInformation.creationDate is updated during that process to the original files "creation" timestamp (which is the one from copying and has been skipped during the first read of the file). So behavior of using file timestamps for filling the database is not consistent during the whole process. I would have expected the ImageInformation.creationDate value not to be changing at all.
I cannot reproduce the problem by rotating the image in the thumbnail view. It is crucial where they rotate the image. A new file is always created in the Image Editor, with a new creation date. There is a note about this in the settings for rotation. Maik
Rotation took place in the main window/thumbnail view (either within the preview with the icons in the upper left corner or via the menu "Item -> Rotate"). This updates the existing image in place. For reproducing the problem it's important to have a file with "creation" newer than "modification" (due to the mentioned copy process).
Created attachment 138908 [details] Test file I created a simple TIFF file which has: Creation: Montag, 31. Mai 2021, 16:04:20 Modification: Montag, 31. Mai 2021, 16:01:47 It's shown in my digiKam ("Date" of file properties and "Created" in mouseover of thumbnail) with it's modification date (16:01). If I rotate it the file property changes to 16:10 (current time) the mouseover to 16:04.
You need to add the test file to a ZIP file. A current date is set automatically when downloading and saving. Maik
Ok, the time stamp is only restored with JPEG rotation. Maik
Hmm, when rotating TIF images, a completely new image is created. We copy the metadata if available and create new thumbnails, etc. Maik
Git commit 68cf0879fd29bb7e79ab16a825883698e279b23e by Maik Qualmann. Committed on 31/05/2021 at 17:24. Pushed by mqualmann into branch 'master'. better checking of the date stamps M +17 -6 core/libs/database/item/scanner/itemscanner_file.cpp M +12 -6 core/libs/dimg/dimg_fileio.cpp https://invent.kde.org/graphics/digikam/commit/68cf0879fd29bb7e79ab16a825883698e279b23e
The problem is, if the modifications date is older, we use it because we are looking for the oldest date as the creation date. In the case where there is no metadata, should we always use the file creation date? Maik
Git commit 9e7d86b09b062ccc25a2ba75e52fd3143d282b6b by Maik Qualmann. Committed on 31/05/2021 at 18:00. Pushed by mqualmann into branch 'master'. always use the file created date if it is valid FIXED-IN: 7.3.0 M +2 -1 NEWS M +7 -13 core/libs/database/item/scanner/itemscanner_file.cpp M +7 -13 core/libs/dimg/dimg_fileio.cpp https://invent.kde.org/graphics/digikam/commit/9e7d86b09b062ccc25a2ba75e52fd3143d282b6b
Comment on attachment 138908 [details] Test file Obviously my test file was not good also, as I could not force the described behavior with this file (too small?)
Created attachment 138922 [details] New test file with sufficient size and zipped
Further remarks on the Windows situation: - I replaced the test file as the small one did not work as described (Maik found out by himself). Using Linux (with digiKam 7.1 in that case) I see the following behavior: - Copying updates the creation timestamp and leaves modification with its old value (as on Windows) - Rotating the image file does not update creation or modification timestamp at all (in contrast to Windows) So my summary (also answering your earlier question): We should distinguish between database and file properties: - Given the situation that Windows as well as Linux always update creation time when copying files (without changing content) and do not update the modification time IMHO its more useful to prefer modification time over creation time for reading the content of ImageInformation.creationDate (as the content was "created" in the state which is read into dK at modification time). - When rotating the image, content is changed, so an update of file's as well as database modification time makes sense (it's not the very same unmodified file as before), but ImageInformation.creationDate should stay the same (as would an Exiv tag if it existed).
The problem is definitely fixed. digiKam-7.1 is too old to test the behavior. Files copied under digiKam no longer change the creation or modification date in newer digiKam versions. A TIF file rotates with the current git / master version, no longer changes the creation date, tested under Linux and Windows. Maik
I was always referring to copying files outside of digiKam, but I will test with digiKam 7.3 on both systems when its out or with a current appimage build. Many thanks so far!