[Bug 115764] New: Modify EXIF creation date

classic Classic list List threaded Threaded
10 messages Options
Reply | Threaded
Open this post in threaded view
|

[Bug 115764] New: Modify EXIF creation date

Bugzilla from delmonico@gmx.net
------- 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=115764         
           Summary: Modify EXIF creation date
           Product: digikam
           Version: 0.7.4
          Platform: unspecified
        OS/Version: Linux
            Status: UNCONFIRMED
          Severity: wishlist
          Priority: NOR
         Component: general
        AssignedTo: digikam-devel kde org
        ReportedBy: delmonico gmx net


Version:           0.7.4 (using KDE KDE 3.4.92)
Installed from:    Unlisted Binary Package

I have some images where the date setting of the camera was wrong by 1 day. Now I would like to use the "Adjust date and time option" to add this day, but it can only modify the file creation date, not the EXIF information... Need to write a shell script for now, but it would be good to this digikam feature enhanced in a new version :) Thanks for this great application! Chris
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel
Reply | Threaded
Open this post in threaded view
|

[Bug 115764] Modify EXIF creation date

Bugzilla from delmonico@gmx.net
------- 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=115764         




------- Additional Comments From delmonico gmx net  2005-11-06 09:50 -------
Just in case someone has the same problem, heres my script using perl-exiftool:

#Usage:$0 old_date new_date file[s]
OLD_DATE=$1
NEW_DATE=$2
echo "Modifying EXIF entrys from $1 to $2..."
shift 2;
for file in $ ; do
»···echo "Modifying $file"
»···echo "    Creating backup file..."
»···cp $file $file.bak
»···ModifyDate=`exiftool -ModifyDate $file | sed s/'Date\/Time Of Last Modification  : '// | sed s/$OLD_DATE/$NEW_DATE/`
»···DateTimeOriginal=`exiftool -DateTimeOriginal $file | sed s/'Shooting Date\/Time              : '// | sed s/$OLD_DATE/$NEW_DATE/`
»···CreationDate=`exiftool -CreateDate $file | sed s/'Date\/Time Of Digitization       : '// | sed s/$OLD_DATE/$NEW_DATE/`
»···echo "    Writing new entry for ModifyDate: $ModifyDate..."
»···exiftool -ModifyDate="$ModifyDate" "$file"
»···echo "    Writing new entry for DateTimeOriginal: $DateTimeOriginal..."
»···exiftool -DateTimeOriginal="$DateTimeOriginal" "$file"
»···echo "    Writing new entry for CreationDate: $CreationDate..."
»···exiftool -CreateDate="$CreationDate" "$file"
done
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel
Reply | Threaded
Open this post in threaded view
|

[Bug 115764] Modify EXIF creation date

Bugzilla from delmonico@gmx.net
In reply to this post by Bugzilla from delmonico@gmx.net
------- 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=115764         




