ExifTool FAQ

Index
  1. Discussion forum
  2. Determining tag names
  3. Problems with duplicate tags
  4. Aperture and shutter speed
  5. Date and time formats
  6. "Can't convert TAG" errors
  7. Deleting all EXIF from a TIFF
  1. Writing Make, Model and MakerNotes
  2. Tag locations when copying
  3. Coded character sets
  4. User-defined tags
  5. Database import
  6. Output file size
  7. GPS coordinate format

1. "Is there a forum for discussing ExifTool issues?"

ExifTool issues can be discussed on the CPAN forum at http://www.cpanforum.com/dist/Image-ExifTool

2. "How do I determine the tag name for some information?"

When you run exiftool, by default it prints descriptions, not tag names, for the information it extracts. To print the tag names instead, use the ‑s option. Also, see the tag names documentation for a complete list of available tag names.
Tag names may be optionally prefixed by a family 0 or 1 group name to specify a particular information type or location. Use the ‑g0 and ‑g1 (or ‑G0 and ‑G1) options when extracting information to see the corresponding group names.

3a. "ExifTool reports the wrong value for a tag",
3b. "ExifTool doesn't write a tag properly", or
3c. "Other software can't read information written by ExifTool"

Make sure you are looking at the right information. Information may be duplicated in different locations within an image. When in doubt, use "exiftool -a -G1 FILENAME" to show all information and the locations in the file. In this command, ‑a allows duplicate tags to be displayed, ‑G1 shows the family 1 group name (ie. the location) of each tag, and "FILENAME" is the name of your image file. Also, it may be helpful to add ‑s to show the actual tag names instead of the descriptions (and possibly ‑D or ‑H to show the tag ID numbers if you are familiar with these).
If you are having problems with other software reading information written by ExifTool, if possible try first writing the information from the other software, then use ExifTool to determine where the information was written. Once you know where it should go, you can use ExifTool to write to this location.
You can read or write information in a specific location by prefixing the tag name on the command line with the desired group name. ie) "‑ExifIFD:DateTimeOriginal"

4. "ExifTool reports more than one shutter speed or aperture value, and they are slightly different"

There are a number of different ways that aperture and shutter speed information get saved in an image. The standard EXIF values (EXIF:FNumber and EXIF:ExposureTime) should correspond to the values displayed by your camera, but these values may have been rounded off. The APEX values (EXIF:ApertureValue and EXIF:ShutterSpeedValue) may be different due to their own round-off errors. If available, the MakerNotes values are the typically the most accurate because they haven't been rounded off at all, but you may see odd values like 1/102 instead of 1/100, etc.

5. "How do I format date and time information for writing?"

All information (including date/time information) is written in the same format as it is read out. ExifTool converts all date and time information to standard EXIF format, so this is also the way it is specified when writing. The standard EXIF date/time format is "YYYY:MM:DD hh:mm:ss", and a timezone may be specified by adding "+hh:mm", "‑hh:mm" or "Z". If the meta information format requires a timezone and one is not specified, "+00:00" (or "Z") is assumed. For example:
exiftool "-dateTimeOriginal=2005:10:23 20:06:34-05:00" a.jpg

6. "I get the following error when writing a tag: 'Can't convert TAG (not in PrintConv)'"

ExifTool applies a print conversion (PrintConv) to the printed values of all tags. These print conversions are documented for all tags in the Values column of the Tag Name documentation. For example, the GPSAltitudeRef tag defines the following conversions:
0 = Above Sea Level
1 = Below Sea Level
For this tag, a value of '0' is printed as 'Above Sea Level', and '1' is printed as 'Below Sea Level'. Reading and writing with ExifTool is symmetrical, so a value that is printed as 'Above Sea Level' must also be written in that form. (ie. The inverse print conversion is applied when writing values.) For example, to write GPSAltitudeRef you can type:
exiftool "-gpsaltituderef=Above Sea Level" image.jpg
or any unambiguous short form may be used and ExifTool will know what you mean, ie)
exiftool -gpsaltituderef=above image.jpg
Alternatively, the print conversion can be disabled with the ‑n option. In this case the printed value of GPSAltitudeRef will be '0' or '1', and the value is written in the same way. So the following command has exactly the same effect as the commands above:
exiftool -gpsaltituderef=0 -n image.jpg
Integer values may also be specified in hexadecimal (with a leading '0x'). For example, the following commands are all valid and accomplish the same thing:
exiftool -flash=1 -n image.jpg
exiftool -flash=0x1 -n image.jpg
exiftool -flash=fired image.jpg
Programmers: If you are calling Image::ExifTool functions from your own script, the two techniques look like this:
$exifTool->SetNewValue(GPSAltitudeRef => 'Above Sea Level');
$exifTool->SetNewValue(GPSAltitudeRef => 0, Type => 'ValueConv');

