Lighroom 3 writing metadata to image files?

Hi,
I have been wondering why my backups (differential) weregetting larger than they should, and I noticed that some of the files (.psd and .jpg, and mayde few .tiff) were modified. Interestingly, I do not see this happening to cr2-files, that I mostly use. After trying to figure out what's going on I noticed that corresponding xmp-files were modified also. This is not the issue due to their small size, but still I had not edited images that were changed for quite a while.
Change that I see in xmp-files is rather large, and presumably related to Adobe's change in xmp-data structure. Eg.
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c007 1.136881, 2010/06/10-18:11:35   
">
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 4.2-c020 1.124078, Tue Sep 11 2007 23:21:40   
">
In addition to the sample above, whole xmp structure is changed. So I presume that maybe LR is writing metadata chages to xmp in the background?
What I find disturbing is that when checking changed jpg files, I saw the similar data written into the jpg files also (files were created with oldish Canon 20D, and not edited for quite a while). These are examples from changed jpg-files (not the same from which the abone xmp-data change was taken, but similar change is visible in the corresponding XMP):
Also jpg-file from offset 0x04 was changed from "50 60" to "51 18". Also offset 0x10 was changed (16 bits).
I have Lightroom configuration option "Include develope settings in Metadata Inside JPEG, TIFF and PSD Files" not selected. The option "Automatically write changes to XMP" is selected. To my understanding neither of these should not have impact to the issue. Is there something else I should check?
Change is made most likely by Lightroom 3.5 version, and has not occurred with previous versions. I have not notices this happening with 3.6, but I have been using it only few weeks. Is this known issue with previous version 3.5, or am I missing something obvious?
System running is Windows 7 pro 64bit. I have not have any issues with LR lately, except crashes that I white about a week ago.
Any advice on what's going on?

So I was missing something. Thank you Hal.
I had not realised that XMP goes inside of actual image files with those file types. Obviously my new backup routine spotted that, as I was on backuping only modified/new files.
I would much prefer that also with above mentioned file types XMP-data would be stored in sidecar files instead of modifying the original file. To support this there are two arguments that I think are valid:
1) modification of the file is always risky (and spesifically, with image originals I prefer to avoid that),
2) modification leads to the fact that "smarter" backup strategies relying on "full backup" supported with differential or incremental backups lead to unnecessary long backuptimes and media consumption.
That said, I prefer to have XMP-data also outside of the catalog so that other tools can also utilise it  (further, in addition to the catalog with sidecars I have sort of failover approach, and some of you may now say "belt and syspenders" after mentioning backups...).
Is there a way to have all file types to utilise sidecars rather that modifying original file?

