Dear Team,
Getting the issue while extracting the XMP:AGOACCno for the TIF image through command line. Actually, AGOACCno should be like this "2014/100" but it return the devided integer value 20.14,
I use the following commands to extract XMP data.
exiftool -xmp -b AGO.114690.tif > test1.xmp
exiftool -json -b AGO.114690.tif > test1.json
Please let me know solution for this.
Thanks,
Vijay
Hi Vijay,
By default, ExifTool will automatically convert values of unknown XMP tags that look like dates or rational numbers. To disable this conversion, set the XMPAutoConv API option to 0:
exiftool -api XMPAutoConv=0 ...
- Phil