SetProperty_Float(kXMP_NS_EXIF, "***", ***, 0) wrong behavior
I tested this on the XMP original samples and had some issueHere I just read the data, modify it and then again read itdouble xxx;meta.GetProperty_Float(kXMP_NS_EXIF, "BrightnessValue", &xxx,...
View ArticleRe: SetProperty_Float(kXMP_NS_EXIF, "***", ***, 0) wrong behavior
Hi megibyan, The BrightnessValue which you are trying to get is string (numerator/denominator). So calling on GetProperty_float() which expect the value should have (.) but in this case there is...
View ArticleHow to set an EXIF tag value?
After setting up bits, reading the file, etc... I do following: meta.SetProperty_Float(kXMP_NS_EXIF, "ApertureValue", 0.8, 0);if (file.CanPutXMP(meta)){ file.PutXMP(meta);} , and then close the...
View ArticleLooking for answers on XMP files - where should they be stored as sidecar...
Looking for answers on XMP files - where should they be stored as sidecar files? With the original raw file or in a separate folder? Relatively new user of Adobe LR5 and PS CC, about a year old. If...
View ArticleRe: Looking for answers on XMP files - where should they be stored as sidecar...
XMP sidecar files are used with image file formats that do not support embedded XMP metadata. Same folder, matching filename, but with extension "xmp". Example: image002.raw <--> image002.xmp...
View ArticleRe: How to set an EXIF tag value?
Hi megibyan, XMP has categorization of exif properties. Some properties if not present can be only read but can't be deleted or modified. But if that is not present, you can add it. example of those...
View ArticleRe: How to set an EXIF tag value?
Sunil, Thanks for the response. 1. Can't I delete the property using XMP SDK?2. To add the new value and new property I need just to set it, and it will automatically add, right? Thanks,Mikayel
View ArticleRe: How to set an EXIF tag value?
Hi Mikayel,As mentioned by Sunil, XMP consider these set of properties as Inclusion only properties. So, if they are available user can't delete them via XMP SDK. For deletion, you have to use some...
View ArticleHow to get EXIF tags like MakerNote?
When trying to get the MakerNote tag like the other tags: meta.GetProperty(kXMP_NS_EXIF, "MakerNote", &tmp, 0); I can see only an empty string. I pretty sure I am doing that wrong. Should it be a...
View ArticleRe: How to get EXIF tags like MakerNote?
Hi megibyan, MakerNote is not supported in xmp. However you should be able to Get/SET value of UserComment. As UserComment is of type langAlt, you have to call SetLocallizedText() and...
View ArticleRe: How to get EXIF tags like MakerNote?
Sunsil, Can you please provide all known EXIF tags, that are not supported within XMP? Thanks,Mikayel
View ArticleRe: How to get EXIF tags like MakerNote?
Could you please provide an example how to get the UserComment? Thanks,Mikayel
View ArticleRe: How to get EXIF tags like MakerNote?
Hi Mikayel, To get all the xmp supported exif tag please have a look on the xmp\toolkit\documents\LegacyReconcile\Specs\CIPA-ExifInXMP.pdf (present in your xmpsdk) . For all the exif tags you can...
View ArticleRe: How to get EXIF tags like MakerNote?
Shall that file be generated after build ? If yes, the build is not done locally, is there an online link to the document?
View ArticleRe: Size limit for XMP metadata to be added externally to a file's metadata
Hi Amit,Sorry for late reply.Yes, your understanding is correct.I have been able to add the data in document's metadata, but with following work around. The each information unit I am inserting in...
View ArticleRe: How to get EXIF tags like MakerNote?
Sunsil, When trying to get the UserComment like this : meta.GetLocalizedText(kXMP_NS_EXIF, "UserComment", "en", "en-US", NULL, &tmp, 0); it fails. Is anything wrong with this? Can I somehow get the...
View ArticleRe: How to get EXIF tags like MakerNote?
Hi megibyan, I used the API meta.GetLocalizedText(kXMP_NS_EXIF, "UserComment", "", "x-default", NULL, &value, 0); to get the UserComment. What I did, I had a file without UserComment, to...
View ArticleRe: How to get EXIF tags like MakerNote?
Sunsil, Thanks for explanation, that helped much!!Can you get nor the text but raw byte data in it like {0, 0, 1, 1, 3 ,0 , ....}? Thanks,Mikayel
View ArticleIs Flash supported in XMP?
std::string StrHexValue; meta.GetProperty(kXMP_NS_EXIF, "Flash", &StrHexValue, 0); This returns an empty string, when it should return a HEX...
View ArticleRe: Is Flash supported in XMP?
Hi Mikayel, Flash is struct type so you need to use compose path. For your reference I am using following code to get Flash's Mode property the same you can do for other property...
View Article