Similar Messages

  • Writing metadata to media-file

    Hello everybody,
    I'm developing an application for viewing/editing metadata of media files (mainly MP3). Therefore I'm using JavaFX 2.2.
    Viewing works like a charm, but I'm currently stuck at the editing part.
    I've tried media.getmetadata().put("string", object) but this throws only an UnsupportedOperationException.
    Am I doing anything wrong? Or is there any other way writing metadata to media files without using external libraries?
    Thank you in advance

    is there any other way writing metadata to media files without using external libraries? No.
    JavaFX media libraries are currently only support playback and not editing (even for metadata).

  • Error writing metadata to any file except jpegs

    Hi all,
    A coworker and I have been assigned the job of keywording all the photos in our database. We aren't photographers and are only messing with the keyword metadata on the photos.
    But we've been having a consistent problem with Bridge CS4. When I attempt to add keywords to any file format except jpeg, it gives me an error message "Error writing metadata to " and the filename. Then to make matters even worse, Bridge continues trying to add the metadata to the same images over and over again until I do a forced shutdown.
    We're running Bridge on a network with exported cache. The only thing I have found as a possible solution is a permissions setting problem, but I can't find any way to check on that.
    Any help you can offer would be great. Thanks!

    I had this same problem. This was the solution for me in my CS4.
    Go to Bridge
    Go to Preferences
    Go to Metadata
    Make sure IPTC and Keywords are checked.
    This will allow you to add keywords to your metadata in bridge.
    Here it is not checked:
    Here it is checked:

  • Error writing metadata to photo files

    I am using CS6 and have moved to a new computer with a clean install of CS6 under Windows 8.1.  In the past I had no problem using Bridge to append my personal metadata file to photos (RAW files, NEF).  With the new installation I am getting the repeated message " Error writing data to...."  even after trying all the " fixes"  suggested by the help files.
    Can anyone help me to resolve this issue?
    Thanks.

    I found an answer, somewhat different.  I did more search and found that you need to be administrator and for Adobe to see you as administrator, for many functions to work, such as writing metadata to files or putting stars on photos to rank them.  I could do neither.
    THEN, I tried opening Bridge by right clicking on the icon, and opening the file as administrator (a choice).  Everything worked.  So, why was Adobe not seeing me as administrator.  My user account was the only account on the computer and has administrator privileges.
    I started doing searches on that, and stumbled, yes stumbled, on what I think is a solution to that situation.
    I set up my account so that I needed a password to log in.  Once I did that, Bridge worked fine.  But, I still did not want that additional startup step.  You can then back to change password and leave the password entries blank.  Then, the computer starts up with blank passwords, zips past the welcome screen directly to the desktop, and Windows now sees me as the administrator, and so does Adobe.
    Keep you fingers crossed folks, this seems to be working.

  • Cannot write exif and tiff metadata in image file

    Hi,
    I have a public XMP text file containing exif and tiff metadata: http://ns.adobe.com/exif/1.0/ and http://ns.adobe.com/tiff/1.0/.
    I want to write these XMP data in an image file and it doesn't work. I don't get any exceptions, just the metadata are missing in the image file.
    C#
    using (var xmpFiles = new XmpFiles())
          if (!xmpFiles.OpenFile("test.jpg", handler.FileFormat, OpenFlags.OpenForUpdate))
              xmpFiles.OpenFile("test.jpg", FileFormat.Unknown, OpenFlags.OpenUsePacketScanning | OpenFlags.OpenForUpdate);
         using (var xmpCore = new XmpCore())
              xmpCore.ParseFromBuffer(xmpPublic.ToString(), ParseFlags.None);
              if (xmpFiles.CanPutXmp(xmpCore))
                   xmpFiles.PutXmp(xmpCore);
         xmpFiles.CloseFile(CloseFlags.None);
    Public XMP:
    <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
      <rdf:Description xmlns:_ns_2="http://ns.adobe.com/tiff/1.0/" rdf:about="">
        <_ns_2:ImageLength>4252</_ns_2:ImageLength>
      </rdf:Description>
      <rdf:Description xmlns:_ns_3="http://ns.adobe.com/exif/1.0/" rdf:about="">
        <_ns_3:ApertureValue>8/1</_ns_3:ApertureValue>
      </rdf:Description>
    </rdf:RDF>
    Result XMP in image file:
    <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
      <rdf:Description rdf:about=""/>
    </rdf:RDF>
    Does anyone can help with that problem?
    Thanks,
    Alexandra

    I found the answer by myself.
    According to the last guidelines from metadata working group, exif and tiff data should not be saved as XMP data in jpeg images anylonger because jpeg natively supports exif data.
    "The most recent (as of mid-2010) XMP specification describes the usage of Exif/TIFF properties within XMP itself. Both Exif ( http://ns.adobe.com/exif/1.0/) and TIFF ( http://ns.adobe.com/tiff/1.0/) namespaces have been defined so that corresponding Exif properties can be stored. This is particularly useful if Exif properties need to be stored but the file format does not support native Exif (e.g. PNG). [...]However, this document changes this earlier XMP guidance and recommends that Exif and Tiff device properties only be mapped into XMP in the case the file format does not support Exif natively."
    See http://www.metadataworkinggroup.org/specs

  • Bridge CS3 not writing metadata to JPEG files

    For the last couple of months (without my noticing until a couple days ago) all JPEG files that I have edited using Bridge CS3 (on Windows XP) do not have the metadata built into the file. Here are the symptoms: use "File Info" to edit the metadata for a JPEG file (i.e. add a title, description, copyright info, etc.), all appears normal, but if you do any of the following, the metadata you entered disappears:
    - duplicate (the metadata does not exist in the duplicate file)
    - move or copy to another folder
    - open in Photoshop or any other software that can read metadata (File Info shows none of the metadata you entered)
    - rebuild the cache for the folder
    Strangely, the metadata still appears with the file when you look at it in Bridge as long as you don't do any of the above.
    This is really awful as I've put a lot of time into entering this metadata for hundreds of files. Older files (pre-Nov 08) don't have this problem and the metadata is "sticky" and doesn't get deleted. So, somehow my Bridge CS3 got corrupted along the way.
    Has anyone experienced this and more importantly -- do you have a solution? I've tried reseting all Bridge settings (but that of course purged the cache and deleted all my metadata.)

    Hey,
    There are various date/time fields shown in properties panel in Organizer. The dates mentioned in general section are read from OS whereas the dates in EXIF field are read from image's EXIF data. In EXIF data there are three date/time fields-
    1. Date time- This date/time info shows date modified of EXIF properties. So when you are writing a tag into imags's IPTC, you are doing some change in EXIF data. Hence this date should change to date when you are writing a tag into IPTC.
    2. Date time original - Represents date time when a image was shoot.
    3. Date digitized - Represents the date when the image was digitized (in digital camers there is hardly some delay between an image is shoot and it is digitized. So this field is always same as date original).
    So, in your scenario, Date time in EXIF should change whenever you are writing any tag into its IPTC.
    Please let me know if you need more info on it.
    ~Andromeda

  • Is there a way to extract an image file metadata?

    I know this isn't specific to PS but hope there's an answer here.
    I'm transcribing some of the metadata from image files to build a simple catalog.  Included are things like dimensions, resolution, and photo date.  Is there a way to extract this data other than manually?
    Thanks
    Tom

    A Photoshop script can with ease.
    // This script is supplied as is. It is provided as freeware.
    // The author accepts no liability for any problems arising from its use.
    <javascriptresource>
    <about>$$$/JavaScripts/metadata/About=JJMack's pdf metadata.^r^rCopyright 2009 Mouseprints.^r^rJJMack's Script.^rNOTE:Copy Document metadata to a text file in same folder with same filename!</about>
    </javascriptresource>
    //<category>JJMack's Script</category>
    // enable double-clicking from Mac Finder or Windows Explorer
    #target photoshop // this command only works in Photoshop CS2 and higher
    // bring application forward for double-click events
    app.bringToFront();
    // ensure at least one document open
    if (!documents.length) {
              alert('There are no documents open.', 'No Document');
    // if at least one document exists, then proceed
    else {
              main();
    // main - main function
    function main() {
              try {
                      // remember users Ruler avd Type Units and set ours
                        var strtRulerUnits = app.preferences.rulerUnits;
                        var strtTypeUnits = app.preferences.typeUnits;
                        app.preferences.rulerUnits = Units.PIXELS;
                         app.preferences.typeUnits = TypeUnits.PIXELS;
                        xml = app.activeDocument.xmpMetadata.rawData;
                    //writeTXT(xml);
                        //alert ("length of metadata = " + xml.length);
                        //alert (xml);
                        xmpdatastart = xml.indexOf("<x:xmpmeta");
                        xmpdataend = xml.indexOf("</x:xmpmeta>") +  "</x:xmpmeta>".length;
                        //alert ("xmpdatastart = " + xmpdatastart + " xmpdatalength = " + xmpdatalength );
                        xmpdata = xml.substr(xmpdatastart, xmpdataend );
                        writeTXT(xmpdata);
                        var mySourceFilePath = activeDocument.fullName.path + "/";
                        alert("Operation Complete! Metadata exported to: " + mySourceFilePath.toString().match(/([^\.]+)/)[1] + app.activeDocument.name.match(/([^\.]+)/)[1] + ".txt");
                        // break up into segments and make text layers
                        n = 1
                        for (var i = 0; i < xmpdataend - xmpdatastart; ){
                                  datalength = xmpdata.indexOf("</rdf:Description>") +  "</rdf:Description>".length;
                                  //alert ("datalength = " + datalength );
                                  if (datalength == 17) { datalength = 34;}
                                  data = xmpdata.substr(0, datalength);
                                  endofdata = xmpdata.indexOf("</x:xmpmeta>") +  "</x:xmpmeta>".length;
                                  xmpdata = xmpdata.substr(datalength, endofdata);
                                  i = i + datalength;
                                  // addTextLayer(data, n);
                                    alert (data);
                                  n = n + 1;
                        app.preferences.rulerUnits = strtRulerUnits;
                        app.preferences.typeUnits = strtTypeUnits;
              // display error message if something goes wrong
              catch(e) { alert(e + ': on line ' + e.line, 'Script Error', true); }
    function addTextLayer(textdata, n) {
            /* textX and TextY positions text placement 0 and 0 Top Left corner of image in pixels          */
              var textX = 0;
              var textY = 0;
              /* Internal Photoshop Text font name                                                                      */
            var fontName = "ArialMT";
              var fontName = "TimesNewRomanPSMT";
              //var fontName = "Tahoma";
              var fontSize = 6;
              /* Text Color                                                                                                    */
              textColor = new SolidColor;
              textColor.rgb.red = 255;
              textColor.rgb.green = 255;
              textColor.rgb.blue = 255;
              text_layer = app.activeDocument.artLayers.add();                                        // Add a Layer
              text_layer.kind = LayerKind.TEXT;                                                            // Make Layer a Text Layer
              text_layer.textItem.color = textColor;                                                            // set text layer color
              text_layer.blendMode = BlendMode.NORMAL                                                            // blend mode
              text_layer.textItem.font = fontName;                                                            // set text font
              text_layer.textItem.size = fontSize;                                                            // set text font Size
              text_layer.textItem.position = Array(textX, (textY + (fontSize * 3)) );                    // set text layers position in and down for fontsize
              //text_layer.textItem.position = Array(textX, (textY + (fontSize * 3 * n)) );          // set text layers position in and down for fontsize
              text_layer.textItem.contents = textdata;                                                  // set text layers text
    // Write TXT file
        function writeTXT(data) {
              // Use this to export metadata file to same directory where this file is located
              var mySourceFilePath = activeDocument.fullName.path + "/";
              // create a reference to a file for output
              var TXTFile = new File(mySourceFilePath.toString().match(/([^\.]+)/)[1] + app.activeDocument.name.match(/([^\.]+)/)[1] + ".txt");
            try {
                if(TXTFile.exists) {
                    TXTFile.open ("e");
                    TXTFile.seek (0,2);      // Move to EOF
                } else {
                TXTFile.open ("w");          // Add unicode marker if we change to XML file format for this log file
            TXTFile.encoding = "UTF8";       // set UTF8
            TXTFile.write(data);
            TXTFile.close();
            } catch (e) {
                alert(e);
            } finally {
            return;
    Outputs an XML file that looks like this:
    <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        ">
       <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
          <rdf:Description rdf:about=""
                xmlns:dc="http://purl.org/dc/elements/1.1/">
             <dc:format>image/tiff</dc:format>
             <dc:creator>
                <rdf:Seq>
                   <rdf:li>Pam McAssey</rdf:li>
                </rdf:Seq>
             </dc:creator>
          </rdf:Description>
          <rdf:Description rdf:about=""
                xmlns:aux="http://ns.adobe.com/exif/1.0/aux/">
             <aux:SerialNumber>720600641</aux:SerialNumber>
             <aux:LensInfo>24/1 70/1 0/0 0/0</aux:LensInfo>
             <aux:Lens>EF24-70mm f/2.8L USM</aux:Lens>
             <aux:LensID>230</aux:LensID>
             <aux:ImageNumber>0</aux:ImageNumber>
             <aux:ApproximateFocusDistance>122/100</aux:ApproximateFocusDistance>
             <aux:FlashCompensation>0/1</aux:FlashCompensation>
             <aux:Firmware>1.0.6</aux:Firmware>
          </rdf:Description>
          <rdf:Description rdf:about=""
                xmlns:xmp="http://ns.adobe.com/xap/1.0/">
             <xmp:ModifyDate>2012-12-19T11:23:49-05:00</xmp:ModifyDate>
             <xmp:CreateDate>2012-12-16T17:11:53</xmp:CreateDate>
             <xmp:Rating>0</xmp:Rating>
             <xmp:MetadataDate>2012-12-19T11:23:49-05:00</xmp:MetadataDate>
          </rdf:Description>
          <rdf:Description rdf:about=""
                xmlns:photoshop="http://ns.adobe.com/photoshop/1.0/">
             <photoshop:DateCreated>2012-12-16T17:11:53</photoshop:DateCreated>
             <photoshop:ColorMode>3</photoshop:ColorMode>
             <photoshop:ICCProfile>ProPhoto RGB</photoshop:ICCProfile>
          </rdf:Description>
          <rdf:Description rdf:about=""
                xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
                xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#"
                xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#">
             <xmpMM:DocumentID>xmp.did:b13179a4-0983-a649-a532-0d90ea6feea5</xmpMM:DocumentID>
             <xmpMM:OriginalDocumentID>E634097DE11761C5824C1873DDBDEDDD</xmpMM:OriginalDocumentID>
             <xmpMM:InstanceID>xmp.iid:b13179a4-0983-a649-a532-0d90ea6feea5</xmpMM:InstanceID>
             <xmpMM:History>
                <rdf:Seq>
                   <rdf:li rdf:parseType="Resource">
                      <stEvt:action>saved</stEvt:action>
                      <stEvt:instanceID>xmp.iid:9d0e25ce-f732-d74a-9631-086fc6151324</stEvt:instanceID>
                      <stEvt:when>2012-12-16T16:11:44-05:00</stEvt:when>
                      <stEvt:softwareAgent>Adobe Photoshop Camera Raw 7.3 (Windows)</stEvt:softwareAgent>
                      <stEvt:changed>/metadata</stEvt:changed>
                   </rdf:li>
                   <rdf:li rdf:parseType="Resource">
                      <stEvt:action>saved</stEvt:action>
                      <stEvt:instanceID>xmp.iid:0816d1f7-2bb5-e344-806a-6da92a4c8540</stEvt:instanceID>
                      <stEvt:when>2012-12-16T16:13:18-05:00</stEvt:when>
                      <stEvt:softwareAgent>Adobe Photoshop Camera Raw 7.3 (Windows)</stEvt:softwareAgent>
                      <stEvt:changed>/metadata</stEvt:changed>
                   </rdf:li>
                   <rdf:li rdf:parseType="Resource">
                      <stEvt:action>derived</stEvt:action>
                      <stEvt:parameters>converted from image/x-canon-cr2 to image/tiff</stEvt:parameters>
                   </rdf:li>
                   <rdf:li rdf:parseType="Resource">
                      <stEvt:action>saved</stEvt:action>
                      <stEvt:instanceID>xmp.iid:b13179a4-0983-a649-a532-0d90ea6feea5</stEvt:instanceID>
                      <stEvt:when>2012-12-19T11:23:49-05:00</stEvt:when>
                      <stEvt:softwareAgent>Adobe Photoshop Camera Raw 7.3 (Windows)</stEvt:softwareAgent>
                      <stEvt:changed>/</stEvt:changed>
                   </rdf:li>
                </rdf:Seq>
             </xmpMM:History>
             <xmpMM:DerivedFrom rdf:parseType="Resource">
                <stRef:instanceID>xmp.iid:0816d1f7-2bb5-e344-806a-6da92a4c8540</stRef:instanceID>
                <stRef:documentID>E634097DE11761C5824C1873DDBDEDDD</stRef:documentID>
                <stRef:originalDocumentID>E634097DE11761C5824C1873DDBDEDDD</stRef:originalDocumentID>
             </xmpMM:DerivedFrom>
          </rdf:Description>
          <rdf:Description rdf:about=""
                xmlns:crs="http://ns.adobe.com/camera-raw-settings/1.0/">
             <crs:RawFileName>_S1H4635.CR2</crs:RawFileName>
             <crs:Version>7.3</crs:Version>
             <crs:ProcessVersion>6.7</crs:ProcessVersion>
             <crs:WhiteBalance>As Shot</crs:WhiteBalance>
             <crs:Temperature>5950</crs:Temperature>
             <crs:Tint>+46</crs:Tint>
             <crs:Saturation>0</crs:Saturation>
             <crs:Sharpness>25</crs:Sharpness>
             <crs:LuminanceSmoothing>0</crs:LuminanceSmoothing>
             <crs:ColorNoiseReduction>25</crs:ColorNoiseReduction>
             <crs:VignetteAmount>0</crs:VignetteAmount>
             <crs:ShadowTint>0</crs:ShadowTint>
             <crs:RedHue>0</crs:RedHue>
             <crs:RedSaturation>0</crs:RedSaturation>
             <crs:GreenHue>0</crs:GreenHue>
             <crs:GreenSaturation>0</crs:GreenSaturation>
             <crs:BlueHue>0</crs:BlueHue>
             <crs:BlueSaturation>0</crs:BlueSaturation>
             <crs:Vibrance>0</crs:Vibrance>
             <crs:HueAdjustmentRed>0</crs:HueAdjustmentRed>
             <crs:HueAdjustmentOrange>0</crs:HueAdjustmentOrange>
             <crs:HueAdjustmentYellow>0</crs:HueAdjustmentYellow>
             <crs:HueAdjustmentGreen>0</crs:HueAdjustmentGreen>
             <crs:HueAdjustmentAqua>0</crs:HueAdjustmentAqua>
             <crs:HueAdjustmentBlue>0</crs:HueAdjustmentBlue>
             <crs:HueAdjustmentPurple>0</crs:HueAdjustmentPurple>
             <crs:HueAdjustmentMagenta>0</crs:HueAdjustmentMagenta>
             <crs:SaturationAdjustmentRed>0</crs:SaturationAdjustmentRed>
             <crs:SaturationAdjustmentOrange>0</crs:SaturationAdjustmentOrange>
             <crs:SaturationAdjustmentYellow>0</crs:SaturationAdjustmentYellow>
             <crs:SaturationAdjustmentGreen>0</crs:SaturationAdjustmentGreen>
             <crs:SaturationAdjustmentAqua>0</crs:SaturationAdjustmentAqua>
             <crs:SaturationAdjustmentBlue>0</crs:SaturationAdjustmentBlue>
             <crs:SaturationAdjustmentPurple>0</crs:SaturationAdjustmentPurple>
             <crs:SaturationAdjustmentMagenta>0</crs:SaturationAdjustmentMagenta>
             <crs:LuminanceAdjustmentRed>0</crs:LuminanceAdjustmentRed>
             <crs:LuminanceAdjustmentOrange>0</crs:LuminanceAdjustmentOrange>
             <crs:LuminanceAdjustmentYellow>0</crs:LuminanceAdjustmentYellow>
             <crs:LuminanceAdjustmentGreen>0</crs:LuminanceAdjustmentGreen>
             <crs:LuminanceAdjustmentAqua>0</crs:LuminanceAdjustmentAqua>
             <crs:LuminanceAdjustmentBlue>0</crs:LuminanceAdjustmentBlue>
             <crs:LuminanceAdjustmentPurple>0</crs:LuminanceAdjustmentPurple>
             <crs:LuminanceAdjustmentMagenta>0</crs:LuminanceAdjustmentMagenta>
             <crs:SplitToningShadowHue>0</crs:SplitToningShadowHue>
             <crs:SplitToningShadowSaturation>0</crs:SplitToningShadowSaturation>
             <crs:SplitToningHighlightHue>0</crs:SplitToningHighlightHue>
             <crs:SplitToningHighlightSaturation>0</crs:SplitToningHighlightSaturation>
             <crs:SplitToningBalance>0</crs:SplitToningBalance>
             <crs:ParametricShadows>0</crs:ParametricShadows>
             <crs:ParametricDarks>0</crs:ParametricDarks>
             <crs:ParametricLights>0</crs:ParametricLights>
             <crs:ParametricHighlights>0</crs:ParametricHighlights>
             <crs:ParametricShadowSplit>25</crs:ParametricShadowSplit>
             <crs:ParametricMidtoneSplit>50</crs:ParametricMidtoneSplit>
             <crs:ParametricHighlightSplit>75</crs:ParametricHighlightSplit>
             <crs:SharpenRadius>+1.0</crs:SharpenRadius>
             <crs:SharpenDetail>25</crs:SharpenDetail>
             <crs:SharpenEdgeMasking>0</crs:SharpenEdgeMasking>
             <crs:PostCropVignetteAmount>0</crs:PostCropVignetteAmount>
             <crs:GrainAmount>0</crs:GrainAmount>
             <crs:ColorNoiseReductionDetail>50</crs:ColorNoiseReductionDetail>
             <crs:LensProfileEnable>0</crs:LensProfileEnable>
             <crs:LensManualDistortionAmount>0</crs:LensManualDistortionAmount>
             <crs:PerspectiveVertical>0</crs:PerspectiveVertical>
             <crs:PerspectiveHorizontal>0</crs:PerspectiveHorizontal>
             <crs:PerspectiveRotate>0.0</crs:PerspectiveRotate>
             <crs:PerspectiveScale>100</crs:PerspectiveScale>
             <crs:AutoLateralCA>0</crs:AutoLateralCA>
             <crs:Exposure2012>-1.30</crs:Exposure2012>
             <crs:Contrast2012>-25</crs:Contrast2012>
             <crs:Highlights2012>0</crs:Highlights2012>
             <crs:Shadows2012>0</crs:Shadows2012>
             <crs:Whites2012>+2</crs:Whites2012>
             <crs:Blacks2012>-9</crs:Blacks2012>
             <crs:Clarity2012>0</crs:Clarity2012>
             <crs:DefringePurpleAmount>0</crs:DefringePurpleAmount>
             <crs:DefringePurpleHueLo>30</crs:DefringePurpleHueLo>
             <crs:DefringePurpleHueHi>70</crs:DefringePurpleHueHi>
             <crs:DefringeGreenAmount>0</crs:DefringeGreenAmount>
             <crs:DefringeGreenHueLo>40</crs:DefringeGreenHueLo>
             <crs:DefringeGreenHueHi>60</crs:DefringeGreenHueHi>
             <crs:ConvertToGrayscale>False</crs:ConvertToGrayscale>
             <crs:ToneCurveName2012>Linear</crs:ToneCurveName2012>
             <crs:ToneCurvePV2012>
                <rdf:Seq>
                   <rdf:li>0, 0</rdf:li>
                   <rdf:li>255, 255</rdf:li>
                </rdf:Seq>
             </crs:ToneCurvePV2012>
             <crs:ToneCurvePV2012Red>
                <rdf:Seq>
                   <rdf:li>0, 0</rdf:li>
                   <rdf:li>255, 255</rdf:li>
                </rdf:Seq>
             </crs:ToneCurvePV2012Red>
             <crs:ToneCurvePV2012Green>
                <rdf:Seq>
                   <rdf:li>0, 0</rdf:li>
                   <rdf:li>255, 255</rdf:li>
                </rdf:Seq>
             </crs:ToneCurvePV2012Green>
             <crs:ToneCurvePV2012Blue>
                <rdf:Seq>
                   <rdf:li>0, 0</rdf:li>
                   <rdf:li>255, 255</rdf:li>
                </rdf:Seq>
             </crs:ToneCurvePV2012Blue>
             <crs:CameraProfile>Adobe Standard</crs:CameraProfile>
             <crs:CameraProfileDigest>3CE8523BCEA625D0F0ABABADE3BCC281</crs:CameraProfileDigest>
             <crs:LensProfileSetup>LensDefaults</crs:LensProfileSetup>
             <crs:HasSettings>True</crs:HasSettings>
             <crs:HasCrop>False</crs:HasCrop>
             <crs:AlreadyApplied>True</crs:AlreadyApplied>
          </rdf:Description>
          <rdf:Description rdf:about=""
                xmlns:tiff="http://ns.adobe.com/tiff/1.0/">
             <tiff:XResolution>240/1</tiff:XResolution>
             <tiff:YResolution>240/1</tiff:YResolution>
             <tiff:ResolutionUnit>2</tiff:ResolutionUnit>
             <tiff:Make>Canon</tiff:Make>
             <tiff:Model>Canon EOS-1D Mark IV</tiff:Model>
          </rdf:Description>
          <rdf:Description rdf:about=""
                xmlns:exif="http://ns.adobe.com/exif/1.0/">
             <exif:ExifVersion>0221</exif:ExifVersion>
             <exif:PixelXDimension>4896</exif:PixelXDimension>
             <exif:PixelYDimension>3264</exif:PixelYDimension>
             <exif:DateTimeOriginal>2012-12-16T17:11:53</exif:DateTimeOriginal>
             <exif:ExposureTime>1/30</exif:ExposureTime>
             <exif:FNumber>28/10</exif:FNumber>
             <exif:ExposureProgram>2</exif:ExposureProgram>
             <exif:ISOSpeedRatings>
                <rdf:Seq>
                   <rdf:li>3200</rdf:li>
                </rdf:Seq>
             </exif:ISOSpeedRatings>
             <exif:ShutterSpeedValue>4906891/1000000</exif:ShutterSpeedValue>
             <exif:ApertureValue>2970854/1000000</exif:ApertureValue>
             <exif:ExposureBiasValue>0/1</exif:ExposureBiasValue>
             <exif:MaxApertureValue>3/1</exif:MaxApertureValue>
             <exif:MeteringMode>5</exif:MeteringMode>
             <exif:Flash rdf:parseType="Resource">
                <exif:Fired>False</exif:Fired>
                <exif:Return>0</exif:Return>
                <exif:Mode>2</exif:Mode>
                <exif:Function>False</exif:Function>
                <exif:RedEyeMode>False</exif:RedEyeMode>
             </exif:Flash>
             <exif:FocalLength>64/1</exif:FocalLength>
             <exif:FocalPlaneXResolution>4896000/1290</exif:FocalPlaneXResolution>
             <exif:FocalPlaneYResolution>3264000/836</exif:FocalPlaneYResolution>
             <exif:FocalPlaneResolutionUnit>2</exif:FocalPlaneResolutionUnit>
             <exif:CustomRendered>0</exif:CustomRendered>
             <exif:ExposureMode>0</exif:ExposureMode>
             <exif:WhiteBalance>0</exif:WhiteBalance>
             <exif:SceneCaptureType>0</exif:SceneCaptureType>
             <exif:SubSecTime>00</exif:SubSecTime>
             <exif:SubSecTimeOriginal>00</exif:SubSecTimeOriginal>
             <exif:SubSecTimeDigitized>00</exif:SubSecTimeDigitized>
             <exif:SerialNumber>720600641</exif:SerialNumber>
             <exif:LensInfo>
                <rdf:Seq>
                   <rdf:li>24/1</rdf:li>
                </rdf:Seq>
             </exif:LensInfo>
             <exif:Lens>EF24-70mm f/2.8L USM</exif:Lens>
          </rdf:Description>
       </rdf:RDF>
    </x:xmpmeta>
                                                       <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        ">
       <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
          <rdf:Description rdf:about=""
                xmlns:dc="http://purl.org/dc/elements/1.1/">
             <dc:format>image/tiff</dc:format>
             <dc:creator>
                <rdf:Seq>
                   <rdf:li>Pam McAssey</rdf:li>
                </rdf:Seq>
             </dc:creator>
          </rdf:Description>
          <rdf:Description rdf:about=""
                xmlns:aux="http://ns.adobe.com/exif/1.0/aux/">
             <aux:SerialNumber>720600641</aux:SerialNumber>
             <aux:LensInfo>24/1 70/1 0/0 0/0</aux:LensInfo>
             <aux:Lens>EF24-70mm f/2.8L USM</aux:Lens>
             <aux:LensID>230</aux:LensID>
             <aux:ImageNumber>0</aux:ImageNumber>
             <aux:ApproximateFocusDistance>122/100</aux:ApproximateFocusDistance>
             <aux:FlashCompensation>0/1</aux:FlashCompensation>
             <aux:Firmware>1.0.6</aux:Firmware>
          </rdf:Description>
          <rdf:Description rdf:about=""
                xmlns:xmp="http://ns.adobe.com/xap/1.0/">
             <xmp:ModifyDate>2012-12-19T11:23:49-05:00</xmp:ModifyDate>
             <xmp:CreateDate>2012-12-16T17:11:53</xmp:CreateDate>
             <xmp:Rating>0</xmp:Rating>
             <xmp:MetadataDate>2012-12-19T11:23:49-05:00</xmp:MetadataDate>
          </rdf:Description>
          <rdf:Description rdf:about=""
                xmlns:photoshop="http://ns.adobe.com/photoshop/1.0/">
             <photoshop:DateCreated>2012-12-16T17:11:53</photoshop:DateCreated>
             <photoshop:ColorMode>3</photoshop:ColorMode>
             <photoshop:ICCProfile>ProPhoto RGB</photoshop:ICCProfile>
          </rdf:Description>
          <rdf:Description rdf:about=""
                xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
                xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#"
                xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#">
             <xmpMM:DocumentID>xmp.did:b13179a4-0983-a649-a532-0d90ea6feea5</xmpMM:DocumentID>
             <xmpMM:OriginalDocumentID>E634097DE11761C5824C1873DDBDEDDD</xmpMM:OriginalDocumentID>
             <xmpMM:InstanceID>xmp.iid:b13179a4-0983-a649-a532-0d90ea6feea5</xmpMM:InstanceID>
             <xmpMM:History>
                <rdf:Seq>
                   <rdf:li rdf:parseType="Resource">
                      <stEvt:action>saved</stEvt:action>
                      <stEvt:instanceID>xmp.iid:9d0e25ce-f732-d74a-9631-086fc6151324</stEvt:instanceID>
                      <stEvt:when>2012-12-16T16:11:44-05:00</stEvt:when>
                      <stEvt:softwareAgent>Adobe Photoshop Camera Raw 7.3 (Windows)</stEvt:softwareAgent>
                      <stEvt:changed>/metadata</stEvt:changed>
                   </rdf:li>
                   <rdf:li rdf:parseType="Resource">
                      <stEvt:action>saved</stEvt:action>
                      <stEvt:instanceID>xmp.iid:0816d1f7-2bb5-e344-806a-6da92a4c8540</stEvt:instanceID>
                      <stEvt:when>2012-12-16T16:13:18-05:00</stEvt:when>
                      <stEvt:softwareAgent>Adobe Photoshop Camera Raw 7.3 (Windows)</stEvt:softwareAgent>
                      <stEvt:changed>/metadata</stEvt:changed>
                   </rdf:li>
                   <rdf:li rdf:parseType="Resource">
                      <stEvt:action>derived</stEvt:action>
                      <stEvt:parameters>converted from image/x-canon-cr2 to image/tiff</stEvt:parameters>
                   </rdf:li>
                   <rdf:li rdf:parseType="Resource">
                      <stEvt:action>saved</stEvt:action>
                      <stEvt:instanceID>xmp.iid:b13179a4-0983-a649-a532-0d90ea6feea5</stEvt:instanceID>
                      <stEvt:when>2012-12-19T11:23:49-05:00</stEvt:when>
                      <stEvt:softwareAgent>Adobe Photoshop Camera Raw 7.3 (Windows)</stEvt:softwareAgent>
                      <stEvt:changed>/</stEvt:changed>
                   </rdf:li>
                </rdf:Seq>
             </xmpMM:History>
             <xmpMM:DerivedFrom rdf:parseType="Resource">
                <stRef:instanceID>xmp.iid:0816d1f7-2bb5-e344-806a-6da92a4c8540</stRef:instanceID>
                <stRef:documentID>E634097DE11761C5824C1873DDBDEDDD</stRef:documentID>
                <stRef:originalDocumentID>E634097DE11761C5824C1873DDBDEDDD</stRef:originalDocumentID>
             </xmpMM:DerivedFrom>
          </rdf:Description>
          <rdf:Description rdf:about=""
                xmlns:crs="http://ns.adobe.com/camera-raw-settings/1.0/">
             <crs:RawFileName>_S1H4635.CR2</crs:RawFileName>
             <crs:Version>7.3</crs:Version>
             <crs:ProcessVersion>6.7</crs:ProcessVersion>
             <crs:WhiteBalance>As Shot</crs:WhiteBalance>
             <crs:Temperature>5950</crs:Temperature>
             <crs:Tint>+46</crs:Tint>
             <crs:Saturation>0</crs:Saturation>
             <crs:Sharpness>25</crs:Sharpness>
             <crs:LuminanceSmoothing>0</crs:LuminanceSmoothing>
             <crs:ColorNoiseReduction>25</crs:ColorNoiseReduction>
             <crs:VignetteAmount>0</crs:VignetteAmount>
             <crs:ShadowTint>0</crs:ShadowTint>
             <crs:RedHue>0</crs:RedHue>
             <crs:RedSaturation>0</crs:RedSaturation>
             <crs:GreenHue>0</crs:GreenHue>
             <crs:GreenSaturation>0</crs:GreenSaturation>
             <crs:BlueHue>0</crs:BlueHue>
             <crs:BlueSaturation>0</crs:BlueSaturation>
             <crs:Vibrance>0</crs:Vibrance>
             <crs:HueAdjustmentRed>0</crs:HueAdjustmentRed>
             <crs:HueAdjustmentOrange>0</crs:HueAdjustmentOrange>
             <crs:HueAdjustmentYellow>0</crs:HueAdjustmentYellow>
             <crs:HueAdjustmentGreen>0</crs:HueAdjustmentGreen>
             <crs:HueAdjustmentAqua>0</crs:HueAdjustmentAqua>
             <crs:HueAdjustmentBlue>0</crs:HueAdjustmentBlue>
             <crs:HueAdjustmentPurple>0</crs:HueAdjustmentPurple>
             <crs:HueAdjustmentMagenta>0</crs:HueAdjustmentMagenta>
             <crs:SaturationAdjustmentRed>0</crs:SaturationAdjustmentRed>
             <crs:SaturationAdjustmentOrange>0</crs:SaturationAdjustmentOrange>
             <crs:SaturationAdjustmentYellow>0</crs:SaturationAdjustmentYellow>
             <crs:SaturationAdjustmentGreen>0</crs:SaturationAdjustmentGreen>
             <crs:SaturationAdjustmentAqua>0</crs:SaturationAdjustmentAqua>
             <crs:SaturationAdjustmentBlue>0</crs:SaturationAdjustmentBlue>
             <crs:SaturationAdjustmentPurple>0</crs:SaturationAdjustmentPurple>
             <crs:SaturationAdjustmentMagenta>0</crs:SaturationAdjustmentMagenta>
             <crs:LuminanceAdjustmentRed>0</crs:LuminanceAdjustmentRed>
             <crs:LuminanceAdjustmentOrange>0</crs:LuminanceAdjustmentOrange>
             <crs:LuminanceAdjustmentYellow>0</crs:LuminanceAdjustmentYellow>
             <crs:LuminanceAdjustmentGreen>0</crs:LuminanceAdjustmentGreen>
             <crs:LuminanceAdjustmentAqua>0</crs:LuminanceAdjustmentAqua>
             <crs:LuminanceAdjustmentBlue>0</crs:LuminanceAdjustmentBlue>
             <crs:LuminanceAdjustmentPurple>0</crs:LuminanceAdjustmentPurple>
             <crs:LuminanceAdjustmentMagenta>0</crs:LuminanceAdjustmentMagenta>
             <crs:SplitToningShadowHue>0</crs:SplitToningShadowHue>
             <crs:SplitToningShadowSaturation>0</crs:SplitToningShadowSaturation>
             <crs:SplitToningHighlightHue>0</crs:SplitToningHighlightHue>
             <crs:SplitToningHighlightSaturation>0</crs:SplitToningHighlightSaturation>
             <crs:SplitToningBalance>0</crs:SplitToningBalance>
             <crs:ParametricShadows>0</crs:ParametricShadows>
             <crs:ParametricDarks>0</crs:ParametricDarks>
             <crs:ParametricLights>0</crs:ParametricLights>
             <crs:ParametricHighlights>0</crs:ParametricHighlights>
             <crs:ParametricShadowSplit>25</crs:ParametricShadowSplit>
             <crs:ParametricMidtoneSplit>50</crs:ParametricMidtoneSplit>
             <crs:ParametricHighlightSplit>75</crs:ParametricHighlightSplit>
             <crs:SharpenRadius>+1.0</crs:SharpenRadius>
             <crs:SharpenDetail>25</crs:SharpenDetail>
             <crs:SharpenEdgeMasking>0</crs:SharpenEdgeMasking>
             <crs:PostCropVignetteAmount>0</crs:PostCropVignetteAmount>
             <crs:GrainAmount>0</crs:GrainAmount>
             <crs:ColorNoiseReductionDetail>50</crs:ColorNoiseReductionDetail>
             <crs:LensProfileEnable>0</crs:LensProfileEnable>
             <crs:LensManualDistortionAmount>0</crs:LensManualDistortionAmount>
             <crs:PerspectiveVertical>0</crs:PerspectiveVertical>
             <crs:PerspectiveHorizontal>0</crs:PerspectiveHorizontal>
             <crs:PerspectiveRotate>0.0</crs:PerspectiveRotate>
             <crs:PerspectiveScale>100</crs:PerspectiveScale>
             <crs:AutoLateralCA>0</crs:AutoLateralCA>
             <crs:Exposure2012>-1.30</crs:Exposure2012>
             <crs:Contrast2012>-25</crs:Contrast2012>
             <crs:Highlights2012>0</crs:Highlights2012>
             <crs:Shadows2012>0</crs:Shadows2012>
             <crs:Whites2012>+2</crs:Whites2012>
             <crs:Blacks2012>-9</crs:Blacks2012>
             <crs:Clarity2012>0</crs:Clarity2012>
             <crs:DefringePurpleAmount>0</crs:DefringePurpleAmount>
             <crs:DefringePurpleHueLo>30</crs:DefringePurpleHueLo>
             <crs:DefringePurpleHueHi>70</crs:DefringePurpleHueHi>
             <crs:DefringeGreenAmount>0</crs:DefringeGreenAmount>
             <crs:DefringeGreenHueLo>40</crs:DefringeGreenHueLo>
             <crs:DefringeGreenHueHi>60</crs:DefringeGreenHueHi>
             <crs:ConvertToGrayscale>False</crs:ConvertToGrayscale>
             <crs:ToneCurveName2012>Linear</crs:ToneCurveName2012>
             <crs:ToneCurvePV2012>
                <rdf:Seq>
                   <rdf:li>0, 0</rdf:li>
                   <rdf:li>255, 255</rdf:li>
                </rdf:Seq>
             </crs:ToneCurvePV2012>
             <crs:ToneCurvePV2012Red>
                <rdf:Seq>
                   <rdf:li>0, 0</rdf:li>
                   <rdf:li>255, 255</rdf:li>
                </rdf:Seq>
             </crs:ToneCurvePV2012Red>
             <crs:ToneCurvePV2012Green>
                <rdf:Seq>
                   <rdf:li>0, 0</rdf:li>
                   <rdf:li>255, 255</rdf:li>
                </rdf:Seq>
             </crs:ToneCurvePV2012Green>
             <crs:ToneCurvePV2012Blue>
                <rdf:Seq>
                   <rdf:li>0, 0</rdf:li>
                   <rdf:li>255, 255</rdf:li>
                </rdf:Seq>
             </crs:ToneCurvePV2012Blue>
             <crs:CameraProfile>Adobe Standard</crs:CameraProfile>
             <crs:CameraProfileDigest>3CE8523BCEA625D0F0ABABADE3BCC281</crs:CameraProfileDigest>
             <crs:LensProfileSetup>LensDefaults</crs:LensProfileSetup>
             <crs:HasSettings>True</crs:HasSettings>
             <crs:HasCrop>False</crs:HasCrop>
             <crs:AlreadyApplied>True</crs:AlreadyApplied>
          </rdf:Description>
          <rdf:Description rdf:about=""
                xmlns:tiff="http://ns.adobe.com/tiff/1.0/">
             <tiff:XResolution>240/1</tiff:XResolution>
             <tiff:YResolution>240/1</tiff:YResolution>
             <tiff:ResolutionUnit>2</tiff:ResolutionUnit>
             <tiff:Make>Canon</tiff:Make>
             <tiff:Model>Canon EOS-1D Mark IV</tiff:Model>
          </rdf:Description>
          <rdf:Description rdf:about=""
                xmlns:exif="http://ns.adobe.com/exif/1.0/">
             <exif:ExifVersion>0221</exif:ExifVersion>
             <exif:PixelXDimension>4896</exif:PixelXDimension>
             <exif:PixelYDimension>3264</exif:PixelYDimension>
             <exif:DateTimeOriginal>2012-12-16T17:11:53</exif:DateTimeOriginal>
             <exif:ExposureTime>1/30</exif:ExposureTime>
             <exif:FNumber>28/10</exif:FNumber>
             <exif:ExposureProgram>2</exif:ExposureProgram>
             <exif:ISOSpeedRatings>
                <rdf:Seq>
                   <rdf:li>3200</rdf:li>
                </rdf:Seq>
             </exif:ISOSpeedRatings>
             <exif:ShutterSpeedValue>4906891/1000000</exif:ShutterSpeedValue>
             <exif:ApertureValue>2970854/1000000</exif:ApertureValue>
             <exif:ExposureBiasValue>0/1</exif:ExposureBiasValue>
             <exif:MaxApertureValue>3/1</exif:MaxApertureValue>
             <exif:MeteringMode>5</exif:MeteringMode>
             <exif:Flash rdf:parseType="Resource">
                <exif:Fired>False</exif:Fired>
                <exif:Return>0</exif:Return>
                <exif:Mode>2</exif:Mode>
                <exif:Function>False</exif:Function>
                <exif:RedEyeMode>False</exif:RedEyeMode>
             </exif:Flash>
             <exif:FocalLength>64/1</exif:FocalLength>
             <exif:FocalPlaneXResolution>4896000/1290</exif:FocalPlaneXResolution>
             <exif:FocalPlaneYResolution>3264000/836</exif:FocalPlaneYResolution>
             <exif:FocalPlaneResolutionUnit>2</exif:FocalPlaneResolutionUnit>
             <exif:CustomRendered>0</exif:CustomRendered>
             <exif:ExposureMode>0</exif:ExposureMode>
             <exif:WhiteBalance>0</exif:WhiteBalance>
             <exif:SceneCaptureType>0</exif:SceneCaptureType>
             <exif:SubSecTime>00</exif:SubSecTime>
             <exif:SubSecTimeOriginal>00</exif:SubSecTimeOriginal>
             <exif:SubSecTimeDigitized>00</exif:SubSecTimeDigitized>
             <exif:SerialNumber>720600641</exif:SerialNumber>
             <exif:LensInfo>
                <rdf:Seq>
                   <rdf:li>24/1</rdf:li>
                </rdf:Seq>
             </exif:LensInfo>
             <exif:Lens>EF24-70mm f/2.8L USM</exif:Lens>
          </rdf:Description>
       </rdf:RDF>
    </x:xmpmeta>
    Message was edited by: JJMack

  • Can no longer write metadata to Raw files

    My team an d I are working in Photoshop CS5, we write metadata to jpegs and Raw files- saving to Raw database not as sidecar .xmp files.  We are no longer able to save the metadata to Raw files.  There is no error message, the data writes like normal and the user who writes the metadata can see it but when you open in another computer the metadata fields are empty, however the jpegs do have the new metadata.  Was there a setting change at some point? This has been going on for a couple months and I cannot find an answer anywhere.  Again, we batch write to RAW+Jpeg, the jpeg files save the metadata but the Raw files look like the data saved but is not visible on any computer other thant he one that added the new metadata. This is occurring on multiple computers, both Mac and PC.

    TimVasilovic wrote:
    I understand the process you are describing,  In the past I have been able to embed metadata to a Raw file, move it to a server, pick that file up on another computer and see the metadata without need of the .xmp sidecar.  Is the ability to embed no longer supported  by Photoshop? Since this issue began we have taken to doing all our metadata editing in PhotoMechanic, which embeds without creating a sidecar.  If Photoshop is pushing people to create sidecar .xmp files only for writing metadata to Raw files I will probabaly move fully to PhotoMechanic because using sidecars has proven tricky in the past with how our files get moved around.
    If using Adobe Camera Raw on camera raw file you either have an XMP sidecar file created or the data is stored in a database.  Which happens it is your option in Edit/camera raw.  If you use ACR and edit a jpeg it does not create a distinct XMP file but it is also not directly written to the image either.  One can still delete the edits in Bridge with Edit/develp settings.
    If you use a DNG the metadata is written to the image.  Not sure what process Photo Mechanic uses.
    It appears to be a permission problem as other than CS6 Bridge is now 64 bit and has a new cache method there are no changes in how it handles metadata.

  • Lightroom 5 can't write metadata to DNG files

    I have converted a large number of Canon and Nikon raw files to DNG using Adobe DNG Converter (version 8.2.0.94). 
    Using Lightroom 5.2 I wanted to change metadata in these master DNG files.  I import the files into a catalog, select all, modify the metadata, then invoke the Metadata->Save Metadata to Files...  For many (but not all) of the files I get the following message:
    "Could not write metadata.  Unknown file formats."
    The DNG files reside on a Synology NAS server.  If I copy them to a local disk I do not get the above error.  But I would like to make metadata changes to the files on the NAS.
    I do not have problems importing or viewing DNG files from the NAS.  Why does LR 5 have problems writing DNG metadata to the NAS?  How can I fix this?

    Thanks for replying.
    The problem is definitely not one of permissions. I am accessing the NAS from an admin account with full permissions to read/write the files and directories.
    I'm inclined to believe it's the second cause you propose -- network protocol causing data corruption. 
    It seems to be specific to writing metadata to large files such as DNG or TIFF.  I don't get errors writing to JPEG.  And it is inconsistent -- sometimes retrying fixes it.  And, oddly, sometimes I even get the error "photos have read-only access" when it's clear the permissions are OK.
    On the other hand I have had no problems copying thousands of DNGs to/from the NAS -- no errors and no corruption.  So the issue seems to be an interaction between the NAS and LR when LR is updating the metadata on an existing file and the file is large.

  • Error writing metadata to file

    I am getting constant error messages from Bridge CS4 when trying to add keywords to my images "Error Writing Metadata to file "XXXX". It's very annoying and destroying my workflow. I have tried resetting original preferences, and using purge cashe. Finally I reorganized my entire folder structure which seemed to make the problem less frequent.
    The circumstance that makes this error pop up most frequently is when I add keywords to a handful of files that already have another keyword assigned. Quitting the folder and then re-entering it solves the problem for the photos with the current error, but then 20 or so photos later I get the error message again.
    Any Fixes?

    A new suspicion was that the read/write data might be different for the images files themselves than it was for the folder holding them. So I applied the read/write permission to the image files themselves. No luck though. Still getting "Error writing metadata to file xxxx" Errors. Would love to be spending all this time editing photos instead of chasing down bugs. Brand new MacBook Pro and I'm spending more time trying to fix errors than using the software. ::sigh::

  • Faillure writing metadata to some DNG files

    I'm having a problem writing metadata to some dng files using Lightroom 2.6.1. When I try to apply a metadata template to a batch of files most of them get changes but a few don't. This only effects DNG files so far JPEG and TIFF seem to be OK. I have tried running the problem files through DNG converter and the new files have the same problem. Lightroom won't write to them.
    I can change the metadata of these files from Bridge. The changes then appear properly in Lightroom. Afterwards I can change the metadata again from Lightroom.
    I'm working on a MacBook Pro (Late 2008) and running OS 10.6.2.

    I created a preset to export to same folder as original, same format as original, and stack with (above) original. I used this on the seven files, and it has solved the problem without losing any metadata.
    The jpegs had at some point been processed by Photoshop Elements as they were imported/edited using that application in 2010 but the metadata problem didn't show up until recently when I was making some adjustments in Lightroom. I somehow think this may be related to the GPS tag though I don't have sufficient evidence.
    The DNG file was strange in that it was straight the camera with no Lightroom adjustments, although I did add GPS info in the Map module. Anway it is now fixed as well as the jpegs.
    With this preset it would be possible quickly to fix a large number of image files. Just create a Smart Collection to display the problem files and run the preset on them all in one go. The only things that I am aware of that you would need to look out for are (1) if they are in a collection other than a smart collection, or have been published to a service like Flickr or to the Hard Disk the link will be broken, and (2) If you like to sort photos by date/time added, they will be out of the sequence (capture time is fine).
    When you are satisfied that this has worked OK then you can delete the images from the "Metadata Not Up To Date" smart collection. Select all, go to all photos, they should remain selected and press Delete. You could do a thousand in one go if you have the nerve for it
    Hope this helps.
    Peter

  • Errors when writing metadata to files on Windows Server

    Good day!
    I have an iMac running OSX 10.9 (Maverick) and Lightroom 5.2.
    My catalog is on the local iMac drive, and the images are on SMB shared drive (handled by Windows 2012 server).
    I decided to do the final layout of my album using InDesign, and for that I needed to access to images using Bridge. So selected all the images (the rated once...) and issue a Metadata/Save command.
    The system came back with errors on many of the files (such as Photos are read only, and unknown errors).
    Retrying to save the metadata on image that was flagged with an error usually (but not always) worked.
    I tried to select save the metadata for few (6) images in a time, many times it was ok, but sometimes, one or two of them failed (and retrying again usually solved the problem).
    It looks to me like a timing related issue.
    Any ideas?
    (After spending about an hour on this, I have exported the images to my local drive...). In general I don't have similar problems with other apps.
    Any ideas?
    Yuval

    I Yuval
    I'm experiencing more or less the same behavior (see Read-only error when writing metadata to file over network (Synology DS1315+ using AFP) ). For me however, the problem is more pronounced if I use the AFP protocol and is better (I think as you described) if I use SMB (all done on a Synology DS1315+). With SMB it most often works but in very rare cases I also get the "read only" message!
    Do you have solution to this? Or are you stuck as I am?
    Cheers, Chris

  • Writing specialized metadata to image using Javascript...

    I'm working on a project where we are dumping metadata from a database into a text file and then writing it to images using javascript. As long as I use the fields listed in the Javascript reference manual, it works perfectly.
    However, the client has asked me to write specialized metadata. I created a panel for them to add in the extra fields. Is there a way to get Javascript to write the extra fields? (Is there a way to extend the DocumentInfo class in Javascript? Me thinks not...but I thought I'd ask.)
    Thanks,
    Laura

    I very interested in this as well... Found an answer yet? Seem silly to me that do don't have access to all of your tags...

  • Writing metadata to file iphoto 11

    I came across a script (by Andrew Turner, linked to from here -http://stuffforlife.blogspot.com/2009/10/face-recognition-in-adobe-photoshop.htm l) that writes the iphoto metadata to the original file, allowing the metadata to be read by other apps.
    However, i get an error
    Here's the script.
    -- This applescript will set the exif keywords, name, and comments of all selected iPhoto
    --   images using the information current in iPhoto.
    -- Author: Andrew Turner (http://highearthorbit.com)
    property copyright : "©. All Rights Reserved."
    property URL : ""
    property exifToolOriginal : "_original"
    -- True retains copyright, False means Public Domain
    property Copyrighted : "True"
    tell application "iPhoto"
      activate
              try
                        copy (my selected_images()) to these_images
                        if these_images is false or (the count of these_images) is 0 then ¬
                                  error "Please select a single image."
                        repeat with i from 1 to the count of these_images
                                  set the keywordslist to ""
                                  set this_photo to item i of these_images
                                  tell this_photo
                                            set the image_file to the image path
                                            set the image_title to the title
                                            set the image_filename to the image filename
                                            set the image_comment to the comment
                                            set the assigned_keywords to the name of keywords
                                  end tell
                                  repeat with j from 1 to the count of assigned_keywords
                                            set the keywordslist to keywordslist & " -keywords+=" & item j of assigned_keywords
                                  end repeat
                                  set output to do shell script ¬
                                            "exiftool -title='" & image_title & ¬
                                            "' " & keywordslist & ¬
                                            " " & " -comment='" & image_comment & ¬
                                            "' " & " -Copyright='" & copyright & ¬
                                            "' " & " -CopyrightNotice='" & copyright & ¬
                                            "' " & " -Rights='" & copyright & ¬
                                            "' " & " -Marked='" & Copyrighted & ¬
                                            "' " & "'" & image_file & "'"
      do shell script "rm '" & image_file & "'" & exifToolOriginal
                        end repeat
                        display dialog "Exif writing complete."
              on error error_message number error_number
                        if the error_number is not -128 then
      display dialog error_message buttons {"Cancel"} default button 1
                        end if
              end try
    end tell
    on selected_images()
              tell application "iPhoto"
                        try
      -- get selection
                                  set these_items to the selection
      -- check for single album selected
                                  if the class of item 1 of these_items is album then error
      -- return the list of selected photos
                                  return these_items
                        on error
                                  return false
                        end try
              end tell
    end selected_images

    yeah, i just noticed that...!
    when exiftool is working, does it write the metadata to the original raw file or the jpeg.
    trying to find info on how to get round the "warning duplicate orientation tag in IFDO" error, has me scratching my head
    i also have aperture 3 trial, wil this allow face keywords from iphoto to be added as metadata to the file?
    cheers

  • Writing Image files from Applet to Servlet

    How to write ImageFiles from an Applet to a Servlet?
    I draw a image on a JComponent in Applet and wanted to save the image file in the server.
    I am unable to write an Image Object to the Servlet as the BufferedImage class is not serialized.
    I tried writing the image to the Servlet output stream and tried reading the data in the servlet and writing the data to a jpg file.
    But the files is not being written as proper jpeg file.
    Any help would be great.
    Thanks,
    Sridhar.

    I get the following exception below when i try to write a Serialized object from an applet to the servlet.
    I copied the serialized class jar file to the tomcat webserver lib folder.
    The serialized class has a BufferedImage object.
    Serialized Class Code
    public class SerializedImage implements Serializable{
         private BufferedImage im = null;
         public SerializedImage() {
              super();
         public BufferedImage getSerializedObject() {
              return im;
         public void setSerializedObject((BufferedImage im) {
              this.im = im;
         private BufferedImage fromByteArray(byte[] imagebytes) {
              try {
                   if (imagebytes != null && (imagebytes.length > 0)) {
                        BufferedImage im = ImageIO.read(new ByteArrayInputStream(imagebytes));
                        return im;
                   return null;
              } catch (IOException e) {
                   throw new IllegalArgumentException(e.toString());
         private byte[] toByteArray(BufferedImage o) {
              if(o != null) {
                   BufferedImage image = (BufferedImage)o;
                   ByteArrayOutputStream baos = new ByteArrayOutputStream(1024);
                   try {
                        ImageIO.write(image, "jpg", baos);
                   } catch (IOException e) {
                        throw new IllegalStateException(e.toString());
                   byte[] b = baos.toByteArray();
                   return b;
              return new byte[0];
         private void writeObject(java.io.ObjectOutputStream out)
         throws IOException {
              byte[] b = toByteArray(im);
              out.writeInt(b.length);
              out.write(b);
         private void readObject(java.io.ObjectInputStream in)
         throws IOException, ClassNotFoundException {
              int length = in.readInt();
              byte[] b = new byte[length];
              in.read(b);
              im = fromByteArray(b);
    Exception :
    java.io.StreamCorruptedException: unexpected block data
    at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1288)
    at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:18
    45)
    at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1769)
    at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1
    646)
    at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1274)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:324)
    Is there any thing that i am missing or doing wrong?
    Thanks,
    Sridhar.

Maybe you are looking for

  • ASA 5510: Flapping interface

    Hi all, Yesterday one of the interfaces on my firewall started flapping causing havoc to live services. It has now resolved itself and hasn't done it again but my questions is; is this start of something and what can I do to pre-empt it happening aga

  • Com.sapportals.portal.prt.jndisupport.InitialContext

    In which .jar file do I find com.sapportals.portal.prt.jndisupport.InitialContext ? Thanks

  • Add Audit Columns to the Dimension and Fact tables (Created & modified date Time)

    Hi All, I am new to SSIS , I have to Add Audit Columns to the Dimension and Fact tables (Created & modified date Time) of the package. Please let me know the best and easy way through which I can implement the same. If possible suggest some real time

  • I am getting an error message while replicating the product categories

    Hi SRM Gurus, We are presently using SRM 4.0 stand-alone scenario. My client want certain product categories to go for ECS scenario. In the process of journey of configuration. I am stuck with the Product category replication. And I am getting an err

  • Redirecting JVM thread dump to a file

    The full thread dump of the JVM can be obtained by pressing ctrl-break in windows on the prompt from which the JVM is run and on solaris by executing the command "kill -QUIT pid" where pid is the process id of the JVM. The thread dump will be printed