7. "I can't delete all EXIF information from a TIFF file using 'exiftool -exif:all= img.tif'"

This is because of the way a TIFF file is structured. With a JPEG image, this command will remove IFD0 (the main Image File Directory) as well as any subdirectories, thus removing all EXIF information. But with the TIFF format, the main image itself is stored in IFD0, so deleting this directory would destroy the image. Instead, ExifTool just deletes the ExifIFD subdirectory, so any information stored in other directories is preserved.
Use "exiftool -a -G1 -s img.tif" to see where the information is stored. Any information remaining in other IFD's must be deleted separately from a TIFF file if desired.

8a. "All maker note information is lost if I change the Make or Model tag", or
8b. "I can't copy maker note information to an image"

The Make and Model tags are used by some image utilities (including ExifTool) to determine the format of the maker note information. Deleting or changing either of these tags may prevent these utilities from recognizing or properly interpreting the maker notes. Also beware that the maker notes information may be damaged if an image is edited when the maker notes are not properly recognized. So it is a good idea not to edit the Make and Model tags in the first place.
If you really want to delete the Make and Model information, you might as well delete the maker notes too. You can do this with the either of the following commands:
exiftool -make= -model= -makernotes:all= image.jpg
exiftool -make= -model= -makernotes= image.jpg
For the same reason, maker notes can not be copied to an image with an incompatible Make or Model. To do this, the Make and Model tags must also be copied. ie)
exiftool -tagsfromfile src.jpg -makernotes -make -model dst.jpg
(Note that in this case the "-makernotes:all" syntax does not work because it attempts to copy the maker note tags individually, but they must be copied as a block with "-makernotes".)

9a. "The information is different when I copy all tags to a new file", or
9b. "The tag locations change when I use ‑tagsfromfile to copy information"

This feature is explained in the exiftool application documentation, but the question is common enough that it is discussed here in more detail.
By default, ExifTool will store information in preferred locations when either writing new information or copying information between files. This freedom allows ExifTool to write or copy information to files of different formats without requiring the user to know details about where the information is stored.
The preferred locations for information written to JPEG images are 1) EXIF, 2) IPTC, 3) XMP and 4) MakerNotes. As an example, information extracted from the maker notes will be preferentially written (on a tag-by-tag basis) in EXIF format when copying information between two JPEG images. But if a specific tag doesn't exist in EXIF, then the tag is written to the first valid group in the order specified above. The advantage of "translating" the information to EXIF is that it then becomes readable by applications which only support standard EXIF. The disadvantage is that you don't get an exact copy of the original information structure.
But ExifTool gives you the ability to customize this behaviour to write the information to wherever you want. This is done by specifying a group name for the tag(s) to be copied. This applies even if the group name is "all", in which case the original group is preserved. So to copy all information and preserve the original structure, use this syntax:
exiftool -tagsfromfile src.jpg -all:all dst.jpg
By specifying a group name with "‑all:all", the location of the information is preserved. (Specifically, since no destination tag was specified the source group "all" was assumed, thus preserving the original group.)
Here are some examples to show you the type of control you have over where the information is written. All commands in each example are equivalent:
# copy all tags to preferred groups (no destination group)
exiftool -tagsfromfile src.jpg dst.jpg
exiftool -tagsfromfile src.jpg -all dst.jpg
exiftool -tagsfromfile src.jpg "-all>all" dst.jpg
exiftool -tagsfromfile src.jpg "-all:all>all" dst.jpg

# copy all tags, preserving original group (destination group 'all')
exiftool -tagsfromfile src.jpg -all:all dst.jpg
exiftool -tagsfromfile src.jpg "-all>all:all" dst.jpg
exiftool -tagsfromfile src.jpg "-all:all>all:all" dst.jpg

# copy all tags to EXIF group only (destination group 'exif')
exiftool -tagsfromfile src.jpg "-all>exif:all" dst.jpg
exiftool -tagsfromfile src.jpg "-all:all>exif:all" dst.jpg