------- Additional Comments From delmonico gmx net  2005-11-06 09:54 -------
Created an attachment (id=13305)
 --> (http://bugs.kde.org/attachment.cgi?id=13305&action=view)
script to modify wrong exif datetime entrys

Fixed one bug in above script and attached instead of paste, sorry.
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel
Reply | Threaded
Open this post in threaded view
|

[Bug 115764] Modify EXIF creation date

Bugzilla from Thomas.McGuire@gmx.net
In reply to this post by Bugzilla from delmonico@gmx.net
------- 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=115764         




------- Additional Comments From Thomas.McGuire gmx net  2005-12-21 16:48 -------
A also would like that functionallity, my camara is very broken and changes dates randomly, I even have pictures from 2026...

The normal adjust date & time function is useless because:
- it does not adjust the EXIF info
- it does not allow to set the date directly, only adding/substracting time periods, which is cumbersome
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel
Reply | Threaded
Open this post in threaded view
|

[Bug 115764] Modify EXIF creation date

Bugzilla from owner@bugs.kde.org
In reply to this post by Bugzilla from delmonico@gmx.net
------- 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=115764         
chkr plauener de changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
      everconfirmed|0                           |1



------- Additional Comments From chkr plauener de  2006-01-02 19:33 -------
*** This bug has been confirmed by popular vote. ***
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel
Reply | Threaded
Open this post in threaded view
|

[Digikam-devel] [Bug 115764] Modify EXIF creation date

Gilles Caulier
In reply to this post by Bugzilla from delmonico@gmx.net
------- 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=115764         




------- Additional Comments From caulier.gilles free fr  2006-03-03 10:59 -------
SVN commit 515268 by cgilles:

digikam from trunk : Metadata support using Exiv2 :

- New image properties sidebar tab named "Metadata" instead old "Exif". This area include :

* Standard Exif tags viewer.
* MarkerNote Exif tags viewer.
* IPTC records viewer.

- New capability to copy metadata in clipboard like text.
- New capability to print metadata.
- Tags name use the "user Friendly" conversion from Exiv2 instead the internal name provided by old Exif viewer based on libkexif.
- Capability to read metadata from CRW files (Canon RAW files)
- New class DMetadata to load/save metadata without loading image data. Actually JPEG, CRW, and PNG files are supported. About PNG (Exif and IPTC raw profiles generated by ImageMagick are supported.

To support new file formats (like NEF, MRW, TIFF, DNG, etc), new image file parsers must be added to Exiv2 library.

IMPORTANT:

- Exiv2 do not support yet gettext for i18n rules. All informations in metadata viewers aren't yet i18n (tags name, tags values, and tags descriptions)
- Any tag names use internal Exiv2 name, not the user friendly text transformations. This point must be fixed in Exiv2 libs.

To 0.9.0, these tools are just metadata readers. Writting capabilities (metadata editors) will added later 0.9.0. The files in B.K.O directly or indirectly relevant of this commits are listed below :

*Pending:

103255
106103
115764
111560

*Partially fixed:

91812
96459
109253
110598
118501        

* To check before closing:

122264

* Fixed (can be closed):

103489
121371
105670
109319

CCMAIL: digikam-devel kde org,  Andreas Huggel <ahuggel gmx net>

CCBUGS: 103255, 106103, 115764, 111560, 91812, 96459, 109253, 110598, 118501, 122264, 103489, 121371, 105670, 109319


 M  +2 -1      libs/Makefile.am  
 M  +5 -4      libs/dimg/Makefile.am  
 M  +1 -1      libs/dimg/dimg.cpp  
 M  +1 -1      libs/dimg/dimg.h  
 M  +19 -1     libs/dimg/dimgloader.cpp  
 M  +4 -2      libs/dimg/dimgloader.h  
 M  +4 -61     libs/dimg/loaders/jpegloader.cpp  
 M  +5 -29     libs/dimg/loaders/pngloader.cpp  
 M  +2 -1      libs/dimg/loaders/rawloader.cpp  
 A             libs/dmetadata (directory)  
 A             libs/dmetadata/Makefile.am  
 A             libs/dmetadata/dmetadata.cpp   [License: GPL]
 A             libs/dmetadata/dmetadata.h   [License: GPL]
 A             libs/dmetadata/loaders (directory)  
 A             libs/dmetadata/loaders/Makefile.am  
 A             libs/dmetadata/loaders/dmetaloader.cpp   [License: GPL]
 A             libs/dmetadata/loaders/dmetaloader.h   [License: GPL]
 A             libs/dmetadata/loaders/jpegmetaloader.cpp   [License: GPL]
 A             libs/dmetadata/loaders/jpegmetaloader.h   [License: GPL]
 A             libs/dmetadata/loaders/pngmetaloader.cpp   [License: GPL]
 A             libs/dmetadata/loaders/pngmetaloader.h   [License: GPL]
 A             libs/dmetadata/loaders/rawmetaloader.cpp   [License: GPL]
 A             libs/dmetadata/loaders/rawmetaloader.h   [License: GPL]
 A             libs/dmetadata/loaders/tiffmetaloader.cpp   [License: GPL]
 A             libs/dmetadata/loaders/tiffmetaloader.h   [License: GPL]
 M  +3 -2      libs/imageproperties/Makefile.am  
 M  +82 -323   libs/imageproperties/imagepropertiesexiftab.cpp  
 M  +12 -25    libs/imageproperties/imagepropertiesexiftab.h  
 M  +19 -18    libs/imageproperties/imagepropertiessidebar.cpp  
 M  +10 -9     libs/imageproperties/imagepropertiessidebar.h  
 M  +27 -26    libs/imageproperties/imagepropertiessidebarcamgui.cpp  
 M  +2 -1      libs/imageproperties/imagepropertiessidebarcamgui.h  
 M  +16 -15    libs/imageproperties/imagepropertiessidebardb.cpp  
 M  +3 -1      libs/widgets/Makefile.am  
 A             libs/widgets/metadata (directory)  
 A             libs/widgets/metadata/Makefile.am  
 A             libs/widgets/metadata/exifwidget.cpp   [License: GPL]
 A             libs/widgets/metadata/exifwidget.h   [License: GPL]
 A             libs/widgets/metadata/iptcwidget.cpp   [License: GPL]
 A             libs/widgets/metadata/iptcwidget.h   [License: GPL]
 A             libs/widgets/metadata/makernotewidget.cpp   [License: GPL]
 A             libs/widgets/metadata/makernotewidget.h   [License: GPL]
 A             libs/widgets/metadata/mdkeylistviewitem.cpp   [License: GPL]
 A             libs/widgets/metadata/mdkeylistviewitem.h   [License: GPL]
 A             libs/widgets/metadata/metadatalistview.cpp   [License: GPL]
 A             libs/widgets/metadata/metadatalistview.h   [License: GPL]
 A             libs/widgets/metadata/metadatalistviewitem.cpp   [License: GPL]
 A             libs/widgets/metadata/metadatalistviewitem.h   [License: GPL]
 A             libs/widgets/metadata/metadatawidget.cpp   [License: GPL]
 A             libs/widgets/metadata/metadatawidget.h   [License: GPL]
 M  +24 -1     utilities/cameragui/cameraui.cpp
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel
Reply | Threaded
Open this post in threaded view
|

[Digikam-devel] [Bug 115764] Modify EXIF creation date

Gilles Caulier
In reply to this post by Bugzilla from delmonico@gmx.net
------- 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=115764         




------- Additional Comments From caulier.gilles free fr  2006-04-03 16:01 -------
SVN commit 525972 by cgilles:

digikam from trunk : Camera GUI :

- new option to set Date&Time Exif Tags on the fly during download if camera don't set it when pictures are taken.
- new options to set IPTC photographers identity on the fly using digiKam metadata setup.

CCMAIL: digikam-devel kde org
CCBUGS: 103255, 121306, 115764


 M  +4 -2      TODO  
 M  +55 -24    utilities/cameragui/cameracontroller.cpp  
 M  +7 -3      utilities/cameragui/cameracontroller.h  
 M  +78 -27    utilities/cameragui/cameraui.cpp
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel
Reply | Threaded
Open this post in threaded view
|

[Digikam-devel] [Bug 115764] Modify EXIF creation date

Gilles Caulier
In reply to this post by Bugzilla from delmonico@gmx.net
------- 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=115764         
caulier.gilles free fr changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED



------- Additional Comments From caulier.gilles free fr  2006-04-03 16:04 -------
This features is now implemented. I close this file...

Gilles Caulier
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel
Reply | Threaded
Open this post in threaded view
|

[Bug 115764] Modify EXIF creation date

Bugzilla from mkosmul@users.sourceforge.net
In reply to this post by Bugzilla from delmonico@gmx.net
------- 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=115764         




------- Additional Comments From mkosmul users sourceforge net  2007-08-16 21:44 -------
As of digikam 0.9.2, editing the date using the side panel or using the 'Adjust Date & Time' option seems to only change some date (which affects sorting) but not the exif date or file date. After the date is changed, sorting order is affected but the creation and mnodification date shown in the tooltips in digikam and in the metadata preview in konqueror seem to not be changed.
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel
Reply | Threaded
Open this post in threaded view
|

[Bug 115764] Modify EXIF creation date

Bugzilla from pave@o2.pl
In reply to this post by Bugzilla from delmonico@gmx.net
------- 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=115764         




------- Additional Comments From pave o2 pl  2007-08-17 12:14 -------
I confirm that the behavior Michał mentioned has been confusing for me as well. The "Adjust Date & Time" option changes only dates in digiKam's database and (based on selected checkbox) the "general" exif date, which is often modified by various programs, so it is not useful for sorting purposes anyway (I mean sorting outside digiKam). Recently I found out that by following the date change operation by "Synchronize images with database" it is possible to change the exif "Date and Time (original)" field as well.
I would love to have this option available directly when updating date & time (possibly by another checkbox). Should I file a wish on b.k.o. or is this behavior "by design"?
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel