[Digikam-devel] [Bug 134486] New: Keywords are not written to raw files even though they do embed iptc/exif

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

[Digikam-devel] [Bug 134486] New: Keywords are not written to raw files even though they do embed iptc/exif

Peter Jakobs
------- 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=134486         
           Summary: Keywords are not written to raw files even though they
                    do embed iptc/exif
           Product: digikam
           Version: 0.9.0-beta2
          Platform: SuSE RPMs
        OS/Version: Linux
            Status: UNCONFIRMED
          Severity: normal
          Priority: NOR
         Component: general
        AssignedTo: digikam-devel kde org
        ReportedBy: pjakobs novell com


Version:           0.9.0-beta2 (using KDE KDE 3.4.2)
Installed from:    SuSE RPMs
OS:                Linux

metadata info is not written into raw image files even if the format (like Canon raw .cr2) does support both exif and iptc. This is pretty annoying as it basically means that digikam cannot be the first tool in the workflow (which would be download->tag(digikam)->raw convert->postprocess->publish). As the raw converter would keep any exif/iptc information, the tagging would be ok for the whole chain if it was written to the original raw file. Right now, I have to come back to the converted images and tag them again.
_______________________________________________
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 134486] Keywords are not written to raw files even though they do embed iptc/exif

Gilles Caulier
------- 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=134486         
caulier.gilles free fr changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|general                     |Tags



------- Additional Comments From caulier.gilles free fr  2006-09-22 07:48 -------
This is currently a limitation on Exiv2 library, witch manage metadata workflow. Actually Exiv25 can only write on JPEG file. Normally, next release will support writting for PNG, and TIFF/RAW.

Gilles Caulier
_______________________________________________
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 134486] Keywords are not written to raw files even though they do embed iptc/exif

Bugzilla from owner@bugs.kde.org
In reply to this post by Peter Jakobs
------- 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=134486         




------- Additional Comments From caulier.gilles free fr  2006-09-22 08:08 -------
*** Bug 134487 has been marked as a duplicate of this bug. ***
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel
Reply | Threaded
Open this post in threaded view
|

[Bug 134486] Keywords are not written to raw files even though they do embed iptc/exif

piotr_tarnowski
In reply to this post by Peter Jakobs
------- 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=134486         




------- Additional Comments From piotr_tarnowski wp pl  2007-11-02 23:41 -------
Created an attachment (id=21986)
 --> (http://bugs.kde.org/attachment.cgi?id=21986&action=view)
Temporary solution for storing iptc and exif in alternate file

provied patch (for 0.9.2-final) uses alternate jpg files to store iptc and exif
data when storing in original file is not supported. I wrote it because I need
to preserve this information for TIFF files but it can also be useful in
another case: like readonly filesystem, readonly image or even metadata
(keywords, comments rating) shared by more than one image. The location of
alternate image is defined in file named ".digikam.alt.txt" (or
"digikam.alt.txt") which is searched in album's directory and all directories
above: Here is sample content of this file:
-----------------
# comment
map .*[.]jpg
map (.*)/([^/]+) .$1/$2.alt.jpg
break
next
-----------------

# - comment line
map fromRegExp to - defines transformation of original path to path of
alternate file
map skipRegExp - matched files do not have alternate files
next - do to dir up ignoring rest of this file
break - stop searching

The rule is that first match wins.
When writing if alternate file is present it is used, if not present first
attempt is made to write to original file and if this fails to alternate

When reading if alternate file is present it is used otherwise original file is
read.

I know it should be implemented in kexiv2 and I'm going to do so (so that kipi
plugins can use this).
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel
Reply | Threaded
Open this post in threaded view
|

[Bug 134486] Keywords are not written to raw files even though they do embed iptc/exif

piotr_tarnowski
In reply to this post by Peter Jakobs
------- 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=134486         




------- Additional Comments From piotr_tarnowski wp pl  2007-11-03 00:50 -------
Mistake, should be:
map (.*)/([^/]+) $1/.$2.alt.jpg

example: /2007/2007-01/x.tiff =>  /2007/2007-01/.x.tiff.alt.jpg
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel
Reply | Threaded
Open this post in threaded view
|

[Bug 134486] Keywords are not written to raw files even though they do embed iptc/exif

Gilles Caulier-4
In reply to this post by Peter Jakobs
------- 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=134486         




------- Additional Comments From caulier.gilles gmail com  2007-11-03 09:00 -------
Piotr,

You re-invent the sidecar file (:=)))...

This must be done using a standardized way : XMP.

Why ? To support interoperability between others photomanagement program.

Read the XMP spec page 36 :

http://www.adobe.com/devnet/xmp/pdfs/xmp_specification.pdf

digiKam 0.10.0 (KDE4 support XMP). Only this way must be used.

Note : be patient. Exiv2 tiff write support will be the next major feature implemented (after Exiv2 0.16 release planed in december 2007)

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 134486] Keywords are not written to raw files even though they do embed iptc/exif

Gilles Caulier-4
In reply to this post by Peter Jakobs
------- 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=134486         
caulier.gilles gmail com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|Tags                        |RAW files management
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel