-
Hi, Is it possible to retrieve plain (untranslated) EXIF values via exiv2 API, similarly to how it is done with A practical example would be to retrieve Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Translated simply means "suitable for humans". You can see the value and translated value with the exiv2 command options
That output is generated by the code in
The command-line option So, that code prints the value using The documentation for md is here: https://exiv2.org/doc/classExiv2_1_1Metadatum.html and includes:
and
|
Beta Was this translation helpful? Give feedback.
-
Thank you very much for the answer. |
Beta Was this translation helpful? Give feedback.
Translated simply means "suitable for humans". You can see the value and translated value with the exiv2 command options
-Pv
and-Pt
.That output is generated by the code in
Print::printMetadatum()
in sample…