Welcome Guest! You need to login or register to make posts.

Notification

Icon
Error

Options
Go to last post Go to first unread
erwinrichard  
#1 Posted : Monday, February 23, 2009 6:41:26 PM(UTC)
erwinrichard

Rank: Newbie

Groups: Member
Joined: 1/6/2009(UTC)
Posts: 8


When I add/change an Exif Value in a .jpeg that had previously been opened by photoshop, the new value is not visible in Photoshop. I guess that is because Photoshop keeps the data redundant in its XMP metadata. What would be the correct way to update the data in both locations?

regards
Erwin
Tamila  
#2 Posted : Thursday, February 26, 2009 10:59:10 PM(UTC)
Tamila

Rank: Advanced Member

Groups:
Joined: 3/9/2008(UTC)
Posts: 554

Was thanked: 1 time(s) in 1 post(s)
Hello Erwin,

If file has XMP metadata in this case Photoshop use it not EXIF information.
So if make some correction in EXIF you should do the same in XMP:
Code:

Aurigma.GraphicsMill.Codecs.ExifDictionary exif = new Aurigma.GraphicsMill.Codecs.ExifDictionary();
            exif[Aurigma.GraphicsMill.Codecs.ExifDictionary.Artist] = "John Doe";
            jpegWriter.Exif = exif;

            Aurigma.GraphicsMill.Codecs.XmpData xmp = new Aurigma.GraphicsMill.Codecs.XmpData();
            Aurigma.GraphicsMill.Codecs.XmpValueNode node = new Aurigma.GraphicsMill.Codecs.XmpValueNode(Aurigma.GraphicsMill.Codecs.XmpNodeType.SimpleProperty, "John Doe",
            Aurigma.GraphicsMill.Codecs.XmpTagNames.DCCreator);
            xmp.AddNode(node);


Aurigma Support Team

UserPostedImage Follow Aurigma on Twitter!
Users browsing this topic
Guest
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.