# copy XMP tags to XMP group (destination group 'xmp' or 'all')
exiftool -tagsfromfile src.jpg "-xmp:all" dst.jpg
exiftool -tagsfromfile src.jpg "-xmp:all>xmp:all" dst.jpg
exiftool -tagsfromfile src.jpg "-xmp:all>all:all" dst.jpg

# copy XMP tags to preferred groups (no destination group)
exiftool -tagsfromfile src.jpg "-xmp:all>all" dst.jpg

# copy XMP tags to EXIF only (destination group 'exif')
exiftool -tagsfromfile src.jpg "-xmp:all>exif:all" dst.jpg
The same rules illustrated above also apply when copying individual tags.
Note: If no destination group is specified, a new tag is created if necessary only in the preferred group, but if the same tag already exists in another group, then this information is also updated. (Otherwise inconsistent values for the same information would exist in different locations. Of course, you can always generate inconsistencies like this if you really want to by specifically writing contradictory information to different groups.)

10. "How does ExifTool handle coded character sets?"

Certain meta information formats allow coded character sets other than plain ASCII. When reading, 8-bit encodings are passed straight through ExifTool without translation (unless otherwise specified below), and multi-byte encodings are translated to UTF-8 by default, or Windows Latin1 with the ‑L option (or by setting the "Charset" option to "Latin" via the API). When writing, the inverse translations are performed. (Alternatively, special characters may be translated to HTML character entities by using the ‑E option, but this only applies when reading.) More specific details are given below about how character coding is handled for EXIF, IPTC, XMP and ID3 information:
EXIF: Most textual EXIF information is stored in ASCII format, however some EXIF tags (UserComment, GPSProcessingMethod and GPSAreaInformation) may be also be encoded in Unicode or JIS. When reading information, Unicode text is translated to UTF-8, or Windows Latin1 with the ‑L option. Other encodings are not translated. When writing, text is stored as ASCII unless the string contains special characters, in which case it is translated from UTF-8 or Latin1 (depending on the ‑L option) and stored as Unicode if allowed by the tag specification. The EXIF "XP" tags (XPTitle, XPComment, etc) are always stored as Unicode, and are read and written as either UTF-8, or Windows Latin1 with the ‑L option.
IPTC: The value of the IPTC:CodedCharacterSet tag determines how the internal IPTC string values are interpreted. If CodedCharacterSet exists and has a value of "UTF8" (or "ESC % G") then string values are assumed to be stored as UTF-8, otherwise Latin1 (cp1252) coding is assumed. When reading, these strings are translated to UTF-8 by default, or Latin1 with the ‑L option. When writing, the inverse translation is performed. No translation is done if the internal (IPTC) and external (ExifTool) character sets are the same. Note that ISO 2022 character set shifting is not supported. Instead, a warning is issued and the string is not translated if an ISO 2022 shift code is found. See the IPTC specification for more information about IPTC character coding.
XMP: Exiftool reads XMP encoded as UTF-8, UTF-16 or UTF-32, and converts them all to UTF-8 internally. Also, all XML character entity references and numeric character references are converted. When writing, ExifTool always encodes XMP as UTF-8, converting the following 5 characters to XML character references: & < > ' ". By default no further translation is performed, however the ‑L option may be used used to translate text to Windows Latin1 when reading or from Windows Latin1 when writing.
ID3: The ID3v1 specification officially supports only ISO 8859-1 encoding although some applications may incorrectly use other character sets. ExifTool assumes proper ISO 8859-1 encoding and translates to UTF-8 by default, or disables translation with the ‑L option (since ISO 8859-1 is a subset of Windows Latin1). ID3v2 text is may be stored with a number of different encodings, and ExifTool translates them all to UTF-8 by default or Windows Latin1 with the ‑L option. ExifTool does not currently write ID3 information.

11. "My user-defined tags don't work"

