Exiv2 is a C++ library and a command line utility to read, write, delete and modify Exif, IPTC, XMP and ICC image metadata. Exiv2 also features a collection of sample and test command-line programs. Please be aware that while the program exiv2 enjoys full support from Team Exiv2, the other programs have been written for test, documentation or development purposes. You are expected to read the code to discover the specification of programs other than exiv2.
Name | Purpose | More information | Code |
---|---|---|---|
addmoddel | Demonstrates Exiv2 library APIs to add, modify or delete metadata | addmoddel | addmoddel.cpp |
exifcomment | Set Exif.Photo.UserComment in an image | exifcomment | exifcomment.cpp |
exifdata | Prints Exif metadata in different formats in an image | exifdata | exifdata.cpp |
exifprint | Print Exif metadata in images Miscelleous other features |
exifprint | exifprint.cpp |
exifvalue | Prints the value of a single Exif tag in a file | exifvalue | exifvalue.cpp |
exiv2 | Command line utility to read, write, delete and modify Exif, IPTC, XMP and ICC image metadata. This is the primary test tool used by Team Exiv2 and can exercise almost all code in the library. Due to the extensive capability of this utility, the APIs used are usually less obvious for casual code inspection. |
https://exiv2.org/manpage.html https://exiv2.org/sample.html |
|
exiv2json | Extracts data from image in JSON format. This program also contains a parser to recursively parse Xmp metadata into vectors and objects. |
exiv2json | exiv2json.cpp |
geotag | Reads GPX data and updates images with GPS Tags | geotag | geotag.cpp |
iptceasy | Demonstrates read, set or modify IPTC metadata | iptceasy | iptceasy.cpp |
iptcprint | Demonstrates Exiv2 library APIs to print Iptc data | iptceasy | iptcprint.cpp |
metacopy | Demonstrates copying metadata from one image to another | metacopy | metacopy.cpp |
mrwthumb | Sample program to extract a Minolta thumbnail from the makernote | mrwthumb | mrwthumb.cpp |
xmpparse | Read an XMP packet from a file, parse it and print all (known) properties. | xmpparse | xmpparse.cpp |
xmpprint | Read an XMP from a file, parse it and print all (known) properties.. | xmpprint | xmpprint.cpp |
xmpsample | Demonstrates Exiv2 library high level XMP classes | xmpsample | xmpsample.cpp |
As Exiv2 is open source, we publish all our materials. Some of the following programs are actively used in our test harness. Some of the following programs were written during the development of features and their on-going use may be limited, or even obsolete. In general these programs are published as source and Team Exiv2 will not provide support to users.
Name | Kind | More information |
---|---|---|
conntest | Test http/https/ftp/ssh/sftp connection | conntest |
convert-test | Conversion test driver | convert-test |
easyaccess-test | Sample program using high-level metadata access functions | easyaccess-test |
getopt-test | Sample program to test getopt() | getopt-test |
ini-test | Shows simple usage of the INIReader class | ini-test |
iotest | Test programs for BasicIo functions. | iotest |
iptctest | Sample program test Iptc reading and writing. | iptctest |
key-test | Key unit tests | key-test |
largeiptc-test | Test for large (>65535 bytes) IPTC buffer | largeiptc-test |
mmap-test | Simple mmap tests | mmap-test |
path-test | Test path IO | path-test |
prevtest | Test access to preview images | prevtest |
remotetest | Tester application for testing remote i/o. | remotetest |
stringto-test | Test conversions from string to long, float and Rational types. | stringto-test |
taglist | Print a simple comma separated list of tags defined in Exiv2 | taglist |
tiff-test | Simple TIFF write test | tiff-test |
werror-test | Simple tests for the wide-string error class WError | werror-test |
write-test | ExifData write unit tests | write-test |
write2-test | ExifData write unit tests for Exif data created from scratch | write2-test |
xmpdump | Sample program to dump the XMP packet of an image | xmpdump |
xmpparser-test | Read an XMP packet from a file, parse and re-serialize it. | xmpparser-test |
Usage: addmoddel file
Demonstrates Exiv2 library APIs to add, modify or delete metadata. Code: addmoddel.cpp
Usage: exifcomment file
This is a simple program that demonstrates how to set Exif.Photo.UserComment in an image. Code: exifcomment.cpp
Usage: exifdata file format
formats: csv | json | wolf | xml
This is a simple program to demonstrate dumping Exif metadata in common formats. Code: exifdata.cpp
Usage: exifprint [ file | --version | --version-test ]
Arguments | Description |
---|---|
file | Path to image |
--version | Print version information from build |
--version-test | Tests Exiv2 VERSION API |
This program demonstrates how to print Exif metadata in an image. This program is also discussed in the platform ReadMe.txt file included in a build bundle. The option --version was added enable the user to build a test application which dumps the build information. The option --version-test was added to test the macro EXIV2_TEST_VERSION() in include/exiv2/version.hpp.
There is one other unique feature of this program. It is the only test/sample program which can use the EXV_UNICODE_PATH build feature of Exiv2 on Windows.
Code: exifprint.cpp
Usage: exifvalue file tag
Prints the value of a single Exif tag in a file. Code: exifvalue.cpp
Usage: exiv2json [-option] file
Option: all | exif | iptc | xmp | filesystem
Arguments | Description |
---|---|
all | All metadata |
filesystem | Filesystem metadata |
exif | Exif metadata |
iptc | Iptc metadata |
xmp | Xmp metadata |
file | path to image |
This program dumps metadata from an image in JSON format. Code: exiv2json.cpp
exiv2json has a recursive parser to encode XMP into Vectors and Objects. XMP data is XMP and can contain XMP Bag
and Seq
which are converted to JSON Objects and Arrays. Exiv2 presents data in the format: Family.Group.Tag. For XMP, results in "flat" output such such as:
$ exiv2 -px ~/Stonehenge.jpg
Xmp.xmp.Rating XmpText 1 0
Xmp.xmp.ModifyDate XmpText 25 2015-07-16T20:25:28+01:00
Xmp.dc.description LangAlt 1 lang="x-default" Classic View
exiv2json parses the Exiv2 'Family.Group.Tag' data and restores the structure of the original data in JSON. Code: exiv2json.cpp
$ exiv2json -xmp http://clanmills.com/Stonehenge.jpg
{
"Xmp": {
"xmp": {
"Rating": "0",
"ModifyDate": "2015-07-16T20:25:28+01:00"
},
"dc": {
"description": {
"lang": {
"x-default": "Classic View"
}
}
},
"xmlns": {
"dc": "http:\/\/purl.org\/dc\/elements\/1.1\/",
"xmp": "http:\/\/ns.adobe.com\/xap\/1.0\/"
}
}
}
$
Usage: geotag {-help|-version|-dst|-dryrun|-ascii|-verbose|-adjust value|-tz value|-delta value}+ path+
Geotag reads one or more GPX files and adds GPS Tages to images. Code: geotag.cpp
If the path is a directory, geotag will read all the files in the directory. It constructs a time dictionary of position data, then updates every image with GPS Tags.
Arguments | Description |
---|---|
-ascii | Output in ascii (not UTF8). Prints deg instead of °. |
-dst | Apply 1 hour adjustment for daylight saving time. |
-dryrun | Read arguments and print report. Does not modify images. |
-verbose | Report progress. |
-adjust value | Add/subtract time from image data. |
-tz value | Specify time zone. For example PST = -8:00 |
-delta value | Correction between Image DataTime and GPS time. |
I use this program frequently. I have a little Canon camera which I take when I run. My Samsung Galaxy Watch uploads my runs to Strava and I download the GPX. If I'm in another time-zone and have forgotten to change the time setting in the camera, I use -adjust
to alter the images. The GPX time is always correct, however the camera is normally off by seconds or minutes. This option enables you to correct for inaccuracy in the setting of the camera time.
Usage: iptceasy file
Reads and writes raw metadata. Use -h option for help.
Demonstrates read, set or modify IPTC metadata. Code: iptceasy.cpp
Usage: iptcprint file
Reads and writes raw metadata. Use -h option for help.
Demonstrates Exiv2 library APIs to print Iptc data. Code: iptcprint.cpp
Usage: metacopy [-iecaph] readfile writefile
Reads and writes raw metadata. Use -h option for help.
Metacopy is used to copy a complete metadata block from one file to another. Code: metacopy.cpp
Please note that some metadata such as Exif.Photo.PixelXDimension is considered to be part of the image and will not be copied.
Usage: mrwthumb file
Sample program to extract a Minolta thumbnail from the makernote. Code: mrwthumb.cpp
Usage: xmpparse file
Read an XMP packet from a file, parse it and print all (known) properties. Code: xmpparse.cpp
Usage: xmpprint file
Read an XMP from a file, parse it and print all (known) properties. Code: xmpprint.cpp
Usage: xmpsample file
Demonstrates Exiv2 library high level XMP classes. Code: xmpsample.cpp
Usage: conntest url {-http1_0}
Test http/https/ftp/ssh/sftp connection
Usage: convert-test file
Conversion test driver
Usage: easyaccess-test file
Sample program using high-level metadata access functions
Usage: getopt-test
This program is used to test the function getopt(). Prior to Exiv2 v0.27, the sample programs used the platform's C Runtime Library function getopt(). Visual Studio builds used code in src/getopt.cpp. Due to differences in the platform getopt(), the code in src/getopt.cpp was modified and adopted on every platforms. This test program was added for test and debug purpose. Please note that src/getopt.cpp is compiled and linked into the sample application and is not part of the Exiv2 library.
Usage: ini-test
This program is used to test reading the file ini-test. This program was added in Exiv2 v0.26 when the ~/.exiv2 file was added to the Exiv2 architecture.
Usage: iotest filein fileout1 fileout2
fileouts are overwritten and should match filein exactly
Test programs for BasicIo functions.
Usage: iptctest image
Commands read from stdin.
Sample program test Iptc reading and writing.
Usage: key-test
Key unit tests
Usage: largeiptc-test image datafile
Test for large (>65535 bytes) IPTC buffer
Usage: mmap-test file
Simple mmap tests
Usage: path-test file
Test path IO
Usage: prevtest file
Test access to preview images
Usage: remotetest remotetest file {--nocurl | --curl}
Tester application for testing remote i/o.
Usage: stringto-test
Test conversions from string to long, float and Rational types.
Usage: taglist [--group name|Groups|Exif|Canon|CanonCs|CanonSi|CanonCf|Fujifilm|Minolta|Nikon1|Nikon2|Nikon3|Olympus|Panasonic|Pentax|Sigma|Sony|Iptc|dc|xmp|xmpRights|xmpMM|xmpBJ|xmpTPg|xmpDM|pdf|photoshop|crs|tiff|exif|aux|iptc]
Print Exif tags, MakerNote tags, or Iptc datasets
Print a simple comma separated list of tags defined in Exiv2
This program encodes the library's tag definitions in ascii. The data from this program is formatted as HTML on the web-site. https://exiv2.org/metadata.html
For example, to show the binary definition of Group Nikon3
:
1516 rmills@rmillsmbp:~/gnu/github/exiv2/0.27-maintenance $ taglist Nikon3
Version, 1, 0x0001, Nikon3, Exif.Nikon3.Version, Undefined, Nikon Makernote version
ISOSpeed, 2, 0x0002, Nikon3, Exif.Nikon3.ISOSpeed, Short, ISO speed setting
ColorMode, 3, 0x0003, Nikon3, Exif.Nikon3.ColorMode, Ascii, Color mode
Quality, 4, 0x0004, Nikon3, Exif.Nikon3.Quality, Ascii, Image quality setting
WhiteBalance, 5, 0x0005, Nikon3, Exif.Nikon3.WhiteBalance, Ascii, White balance
Sharpening, 6, 0x0006, Nikon3, Exif.Nikon3.Sharpening, Ascii, Image sharpening setting
Focus, 7, 0x0007, Nikon3, Exif.Nikon3.Focus, Ascii, Focus mode
FlashSetting, 8, 0x0008, Nikon3, Exif.Nikon3.FlashSetting, Ascii, Flash setting
FlashDevice, 9, 0x0009, Nikon3, Exif.Nikon3.FlashDevice, Ascii, Flash device
...
We can see those tags being used:
$ exiv2 -pa --grep Nikon3 http://clanmills.com/Stonehenge.jpg
1519 rmills@rmillsmbp:~/gnu/github/exiv2/0.27-maintenance $ exiv2 -pa --grep Nikon3 http://clanmills.com/Stonehenge.jpg
Exif.Nikon3.Version Undefined 4 2.11
Exif.Nikon3.ISOSpeed Short 2 200
1520 rmills@rmillsmbp:~/gnu/github/exiv2/0.27-maintenance $
...
This information is formatted (search Nikon (format 3) MakerNote Tags): https://exiv2.org/tags-nikon.html
Usage: tiff-test file
Simple TIFF write test
Usage: werror-test
Simple tests for the wide-string error class WError
Usage: write-test file case
where case is an integer between 1 and 11
ExifData write unit tests
Usage: write2-test file
ExifData write unit tests for Exif data created from scratch
Usage: xmpdump file
Sample program to dump the XMP packet of an image
Usage: xmpparser-test file
Read an XMP packet from a file, parse and re-serialize it.
Robin Mills
robin@clanmills.com
Revised: 2019-06-20