For examples of how to add user-defined tags, see the ExifTool_config file in the ExifTool distribution. To activate this file, rename it to ".ExifTool_config" and copy it to your HOME directory. With this installed, you should be able to write and read the example tags (such as "NewXMPxxxTag1"). Try this first before you attempt to define your own tags.
If this doesn't work, the most common problem is that the ".ExifTool_config" configuration file isn't getting loaded properly, and there are two things you can try: 1) Set either the HOME or the EXIFTOOL_HOME environment variable to the name of the directory where you put your ".ExifTool_config" file, or 2) put the config file in the same directory as the exiftool script. (Also, be sure the config filename starts with a dot! In the Windows GUI you may be not be able to generate a file name that starts with a '.', but it can be done from the command line using the 'rename' command.)
If necessary, you can verify that ExifTool is loading your config file by adding the following line to your file:
print "LOADED!\n";
If you see a "LOADED!" message when you run exiftool, but your new tags still don't work, make sure you are using the proper tag name and that the file you are writing can support these names. Try copying the "t/images/Writer.jpg" file from the distribution and running exiftool with the following command:
exiftool -v3 -NewXMPxxxTag1=test Writer.jpg
If ExifTool recognizes the new tag, the first line of output from this command should be
"Writing XMP-xxx:NewXMPxxxTag1"
Then you can read back the new tag with "exiftool -s Writer.jpg".

12. "How do I import information into a database from exiftool?"

It is usually easiest to import information which is formatted as a tab-delimited list of values. The following exiftool options may be useful for this purpose:
-t  - use a tab instead of spaces to separate output values
-S  - very short format (with -t, prints only tag values)
-q  - quiet (supresses any other messages)
-f  - force '-' to be printed for non-existent values
-r  - recursively process files in subdirectories
And here is an example of an actual command using these options:
exiftool -t -S -q -f -r -filename -aperture -ISO t/images > out.txt
This command recursively processes all images in the "t/images" directory, extracting FileName, Aperture and ISO tags, and writing the output to a file called "out.txt". After the command has executed, the output file will contain information in the following format:
Canon.jpg       14.0    100
Casio.jpg       2.0     -
Nikon.nef       3.5     200
OlympusE1.jpg   4.5     400
It should be possible to import a file like this directly into most database applications. On the command line, any list of tag names may be used, and any number of file or directory names may be specified. (Hint: If your command line starts to get too long, you may want to look into using the ‑@ option and/or the ShortCut feature).

13. "Why is my file smaller after I use ExifTool to write information?"

There are various specific reasons why this can happen, but the general answer is: When ExifTool writes an image, the meta information may be restructured in such a way that it takes less space than in the original file.
For instance, the EXIF/TIFF standard allows for blocks of unreferenced data to exist in an image. Some digital cameras write JPEG or TIFF-based RAW files which contain large blocks of unused data, usually filled with binary zeros. The reason for this could be to simplify camera algorithms by allowing variable-sized information to be written at fixed offsets in the output image. When ExifTool rewrites an image it does not copy these unused blocks. This can result in a significant reduction in file size for some images.
Also, the size of an XMP record may easily shrink or grow when it is rewritten, even if no meta information is changed. This is partly due to the fact that the XMP specification recommends a few KB of padding at the end of the record (ExifTool adds 2424 bytes by default), and partly due to the flexibility of the XMP format which allows the information to be written in various styles, some of which are more compact than others.
ExifTool does not modify the image data itself, so editing a file is "lossless" as far as the image is concerned.

14. "What format do I use for writing GPS coordinates?"

ExifTool is very flexible in the formats allowed for entering GPS coordinates. Basically any string containing between 1 and 3 floating point numbers is valid. The numbers represent degrees, (and optionally) minutes and seconds.
For EXIF GPS coordinates, the reference direction is specified separately with the EXIF:GPSLatitudeRef or EXIF:GPSLongitudeRef tag.
For XMP GPS coordinates, the reference direction is specified within the XMP:GPSLatitude or XMP:GPSLongitude value, with west longitudes and south latitudes being specified either by negative coordinate values or by ending the string with "W" or "S".
Here are some examples of equivalent ways to specify a GPS latitude in both EXIF and XMP:
exiftool "-exif:gpslatitude=42 30 0.00" -exif:gpslatituderef=S a.jpg
exiftool "-exif:gpslatitude=42 deg 30.00 min" -exif:gpslatituderef=S a.jpg
exiftool -exif:gpslatitude=42.5 -exif:gpslatituderef=S a.jpg

exiftool "-xmp:gpslatitude=42 30 0.00 S" a.jpg
exiftool -xmp:gpslatitude=42.50S a.jpg
exiftool -xmp:gpslatitude=-42.5 a.jpg
Similar styles may be used for longitude. ExifTool will convert any of these coordinate styles to the proper format for the specific tag used.

Last revised Sept. 17, 2007

<-- Back to ExifTool home page