1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>ExifTool by Phil Harvey</title>
<meta name="description" content="A command-line application and Perl library for
reading and writing EXIF, GPS, IPTC, XMP, makernotes and other meta information
in image, audio and video files. For Windows, MacOS, and Unix systems.">
<meta name="KeyWords" content="meta, information, metadata, ExifTool, EXIF, XMP,
IPTC, GPS, read, write, edit, editor, update, extract, images, thumbnail,
preview, geotag, geocode, Perl, library, module, RAW, NEF, CR2, MRW, JPEG, TIFF,
ID3, Windows, OSX, Unix">
<link rel=stylesheet type='text/css' href='style.css' title='Style'>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#b6ad56">
<meta name="msapplication-TileColor" content="#ffc40d">
<meta name="theme-color" content="#ffffff">
<style type="text/css">
<!--
body { margin: 0 .5em; color: black; background: white;
font-family: helvetica; font-size: .9em }
h1 { margin: .2em 0 }
h2.tight { margin: 0 0 .35em 0; font-weight: normal }
a.wt { color: white; text-decoration: none; }
a:hover.wt { text-decoration: underline; }
a:active.wt { color: red; }
pre { color: #800; padding: 0; margin: 0 }
blockquote { margin-top: 1em; margin-bottom: 1em }
blockquote.s { margin-left: 1em; margin-right: 1em }
div.wide { margin: 0 -.5em }
table.tight td { padding: 1px 1px 0px 3px }
table.links { border-collapse: collapse; width: 100%; margin: 0 }
table.links th { border-right: 1px solid white; font-weight: normal;
width: 17%; background: #008 }
table.links th.rt { border-right: 0 }
table.dl { border: 1px solid gray; border-collapse: collapse }
table.dl td { padding: .4em .8em }
table.bm { margin: 0 0 .35em 0 }
span.sup { font-size: 0.8em; font-weight: normal; position: relative; top: -.4em; }
-->
</style>
</head>
<body>
<h1><a name="top">ExifTool by Phil Harvey</a></h1>
<h2 class='tight red'><b>Read</b>, <b>Write</b> and <b>Edit</b> Meta Information!</h2>
<p><b>Also available</b> --> <a href="https://exiftool.org/fix_corrupted_nef.html">Utility to fix Nikon NEF images corrupted by Nikon software</a></p>
<div class=wide><table class=links><tr>
<th><a href="install.html" class=wt> Installing </a></th>
<th><a href="TagNames/index.html" class=wt> Tag Names </a></th>
<th><a href="#links" class=wt> Resources </a></th>
<th><a href="history.html" class=wt> History </a></th>
<th><a href="https://exiftool.org/forum/" class=wt> Forum </a></th>
<th class=rt><a href="faq.html" class=wt> FAQ </a></th>
</tr></table></div>
<div class=index>
<a href="#features">Features</a>
<br><a href="#comments">User Comments</a>
<br><a href="#supported">Supported File Types</a>
<br><a href="#system">System Requirements</a>
<br><a href="#running">Running ExifTool</a>
<br><a href="#output">Example Output</a>
<br><a href="#tagnames">Tag Names Explained</a>
<br><a href="#groups">Tag Groups</a>
<br><a href="#writing">Writing Information</a>
<br><a href="#limitations">Writer Limitations</a>
<br><a href="#problems">Known Problems</a>
<br><a href="#security">Security Issues</a>
<br><a href="#shift">Date/Time Shift</a>
<br><a href="#filename">Renaming Files</a>
<br><a href="#performance">Performance</a>
<br><a href="#library">ExifTool Library</a>
<br><a href="#links">Additional Resources</a>
<br><a href="#boldly">New Discoveries</a>
<br><a href="#ack">Acknowledgements</a>
<br><a href="#license">License</a>
<br><a href="#donate">Donate</a>
<br><a href="#contact">Contact Me</a>
</div>
<blockquote><table class='dl lg'><tr><td><b>
<a href="Image-ExifTool-12.16.tar.gz">
Download Version 12.16</a> (4.7 MB) -
<a href="history.html">Jan. 21, 2021</a></b></td></tr></table></blockquote>
<p><b>ExifTool is a platform-independent <a href="ExifTool.html">Perl
library</a> plus a <a href="exiftool_pod.html">command-line application</a> for
reading, writing and editing meta information in a
<a href="#supported">wide variety of files</a>.</b>
ExifTool supports many different metadata formats including
<a href="TagNames/EXIF.html">EXIF</a>,
<a href="TagNames/GPS.html">GPS</a>,
<a href="TagNames/IPTC.html">IPTC</a>,
<a href="TagNames/XMP.html">XMP</a>,
<a href="TagNames/JFIF.html">JFIF</a>,
<a href="TagNames/GeoTiff.html">GeoTIFF</a>,
<a href="TagNames/ICC_Profile.html">ICC Profile</a>,
<a href="TagNames/Photoshop.html">Photoshop IRB</a>,
<a href="TagNames/FlashPix.html">FlashPix</a>,
<a href="TagNames/AFCP.html">AFCP</a> and
<a href="TagNames/ID3.html">ID3</a>,
<a href="TagNames/ID3.html#Lyrics3">Lyrics3</a>,
as well as the maker notes of many digital cameras by
<a href="TagNames/Canon.html">Canon</a>,
<a href="TagNames/Casio.html">Casio</a>,
<a href="TagNames/DJI.html">DJI</a>,
<a href="TagNames/FLIR.html">FLIR</a>,
<a href="TagNames/FujiFilm.html">FujiFilm</a>,
<a href="TagNames/GE.html">GE</a>,
<a href="TagNames/GoPro.html">GoPro</a>,
<a href="TagNames/HP.html">HP</a>,
<a href="TagNames/JVC.html">JVC/Victor</a>,
<a href="TagNames/Kodak.html">Kodak</a>,
<a href="TagNames/Leaf.html">Leaf</a>,
<a href="TagNames/Minolta.html">Minolta/Konica-Minolta</a>,
<a href="TagNames/Motorola.html">Motorola</a>,
<a href="TagNames/Nikon.html">Nikon</a>,
<a href="TagNames/Nintendo.html">Nintendo</a>,
<a href="TagNames/Olympus.html">Olympus/Epson</a>,
<a href="TagNames/Panasonic.html">Panasonic/Leica</a>,
<a href="TagNames/Pentax.html">Pentax/Asahi</a>,
<a href="TagNames/PhaseOne.html">Phase One</a>,
<a href="TagNames/Reconyx.html">Reconyx</a>,
<a href="TagNames/Ricoh.html">Ricoh</a>,
<a href="TagNames/Samsung.html">Samsung</a>,
<a href="TagNames/Sanyo.html">Sanyo</a>,
<a href="TagNames/Sigma.html">Sigma/Foveon</a> and
<a href="TagNames/Sony.html">Sony</a>.</p>
<p>ExifTool is also available as a <b>stand-alone Windows executable</b> and a
<b>MacOS package</b>: <i>(Note that these versions contain the executable
only, and do not include the HTML documentation or other files of the full
distribution above.)</i></p>
<blockquote><table class='dl lg'><tr><td><b>
<a name="alone">Windows Executable:</a>
<a href="exiftool-12.16.zip">
exiftool-12.16.zip</a> (6.3 MB)</b></td></tr></table></blockquote>
<p><b>The stand-alone Windows executable</b> does not require Perl. Just
download and un-zip the archive then double-click on
"<code>exiftool(-k).exe</code>" to read the application documentation,
drag-and-drop files and folders to view meta information, or rename to
"<code>exiftool.exe</code>" for command-line use. Runs on all versions
of Windows.</p>
<p><i>(Note: Oliver Betz provides an
<a href="https://oliverbetz.de/pages/Artikel/ExifTool-for-Windows">alternate ExifTool Windows installer</a>
that avoids some problems of the self-extracting archive version above. Please post
<a href="https://exiftool.org/forum/index.php/topic,10128.0.html">here</a>
if you have any problems/comments with this version.)</i></p>
<blockquote><table class='dl lg'><tr><td><b>
MacOS Package:
<a href="ExifTool-12.16.dmg">
ExifTool-12.16.dmg</a> (3.0 MB)</b></td></tr></table></blockquote>
<p><b>The MacOS package</b> installs the ExifTool command-line application and
libraries in /usr/local/bin. After installing, type "<code>exiftool</code>" in a
Terminal window to run exiftool and read the application documentation.</p>
<p>Read the <b><a href="install.html">installation instructions</a></b> for help
installing ExifTool on Windows, MacOS and Unix systems.</p>
<ul>
<li><a href="https://exiftool.org/checksums.txt">Click here
for the SHA1 and MD5 checksums to verify these distribution packages</a>.</li>
<li>The version number of the latest ExifTool release may be found
<a href="https://exiftool.org/ver.txt">here</a>.</li>
</ul>
<h2><a name="features">Features</a></h2>
<ul>
<li>Powerful, fast, flexible and customizable</li>
<li><a href="#supported">Supports a large number of different file formats</a></li>
<li>Reads <a href="TagNames/EXIF.html">EXIF</a>,
<a href="TagNames/GPS.html">GPS</a>,
<a href="TagNames/IPTC.html">IPTC</a>,
<a href="TagNames/XMP.html">XMP</a>,
<a href="TagNames/JFIF.html">JFIF</a>, MakerNotes,
<a href="TagNames/GeoTiff.html">GeoTIFF</a>,
<a href="TagNames/ICC_Profile.html">ICC Profile</a>,
<a href="TagNames/Photoshop.html">Photoshop IRB</a>,
<a href="TagNames/FlashPix.html">FlashPix</a>,
<a href="TagNames/AFCP.html">AFCP</a>,
<a href="TagNames/ID3.html">ID3</a>,
<a href="TagNames/ID3.html#Lyrics3">Lyrics3</a> and more...</li>
<li>Writes <a href="TagNames/EXIF.html">EXIF</a>,
<a href="TagNames/GPS.html">GPS</a>,
<a href="TagNames/IPTC.html">IPTC</a>,
<a href="TagNames/XMP.html">XMP</a>,
<a href="TagNames/JFIF.html">JFIF</a>, MakerNotes,
<a href="TagNames/GeoTiff.html">GeoTIFF</a>,
<a href="TagNames/ICC_Profile.html">ICC Profile</a>,
<a href="TagNames/Photoshop.html">Photoshop IRB</a>,
<a href="TagNames/AFCP.html">AFCP</a> and more...</li>
<li>Reads and writes maker notes of many digital cameras</li>
<li>Reads <a href="TagNames/QuickTime.html#Stream">timed metadata</a> (eg. GPS track) from MOV/MP4/M2TS/AVI videos</li>
<li>Numerous output formatting options (including tab-delimited, HTML, XML and JSON)</li>
<li>Multi-lingual output (cs, de, en, en-ca, en-gb, es, fi, fr, it, ja, ko, nl, pl, ru, sv, tr, zh-cn or zh-tw)</li>
<li><a href="geotag.html">Geotags images</a> from GPS track log files (with time drift correction!)</li>
<li><a href="geotag.html#Reverse">Generates track logs</a> from geotagged images</li>
<li><a href="#shift">Shifts date/time values</a> to fix timestamps in images</li>
<li><a href="#filename">Renames files and organizes in directories</a> (by date
or by any other meta information)</li>
<li>Extracts thumbnail images, preview images, and large JPEG images from RAW files</li>
<li>Copies meta information between files (even different-format files)</li>
<li>Reads/writes <a href="struct.html">structured XMP information</a></li>
<li>Deletes meta information individually, in groups, or altogether</li>
<li>Sets the file modification date (and creation date in Mac and Windows) from EXIF information</li>
<li>Supports alternate language tags in <a href="TagNames/XMP.html">XMP</a>,
<a href="TagNames/PNG.html#TextualData">PNG</a>, <a href="TagNames/ID3.html">ID3</a>,
<a href="TagNames/Font.html#Name">Font</a>, <a href="TagNames/QuickTime.html">QuickTime</a>,
<a href="TagNames/ICC_Profile.html">ICC Profile</a>, <a href="TagNames/MIE.html">MIE</a> and
<a href="TagNames/MXF.html">MXF</a> information</li>
<li>Processes entire directory trees</li>
<li>Creates text output file for each image file</li>
<li>Creates binary-format metadata-only (MIE, EXV) files for metadata backup</li>
<li>Automatically backs up original image when writing</li>
<li>Organizes output into groups</li>
<li>Conditionally processes files based on value of any meta information</li>
<li>Ability to <a href="config.html">add custom user-defined tags</a></li>
<li><a href="TagNames/MWG.html">Support for MWG</a> (Metadata Working Group) recommendations</li>
<li>Recognizes <a href="TagNames/index.html">thousands of different tags</a></li>
<li>Tested with images from <a href="https://exiftool.org/models.html">thousands of different camera models</a></li>
<li>Advanced <a href="verbose.html">verbose</a> and <a href="htmldump.html">HTML-based
hex dump</a> outputs</li>
</ul>
<h2><a name="awk">A Note to Unix Power-Users</a></h2> <blockquote>If you find
the need to use "find" or "awk" in conjunction with ExifTool, then you probably
haven't discovered the full power of ExifTool. Read about the <code>-ext</code>,
<code>-if</code>, <code>-p</code> and <code>-tagsFromFile</code> options in the
<a href="exiftool_pod.html">application documentation</a>. (This is
<a href="mistakes.html#M3">common mistake number 3</a>.)</blockquote>
<h2><a name="comments">What People are Saying about ExifTool</a></h2>
<blockquote>
<i>"In my experience, nothing but nothing is as complete, powerful, and flexible as
Phil Harvey's exiftool ... I've never seen anything that's in the same ballpark for power."</i>
- <a href="http://forums.dpreview.com/forums/read.asp?forum=1034&message=16582684">dpreview forum</a></blockquote>
<blockquote><i>"While there are a lot of image tools available, nothing comes close for accessing/updating
the metadata like ExifTool"</i> - <a href="http://web.archive.org/web/20080307105031/http://blog.merg.be/?p=242">merg's blog</a></blockquote>
<blockquote><i>"Fast, reliable and amazingly comprehensive ..."</i>
- <a href="http://cpanratings.perl.org/dist/Image-ExifTool">CPAN ratings</a></blockquote>
<blockquote><i>"... the one piece of free software that gets the most
detailed exif data of /any/ tool I've found."</i>
- <a href="http://mail.gnome.org/archives/eog-list/2005-August/msg00002.html">gnome mail archives</a>
</blockquote>
<!-- <blockquote><i>"... no program or API gets close to ExifTool in terms of robustness,
feature count and support."</i> - <a href="http://www.christian-etter.de/?p=33">CE's Blog</a>
</blockquote> [dead link] -->
<blockquote><i>"ExifTool makes every other EXIF reader (and writer) than I've
seen, including the camera manufacturers' readers, look lame."</i>
- <a href="https://www.photo.net/discuss/threads/d200-exif-focus-distance.243629/">photo.net Nikon forum</a>
</blockquote>
<blockquote><i>"Insanely great tool with a long learning curve ..."</i> -
<a href="http://forums.adobe.com/message/1800175#1800175">Adobe Forums</a>
</blockquote>
<blockquote><i>"ExifTool has been outstanding in our custom used Tesla image gallery build.
We are able to aggregate image meta from our user base and incorporate this into development
iterations to continually optimize our platform..."</i>
- <a href="https://www.findmyelectric.com/">Find My Electric</a></blockquote>
<blockquote><i>"... it's super awesome, it's super reliable and after many years of
development it's still being updated!"</i> -
<a href="http://pw999.wordpress.com/2012/05/12/j-exiftool-read-and-write-exif-tags-in-java/">P_W999 blog</a>
</blockquote>
<blockquote><i>"... it is the mother of all EXIF utilities; the BFG of meta-data
extraction; the Pan Galactic Gargle Blaster of EXIF tools ... This thing will
suck the last bit of metadata out of whatever image file you throw at it!"</i> -
<a href="http://www.openphotographyforums.com/forums/showpost.php?p=4774&postcount=40">Open Photography Forums</a>
</blockquote>
<blockquote><i>"... it is total fucking gibberish to me."</i> -
<a href="https://www.reddit.com/r/linuxquestions/comments/2yiked/i_want_to_batch_extract_the_exif_datetime_from_10/">Reddit Linux Questions</a>
</blockquote>
<h2><a name="supported">Supported File Types</a></h2>
<p>ExifTool can <b>R</b>ead, <b>W</b>rite and/or <b>C</b>reate files in the following formats.
Also listed are the support levels for EXIF, IPTC, XMP, ICC_Profile and other metadata types
for each file format.</p>
<blockquote class=s><table class='norm tight sm bm'>
<tr><th>File Type</th><th>Support</th><th>Description</th><th><a href="TagNames/EXIF.html">EXIF</a></th><th><a href="TagNames/IPTC.html">IPTC</a></th><th><a href="TagNames/XMP.html">XMP</a></th><th><a href="TagNames/ICC_Profile.html">ICC</a><span class=sup>1</span></th><th>Other</th></tr>
<tr><td>360</td><td>R/W</td><td>GoPro 360 video (<a href="TagNames/QuickTime.html">QuickTime</a>-based)</td><td>R/W<span class=sup>3</span></td><td>R/W<span class=sup>3</span></td><td>R/W/C</td><td>-</td><td>R/W/C <a href="TagNames/QuickTime.html">QuickTime</a>, R <a href="TagNames/GoPro.html#GPMF">GoPro</a></td></tr>
<tr><td>3FR</td><td>R</td><td>Hasselblad RAW (<a href="TagNames/EXIF.html">TIFF</a>-based)</td><td>R</td><td>R</td><td>R</td><td>R</td><td>-</td></tr>
<tr><td>3G2, 3GP2</td><td>R/W</td><td>3rd Gen. Partnership Project 2 a/v (<a href="TagNames/QuickTime.html">QuickTime</a>-based)</td><td>R/W<span class=sup>3</span></td><td>R/W<span class=sup>3</span></td><td>R/W/C</td><td>-</td><td>R/W/C <a href="TagNames/QuickTime.html">QuickTime</a></td></tr>
<tr><td>3GP, 3GPP</td><td>R/W</td><td>3rd Gen. Partnership Project a/v (<a href="TagNames/QuickTime.html">QuickTime</a>-based)</td><td>R/W<span class=sup>3</span></td><td>R/W<span class=sup>3</span></td><td>R/W/C</td><td>-</td><td>R/W/C <a href="TagNames/QuickTime.html">QuickTime</a></td></tr>
<tr><td><a href="TagNames/EXE.html#AR">A</a></td><td>R</td><td>Unix static library code Archive</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/EXE.html#AR">EXE</a></td></tr>
<tr><td><a href="TagNames/Audible.html">AA</a></td><td>R</td><td>Audible Audiobook</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/Audible.html">Audible</a></td></tr>
<tr><td>AAE</td><td>R</td><td>Apple edit information (XML <a href="TagNames/PLIST.html">PLIST</a>-based)</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/PLIST.html">PLIST</a></td></tr>
<tr><td>AAX</td><td>R/W</td><td>Audible Enhanced Audiobook (<a href="TagNames/QuickTime.html">QuickTime</a>-based)</td><td>R/W<span class=sup>3</span></td><td>R/W<span class=sup>3</span></td><td>R/W/C</td><td>-</td><td>R/W/C <a href="TagNames/QuickTime.html">QuickTime</a></td></tr>
<tr><td><a href="TagNames/DICOM.html">ACR</a></td><td>R</td><td>American College of Radiology ACR-NEMA (DICOM-like)</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/DICOM.html">DICOM</a></td></tr>
<tr><td><a href="TagNames/Font.html">AFM, ACFM, AMFM</a></td><td>R</td><td>Adobe [Composite/Multiple Master] Font Metrics</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/Font.html">Font</a></td></tr>
<tr><td>AI, AIT</td><td>R/W</td><td>Adobe Illustrator [Template] (<a href="TagNames/PostScript.html">PS</a> or <a href="TagNames/PDF.html">PDF</a>)</td><td>R/W/C<span class=sup>4</span></td><td>R/W/C<span class=sup>4</span></td><td>R/W/C<span class=sup>5</span></td><td>R/W/C<span class=sup>4</span></td><td>R/W/C <a href="TagNames/PDF.html">PDF</a> <a href="TagNames/PostScript.html">PostScript</a>, R <a href="TagNames/Photoshop.html">Photoshop</a></td></tr>
<tr><td><a href="TagNames/AIFF.html">AIFF, AIF, AIFC</a></td><td>R</td><td>Audio Interchange File Format [Compressed]</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/AIFF.html">AIFF</a> <a href="TagNames/ID3.html">ID3</a> <a href="TagNames/ID3.html#Lyrics3">Lyrics3</a></td></tr>
<tr><td><a href="TagNames/APE.html">APE</a></td><td>R</td><td>Monkey's Audio</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/APE.html">APE</a> <a href="TagNames/ID3.html">ID3</a> <a href="TagNames/ID3.html#Lyrics3">Lyrics3</a></td></tr>
<tr><td>ARQ</td><td>R/W</td><td>Sony Alpha Pixel-Shift RAW (<a href="TagNames/EXIF.html">TIFF</a>-based)</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W <a href="TagNames/Sony.html">Sony</a> <a href="TagNames/SonyIDC.html">SonyIDC</a></td></tr>
<tr><td>ARW</td><td>R/W</td><td>Sony Alpha RAW (<a href="TagNames/EXIF.html">TIFF</a>-based)</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W <a href="TagNames/Sony.html">Sony</a> <a href="TagNames/SonyIDC.html">SonyIDC</a></td></tr>
<tr><td><a href="TagNames/ASF.html">ASF</a></td><td>R</td><td>Microsoft Advanced Systems Format</td><td>-</td><td>-</td><td>R</td><td>-</td><td>R <a href="TagNames/ASF.html">ASF</a></td></tr>
<tr><td>AVI</td><td>R</td><td>Audio Video Interleaved (<a href="TagNames/RIFF.html">RIFF</a>-based)</td><td>R<span class=sup>3</span></td><td>-</td><td>R</td><td>-</td><td>R <a href="TagNames/RIFF.html">RIFF</a></td></tr>
<tr><td>AVIF</td><td>R/W</td><td>AV1 Image File Format (<a href="TagNames/QuickTime.html">QuickTime</a>-based)</td><td>R/W/C</td><td>-</td><td>R/W/C</td><td>R/W</td><td>R/W <a href="TagNames/QuickTime.html">QuickTime</a></td></tr>
<tr><td><a href="TagNames/BMP.html">BMP, DIB</a></td><td>R</td><td>Windows BitMaP / Device Independent Bitmap</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/BMP.html">BMP</a></td></tr>
<tr><td><a href="TagNames/BPG.html">BPG</a></td><td>R</td><td>Better Portable Graphics</td><td>R</td><td>-</td><td>R</td><td>R</td><td>R <a href="TagNames/BPG.html">BPG</a></td></tr>
<tr><td><a href="TagNames/EXIF.html">BTF</a></td><td>R</td><td>BigTIFF (64-bit Tagged Image File Format)</td><td>R</td><td>R</td><td>R</td><td>R</td><td>-</td></tr>
<tr><td><a href="TagNames/EXE.html#CHM">CHM</a></td><td>R</td><td>Microsoft Compiled HTML format</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/EXE.html#CHM">EXE</a></td></tr>
<tr><td>COS</td><td>R</td><td>Capture One Settings (XML-based)</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R XML</td></tr>
<tr><td>CR2</td><td>R/W</td><td>Canon RAW 2 (<a href="TagNames/EXIF.html">TIFF</a>-based) (<a href="http://lclevy.free.fr/cr2/">CR2 spec</a>)</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W <a href="TagNames/Canon.html">Canon</a>, R/W/C <a href="TagNames/CanonVRD.html">CanonVRD</a><span class=sup>2</span></td></tr>
<tr><td>CR3</td><td>R/W</td><td>Canon RAW 3 (<a href="TagNames/QuickTime.html">QuickTime</a>-based) (<a href="https://github.com/lclevy/canon_cr3">CR3 spec</a>)</td><td>R/W/C</td><td>-</td><td>R/W/C</td><td>-</td><td>R/W <a href="TagNames/Canon.html">Canon</a> <a href="TagNames/QuickTime.html">QuickTime</a>, R/W/C <a href="TagNames/CanonVRD.html">CanonVRD</a><span class=sup>2</span></td></tr>
<tr><td>CRM</td><td>R/W</td><td>Canon RAW Movie (<a href="TagNames/QuickTime.html">QuickTime</a>-based)</td><td>R/W/C</td><td>-</td><td>R/W/C</td><td>-</td><td>R/W <a href="TagNames/Canon.html">Canon</a> <a href="TagNames/QuickTime.html">QuickTime</a></td></tr>
<tr><td><a href="TagNames/CanonRaw.html">CRW, CIFF</a></td><td>R/W</td><td>Canon RAW Camera Image File Format (<a href="canon_raw.html">CRW spec</a>)</td><td>-</td><td>-</td><td>R/W/C</td><td>-</td><td>R/W <a href="TagNames/CanonRaw.html">CanonRaw</a>, R/W/C <a href="TagNames/CanonVRD.html">CanonVRD</a><span class=sup>2</span></td></tr>
<tr><td>CS1</td><td>R/W</td><td>Sinar CaptureShop 1-shot RAW (<a href="TagNames/Photoshop.html">PSD</a>-based)</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R <a href="TagNames/Photoshop.html">Photoshop</a></td></tr>
<tr><td>CSV</td><td>R</td><td>Comma-Separated Values</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/Text.html">Text</a></td></tr>
<tr><td><a href="TagNames/ZISRAW.html">CZI</a></td><td>R</td><td>Zeiss Integrated Software RAW (<a href="TagNames/ZISRAW.html">ZISRAW</a>)</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/ZISRAW.html">ZISRAW</a>, R XML</td></tr>
<tr><td><a href="TagNames/DICOM.html">DCM, DC3, DIC, DICM</a></td><td>R</td><td>DICOM - Digital Imaging and Communications in Medicine</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/DICOM.html">DICOM</a></td></tr>
<tr><td>DCP</td><td>R/W</td><td>DNG Camera Profile (<a href="TagNames/DNG.html">DNG</a>-like)</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>-</td></tr>
<tr><td>DCR</td><td>R</td><td>Kodak Digital Camera RAW (<a href="TagNames/EXIF.html">TIFF</a>-based)</td><td>R</td><td>R</td><td>R</td><td>R</td><td>-</td></tr>
<tr><td><a href="TagNames/Font.html">DFONT</a></td><td>R</td><td>Macintosh Data Fork Font</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/Font.html">Font</a></td></tr>
<tr><td>DIVX</td><td>R</td><td>DivX media format (<a href="TagNames/ASF.html">ASF</a>-based)</td><td>-</td><td>-</td><td>R</td><td>-</td><td>R <a href="TagNames/ASF.html">ASF</a></td></tr>
<tr><td><a href="TagNames/DjVu.html">DJVU, DJV</a></td><td>R</td><td>DjVu image (AIFF-like)</td><td>-</td><td>-</td><td>R</td><td>-</td><td>R <a href="TagNames/DjVu.html">DJVU</a></td></tr>
<tr><td><a href="TagNames/DNG.html">DNG</a></td><td>R/W</td><td>Digital Negative (<a href="TagNames/EXIF.html">TIFF</a>-based)</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>-</td></tr>
<tr><td>DOC, DOT</td><td>R</td><td>Microsoft Word Document/Template (<a href="TagNames/FlashPix.html">FPX</a>-like)</td><td>-</td><td>-</td><td>R</td><td>R</td><td>R <a href="TagNames/FlashPix.html">FlashPix</a></td></tr>
<tr><td><a href="TagNames/OOXML.html">DOCX, DOCM</a></td><td>R</td><td>Office Open XML Document [Macro-enabled]</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/OOXML.html">XML</a> <a href="TagNames/ZIP.html">ZIP</a></td></tr>
<tr><td><a href="TagNames/OOXML.html">DOTX, DOTM</a></td><td>R</td><td>Office Open XML Document Template [Macro-enabled]</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/OOXML.html">XML</a> <a href="TagNames/ZIP.html">ZIP</a></td></tr>
<tr><td><a href="TagNames/DPX.html">DPX</a></td><td>R</td><td>Digital Picture Exchange</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/DPX.html">DPX</a></td></tr>
<tr><td><a href="TagNames/CanonVRD.html#DR4">DR4</a></td><td>R/W/C<span class=sup>2</span></td><td>Canon DPP version 4 Recipe</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R/W/C <a href="TagNames/CanonVRD.html">CanonVRD</a><span class=sup>2</span></td></tr>
<tr><td><a href="TagNames/Olympus.html#DSS">DSS, DS2</a></td><td>R</td><td>Digital Speech Standard [2]</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/Olympus.html#DSS">Olympus</a></td></tr>
<tr><td><a href="TagNames/EXE.html#MachO">DYLIB</a></td><td>R</td><td>MacOS Mach-O executable and library files</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/EXE.html#MachO">EXE</a></td></tr>
<tr><td><a href="TagNames/DV.html">DV</a></td><td>R</td><td>Digital Video</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/DV.html">DV</a></td></tr>
<tr><td>DVB</td><td>R/W</td><td>Digital Video Broadcasting (<a href="TagNames/QuickTime.html">QuickTime</a>-based)</td><td>R/W<span class=sup>3</span></td><td>R/W<span class=sup>3</span></td><td>R/W/C</td><td>-</td><td>R/W/C <a href="TagNames/QuickTime.html">QuickTime</a></td></tr>
<tr><td>DVR-MS</td><td>R</td><td>Microsoft Digital Video Recording (<a href="TagNames/ASF.html">ASF</a>-based)</td><td>-</td><td>-</td><td>R</td><td>-</td><td>R <a href="TagNames/ASF.html">ASF</a></td></tr>
<tr><td>EIP</td><td>R</td><td>Capture One Enhanced Image Package (<a href="TagNames/ZIP.html">ZIP</a>-based)</td><td>R</td><td>-</td><td>-</td><td>-</td><td>R XML <a href="TagNames/ZIP.html">ZIP</a></td></tr>
<tr><td><a href="TagNames/PostScript.html">EPS, EPSF, PS</a></td><td>R/W</td><td>[Encapsulated] PostScript Format</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C <a href="TagNames/PostScript.html">PostScript</a>, R <a href="TagNames/Photoshop.html">Photoshop</a></td></tr>
<tr><td>EPUB</td><td>R</td><td>Electronic Publication (ZIP/XML-based)</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R XML <a href="TagNames/ZIP.html">ZIP</a></td></tr>
<tr><td>ERF</td><td>R/W</td><td>Epson RAW Format (<a href="TagNames/EXIF.html">TIFF</a>-based)</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W <a href="TagNames/Olympus.html">Olympus</a></td></tr>
<tr><td><a href="TagNames/EXE.html">EXE, DLL</a></td><td>R</td><td>DOS/Windows executable and library files</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/EXE.html">EXE</a></td></tr>
<tr><td><a href="TagNames/EXIF.html">EXIF</a></td><td>R/W/C</td><td>Exchangeable Image File Format metadata (<a href="TagNames/EXIF.html">TIFF</a>-based)</td><td>R/W/C</td><td>-</td><td>-</td><td>-</td><td>-</td></tr>
<tr><td><a href="TagNames/OpenEXR.html">EXR</a></td><td>R</td><td>Open EXR (Extended Range)</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/OpenEXR.html">OpenEXR</a></td></tr>
<tr><td>EXV</td><td>R/W/C</td><td>Exiv2 metadata file (<a href="TagNames/JPEG.html">JPEG</a>-based)</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td><a href="#JPEG">Supported JPEG Meta Information</a></td></tr>
<tr><td>F4A, F4B, F4P, F4V</td><td>R/W</td><td>Adobe Flash Player 9+ Audio/Video (<a href="TagNames/QuickTime.html">QuickTime</a>-based)</td><td>R/W<span class=sup>3</span></td><td>R/W<span class=sup>3</span></td><td>R/W/C</td><td>-</td><td>R/W/C <a href="TagNames/QuickTime.html">QuickTime</a></td></tr>
<tr><td>FFF</td><td>R/W<span class=sup>6</span></td><td>Hasselblad Flexible File Format (<a href="TagNames/EXIF.html">TIFF</a>-based)</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>-</td></tr>
<tr><td><a href="TagNames/FLIR.html#FFF">FFF</a></td><td>R</td><td>FLIR Systems thermal image File Format</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/FLIR.html#FFF">FLIR</a></td></tr>
<tr><td><a href="TagNames/FITS.html">FITS</a></td><td>R</td><td>Flexible Image Transport System</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/FITS.html">FITS</a></td></tr>
<tr><td>FLA</td><td>R</td><td>Macromedia/Adobe Flash project (<a href="TagNames/FlashPix.html">FPX</a>-like)</td><td>-</td><td>-</td><td>R</td><td>R</td><td>R <a href="TagNames/FlashPix.html">FlashPix</a></td></tr>
<tr><td><a href="TagNames/FLAC.html">FLAC</a></td><td>R</td><td>Free Lossless Audio Codec</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/FLAC.html">FLAC</a> <a href="TagNames/ID3.html">ID3</a> <a href="TagNames/ID3.html#Lyrics3">Lyrics3</a></td></tr>
<tr><td><a href="TagNames/FLIF.html">FLIF</a></td><td>R/W</td><td>Free Lossless Image Format</td><td>R/W/C</td><td>-</td><td>R/W/C</td><td>R/W/C</td><td>R <a href="TagNames/FLIF.html">FLIF</a></td></tr>
<tr><td><a href="TagNames/Flash.html#FLV">FLV</a></td><td>R</td><td>Flash Video</td><td>-</td><td>-</td><td>R</td><td>-</td><td>R <a href="TagNames/Flash.html#FLV">Flash</a></td></tr>
<tr><td><a href="TagNames/FLIR.html#FPF">FPF</a></td><td>R</td><td>FLIR Public image Format</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/FLIR.html#FPF">FLIR</a></td></tr>
<tr><td><a href="TagNames/FlashPix.html">FPX</a></td><td>R</td><td>FlashPix image</td><td>-</td><td>-</td><td>R</td><td>R</td><td>R <a href="TagNames/FlashPix.html">FlashPix</a></td></tr>
<tr><td><a href="TagNames/GIF.html">GIF</a></td><td>R/W</td><td>Compuserve Graphics Interchange Format</td><td>-</td><td>-</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C <a href="TagNames/GIF.html">GIF</a></td></tr>
<tr><td>GPR</td><td>R/W</td><td>GoPro RAW (<a href="TagNames/DNG.html">DNG</a>-based)</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>-</td></tr>
<tr><td><a href="TagNames/ZIP.html#GZIP">GZ, GZIP</a></td><td>R</td><td>GNU ZIP compressed archive</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/ZIP.html#GZIP">ZIP</a></td></tr>
<tr><td>HDP, WDP, JXR</td><td>R/W</td><td>Windows HD Photo / Media Photo / JPEG XR (<a href="TagNames/EXIF.html">TIFF</a>-based)</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>-</td></tr>
<tr><td><a href="TagNames/Radiance.html">HDR</a></td><td>R</td><td>Radiance RGBE High Dynamic-Range</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/Radiance.html">Radiance</a></td></tr>
<tr><td>HEIC, HEIF, HIF</td><td>R/W</td><td>High Efficiency Image Format (<a href="TagNames/QuickTime.html">QuickTime</a>-based)</td><td>R/W/C</td><td>-</td><td>R/W/C</td><td>R/W</td><td>R/W <a href="TagNames/QuickTime.html">QuickTime</a></td></tr>
<tr><td><a href="TagNames/HTML.html">HTML, HTM, XHTML</a></td><td>R</td><td>[Extensible] HyperText Markup Language</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/HTML.html">HTML</a></td></tr>
<tr><td><a href="TagNames/ICC_Profile.html">ICC, ICM</a></td><td>R/W/C<span class=sup>1</span></td><td>International Color Consortium color profile</td><td>-</td><td>-</td><td>-</td><td>R/W/C</td><td>-</td></tr>
<tr><td><a href="TagNames/VCard.html#VCalendar">ICS, ICAL</a></td><td>R</td><td>iCalendar Schedule</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/VCard.html#VCalendar">VCalendar</a></td></tr>
<tr><td>IDML</td><td>R</td><td>Adobe InDesign Markup Language (ZIP/XML-based)</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R XML <a href="TagNames/ZIP.html">ZIP</a></td></tr>
<tr><td><a href="TagNames/PhaseOne.html">IIQ</a></td><td>R/W</td><td>Phase One Intelligent Image Quality RAW (<a href="TagNames/EXIF.html">TIFF</a>-based)</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W <a href="TagNames/PhaseOne.html">PhaseOne</a></td></tr>
<tr><td>IND, INDD, INDT</td><td>R/W</td><td>Adobe InDesign Document/Template</td><td>-</td><td>-</td><td>R/W/C</td><td>-</td><td>-</td></tr>
<tr><td>INSP</td><td>R/W</td><td>Insta360 Picture (<a href="TagNames/JPEG.html">JPEG</a>-based)</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td><a href="#JPEG">Supported JPEG Meta Information</a></td></tr>
<tr><td>INSV</td><td>R</td><td>Insta360 Video (<a href="TagNames/QuickTime.html">QuickTime</a>-based)</td><td>-</td><td>-</td><td>R</td><td>-</td><td>R <a href="TagNames/QuickTime.html">QuickTime</a></td></tr>
<tr><td>INX</td><td>R</td><td>Adobe InDesign Interchange (XML-based)</td><td>-</td><td>-</td><td>R</td><td>-</td><td>-</td></tr>
<tr><td><a href="TagNames/ISO.html">ISO</a></td><td>R</td><td>ISO 9660 disk image</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/ISO.html">ISO</a></td></tr>
<tr><td><a href="TagNames/ITC.html">ITC</a></td><td>R</td><td>iTunes Cover Flow artwork</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/ITC.html">ITC</a></td></tr>
<tr><td>J2C, J2K, JPC</td><td>R</td><td>JPEG 2000 codestream</td><td>R<span class=sup>3</span></td><td>R<span class=sup>3</span></td><td>R</td><td>R</td><td>R <a href="TagNames/Jpeg2000.html">Jpeg2000</a> <a href="TagNames/Photoshop.html">Photoshop</a><span class=sup>3</span></td></tr>
<tr><td><a href="TagNames/Jpeg2000.html">JP2, JPF, JPM, JPX</a></td><td>R/W</td><td>JPEG 2000 image [Compound/Extended]</td><td>R/W/C<span class=sup>3</span></td><td>R/W/C<span class=sup>3</span></td><td>R/W/C</td><td>R</td><td>R/W/C <a href="TagNames/Jpeg2000.html">Jpeg2000</a>, R <a href="TagNames/Photoshop.html">Photoshop</a><span class=sup>3</span></td></tr>
<tr><td><a href="TagNames/JPEG.html">JPEG, JPG, JPE</a></td><td>R/W</td><td>Joint Photographic Experts Group image</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td><a href="#JPEG">Supported JPEG Meta Information</a></td></tr>
<tr><td><a href="TagNames/JSON.html">JSON</a></td><td>R</td><td>JavaScript Object Notation</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/JSON.html">JSON</a></td></tr>
<tr><td>K25</td><td>R</td><td>Kodak DC25 RAW (<a href="TagNames/EXIF.html">TIFF</a>-based)</td><td>R</td><td>R</td><td>R</td><td>R</td><td>-</td></tr>
<tr><td>KDC</td><td>R</td><td>Kodak Digital Camera RAW (<a href="TagNames/EXIF.html">TIFF</a>-based)</td><td>R</td><td>R</td><td>R</td><td>R</td><td>R <a href="TagNames/Kodak.html">Kodak</a></td></tr>
<tr><td><a href="TagNames/iWork.html">KEY, KTH</a></td><td>R</td><td>Apple iWork '09 Keynote presentation/Theme</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/iWork.html">XML</a> <a href="TagNames/ZIP.html">ZIP</a></td></tr>
<tr><td>LA</td><td>R</td><td>Lossless Audio (<a href="TagNames/RIFF.html">RIFF</a>-based)</td><td>R<span class=sup>3</span></td><td>-</td><td>R</td><td>-</td><td>R <a href="TagNames/RIFF.html">RIFF</a></td></tr>
<tr><td><a href="TagNames/Lytro.html">LFP, LFR</a></td><td>R</td><td>Lytro Light Field Picture</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/Lytro.html">Lytro</a></td></tr>
<tr><td><a href="TagNames/LNK.html">LNK</a></td><td>R</td><td>Microsoft Shell Link (Windows shortcut)</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/LNK.html">LNK</a></td></tr>
<tr><td>LRV</td><td>R/W</td><td>Low-Resolution Video (<a href="TagNames/QuickTime.html">QuickTime</a>-based)</td><td>R/W<span class=sup>3</span></td><td>R/W<span class=sup>3</span></td><td>R/W/C</td><td>-</td><td>R/W/C <a href="TagNames/QuickTime.html">QuickTime</a></td></tr>
<tr><td><a href="TagNames/M2TS.html">M2TS, MTS, M2T, TS</a></td><td>R</td><td>MPEG-2 Transport Stream (used for AVCHD video)</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/M2TS.html">M2TS</a> <a href="TagNames/H264.html">H264</a></td></tr>
<tr><td>M4A, M4B, M4P, M4V</td><td>R/W</td><td>MPEG-4 Audio/Video (<a href="TagNames/QuickTime.html">QuickTime</a>-based)</td><td>R/W<span class=sup>3</span></td><td>R/W<span class=sup>3</span></td><td>R/W/C</td><td>-</td><td>R/W/C <a href="TagNames/QuickTime.html">QuickTime</a></td></tr>
<tr><td>MACOS</td><td>R</td><td>MacOS "._" sidecar file (may have any extension)</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/MacOS.html#XAttr">XAttr</a> <a href="TagNames/RSRC.html">RSRC</a></td></tr>
<tr><td>MAX</td><td>R</td><td>3D Studio MAX (<a href="TagNames/FlashPix.html">FPX</a>-like)</td><td>-</td><td>-</td><td>R</td><td>R</td><td>R <a href="TagNames/FlashPix.html">FlashPix</a></td></tr>
<tr><td>MEF</td><td>R/W</td><td>Mamiya (RAW) Electronic Format (<a href="TagNames/EXIF.html">TIFF</a>-based)</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>-</td></tr>
<tr><td><a href="TagNames/MIE.html">MIE</a></td><td>R/W/C</td><td>Meta Information Encapsulation (<a href="MIE1.1-20070121.pdf">MIE specification</a>)</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C <a href="TagNames/MIE.html">MIE</a></td></tr>
<tr><td><a href="TagNames/MIFF.html">MIFF, MIF</a></td><td>R</td><td>Magick Image File Format</td><td>R</td><td>R</td><td>R</td><td>R</td><td>R <a href="TagNames/MIFF.html">MIFF</a> <a href="TagNames/Photoshop.html">Photoshop</a></td></tr>
<tr><td><a href="TagNames/Matroska.html">MKA, MKV, MKS</a></td><td>R</td><td>Matroska Audio/Video/Subtitle</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/Matroska.html">Matroska</a></td></tr>
<tr><td><a href="TagNames/Palm.html">MOBI, AZW, AZW3</a></td><td>R</td><td>Mobipocket electronic book (<a href="TagNames/Palm.html">Palm</a>-based)</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/Palm.html">Palm</a> <a href="TagNames/Palm.html#MOBI">MOBI</a></td></tr>
<tr><td>MODD</td><td>R</td><td>Sony Picture Motion metadata (XML <a href="TagNames/PLIST.html">PLIST</a>-based)</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/PLIST.html">PLIST</a></td></tr>
<tr><td><a href="TagNames/MOI.html">MOI</a></td><td>R</td><td>MOD Information file</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/MOI.html">MOI</a></td></tr>
<tr><td><a href="TagNames/Leaf.html">MOS</a></td><td>R/W</td><td>Creo Leaf Mosaic (<a href="TagNames/EXIF.html">TIFF</a>-based)</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R <a href="TagNames/Leaf.html">Leaf</a></td></tr>
<tr><td><a href="TagNames/QuickTime.html">MOV, QT</a></td><td>R/W</td><td>Apple QuickTime Movie</td><td>R/W<span class=sup>3</span></td><td>R/W<span class=sup>3</span></td><td>R/W/C</td><td>-</td><td>R/W/C <a href="TagNames/QuickTime.html">QuickTime</a></td></tr>
<tr><td><a href="TagNames/MPEG.html#Audio">MP3</a></td><td>R</td><td>MPEG-1 layer 3 audio</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/MPEG.html">MPEG</a> <a href="TagNames/ID3.html">ID3</a> <a href="TagNames/ID3.html#Lyrics3">Lyrics3</a> <a href="TagNames/APE.html">APE</a></td></tr>
<tr><td>MP4</td><td>R/W</td><td>Motion Picture Experts Group version 4 (<a href="TagNames/QuickTime.html">QuickTime</a>-based)</td><td>R/W<span class=sup>3</span></td><td>R/W<span class=sup>3</span></td><td>R/W/C</td><td>-</td><td>R/W/C <a href="TagNames/QuickTime.html">QuickTime</a></td></tr>
<tr><td><a href="TagNames/MPC.html">MPC</a></td><td>R</td><td>Musepack Audio</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/MPC.html">MPC</a> <a href="TagNames/ID3.html">ID3</a> <a href="TagNames/ID3.html#Lyrics3">Lyrics3</a> <a href="TagNames/APE.html">APE</a></td></tr>
<tr><td><a href="TagNames/MPEG.html">MPEG, MPG, M2V</a></td><td>R</td><td>Motion Picture Experts Group version 1 or 2</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/MPEG.html">MPEG</a> <a href="TagNames/ID3.html">ID3</a> <a href="TagNames/ID3.html#Lyrics3">Lyrics3</a></td></tr>
<tr><td>MPO</td><td>R/W</td><td>Extended Multi-Picture format (<a href="TagNames/JPEG.html">JPEG</a> with <a href="TagNames/MPF.html">MPF</a> extensions)</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td><a href="#JPEG">Supported JPEG Meta Information</a></td></tr>
<tr><td><a href="TagNames/QuickTime.html">MQV</a></td><td>R/W</td><td>Sony Mobile QuickTime Video</td><td>R/W<span class=sup>3</span></td><td>R/W<span class=sup>3</span></td><td>R/W/C</td><td>-</td><td>R/W/C <a href="TagNames/QuickTime.html">QuickTime</a></td></tr>
<tr><td><a href="TagNames/MinoltaRaw.html">MRW</a></td><td>R/W</td><td>Minolta RAW</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W <a href="TagNames/MinoltaRaw.html">MinoltaRaw</a> <a href="TagNames/Minolta.html">Minolta</a></td></tr>
<tr><td><a href="TagNames/MXF.html">MXF</a></td><td>R</td><td>Material Exchange Format</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/MXF.html">MXF</a></td></tr>
<tr><td>NEF</td><td>R/W</td><td>Nikon (RAW) Electronic Format (<a href="TagNames/EXIF.html">TIFF</a>-based)</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W <a href="TagNames/Nikon.html">Nikon</a> <a href="TagNames/NikonCapture.html">NikonCapture</a></td></tr>
<tr><td><a href="TagNames/iWork.html">NMBTEMPLATE</a></td><td>R</td><td>Apple iWork '09 Numbers Template</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/iWork.html">XML</a> <a href="TagNames/ZIP.html">ZIP</a></td></tr>
<tr><td>NRW</td><td>R/W</td><td>Nikon RAW (2) (<a href="TagNames/EXIF.html">TIFF</a>-based)</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W <a href="TagNames/Nikon.html">Nikon</a> <a href="TagNames/NikonCapture.html">NikonCapture</a></td></tr>
<tr><td><a href="TagNames/iWork.html">NUMBERS</a></td><td>R</td><td>Apple iWork '09 Numbers spreadsheet</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/iWork.html">XML</a> <a href="TagNames/ZIP.html">ZIP</a></td></tr>
<tr><td><a href="TagNames/EXE.html#ELF">O</a></td><td>R</td><td>Unix compiled code Object</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/EXE.html#ELF">EXE</a></td></tr>
<tr><td>ODB, ODC, ODF, ODG,<br>ODI, ODP, ODS, ODT</td><td>R</td><td>Open Document Database/Chart/Formula/Graphics/<br>Image/Presentation/Spreadsheet/Text (ZIP/XML-based)</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R XML <a href="TagNames/ZIP.html">ZIP</a></td></tr>
<tr><td>OFR</td><td>R</td><td>OptimFROG audio (<a href="TagNames/RIFF.html">RIFF</a>-based)</td><td>R<span class=sup>3</span></td><td>-</td><td>R</td><td>-</td><td>R <a href="TagNames/RIFF.html">RIFF</a></td></tr>
<tr><td><a href="TagNames/Ogg.html">OGG, OGV</a></td><td>R</td><td>Ogg bitstream container</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/FLAC.html">FLAC</a> <a href="TagNames/ID3.html">ID3</a> <a href="TagNames/ID3.html#Lyrics3">Lyrics3</a> <a href="TagNames/Theora.html">Theora</a> <a href="TagNames/Vorbis.html">Vorbis</a></td></tr>
<tr><td>ONP</td><td>R</td><td>ON1 Presets</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/JSON.html">JSON</a> <a href="TagNames/PLIST.html">PLIST</a></td></tr>
<tr><td><a href="TagNames/Opus.html">OPUS</a></td><td>R</td><td>Ogg Opus audio</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/FLAC.html">FLAC</a> <a href="TagNames/ID3.html">ID3</a> <a href="TagNames/ID3.html#Lyrics3">Lyrics3</a> <a href="TagNames/Opus.html">Opus</a> <a href="TagNames/Vorbis.html">Vorbis</a></td></tr>
<tr><td>ORF</td><td>R/W</td><td>Olympus RAW Format (<a href="TagNames/EXIF.html">TIFF</a>-based)</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W <a href="TagNames/Olympus.html">Olympus</a></td></tr>
<tr><td><a href="TagNames/Font.html">OTF</a></td><td>R</td><td>Open Type Font</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/Font.html">Font</a></td></tr>
<tr><td>PAC</td><td>R</td><td>Lossless Predictive Audio Compression (<a href="TagNames/RIFF.html">RIFF</a>-based)</td><td>R<span class=sup>3</span></td><td>-</td><td>R</td><td>-</td><td>R <a href="TagNames/RIFF.html">RIFF</a></td></tr>
<tr><td><a href="TagNames/iWork.html">PAGES</a></td><td>R</td><td>Apple iWork '09 Pages document</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/iWork.html">XML</a> <a href="TagNames/ZIP.html">ZIP</a></td></tr>
<tr><td><a href="TagNames/PhotoCD.html">PCD</a></td><td>R</td><td>Kodak Photo CD Image Pac</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/PhotoCD.html">PhotoCD</a></td></tr>
<tr><td><a href="TagNames/PCX.html">PCX</a></td><td>R</td><td>PC Paintbrush</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/PCX.html">PCX</a></td></tr>
<tr><td><a href="TagNames/Palm.html">PDB, PRC</a></td><td>R</td><td>Palm Database</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/Palm.html">Palm</a></td></tr>
<tr><td><a href="TagNames/PDF.html">PDF</a></td><td>R/W</td><td>Adobe Portable Document Format</td><td>R<span class=sup>3</span></td><td>R<span class=sup>3</span></td><td>R/W/C</td><td>R<span class=sup>3</span></td><td>R/W/C <a href="TagNames/PDF.html">PDF</a>, R <a href="TagNames/Photoshop.html">Photoshop</a></td></tr>
<tr><td>PEF</td><td>R/W</td><td>Pentax (RAW) Electronic Format (<a href="TagNames/EXIF.html">TIFF</a>-based)</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W <a href="TagNames/Pentax.html">Pentax</a></td></tr>
<tr><td><a href="TagNames/Font.html">PFA, PFB</a></td><td>R</td><td>PostScript Font ASCII/Binary</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/Font.html">Font</a></td></tr>
<tr><td><a href="TagNames/Font.html">PFM</a></td><td>R</td><td>Printer Font Metrics</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/Font.html">Font</a></td></tr>
<tr><td><a href="TagNames/PGF.html">PGF</a></td><td>R</td><td>Progressive Graphics File</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/PGF.html">PGF</a> <a href="TagNames/PNG.html">PNG</a></td></tr>
<tr><td><a href="TagNames/PICT.html">PICT, PCT</a></td><td>R</td><td>Apple Picture file</td><td>-</td><td>-</td><td>-</td><td>R</td><td>R <a href="TagNames/PICT.html">PICT</a> <a href="TagNames/Photoshop.html">Photoshop</a></td></tr>
<tr><td><a href="TagNames/PLIST.html">PLIST</a></td><td>R</td><td>Apple Property List (binary and XML formats)</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/PLIST.html">PLIST</a></td></tr>
<tr><td><a href="TagNames/Sony.html#PMP">PMP</a></td><td>R</td><td>Sony DSC-F1 Cyber-Shot image</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/Sony.html#PMP">Sony</a></td></tr>
<tr><td><a href="TagNames/PNG.html">PNG</a>, <a href="TagNames/MNG.html">JNG, MNG</a></td><td>R/W</td><td>Portable/JPEG/Multiple-image Network Graphics</td><td>R/W/C<span class=sup>3</span></td><td>R/W/C<span class=sup>3</span></td><td>R/W/C</td><td>R/W/C</td><td>R/W/C <a href="TagNames/PNG.html">PNG</a></td></tr>
<tr><td>PPM, PBM, PGM</td><td>R/W</td><td>Portable Pixel/Bit/Gray Map</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R PPM, R/W/C Comment</td></tr>
<tr><td>PPT, PPS, POT</td><td>R</td><td>PowerPoint Presentation/Slideshow/Template (<a href="TagNames/FlashPix.html">FPX</a>-like)</td><td>-</td><td>-</td><td>R</td><td>R</td><td>R <a href="TagNames/FlashPix.html">FlashPix</a></td></tr>
<tr><td><a href="TagNames/OOXML.html">POTX, POTM</a></td><td>R</td><td>Office Open XML Presentation Template [Macro-enabled]</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/OOXML.html">XML</a> <a href="TagNames/ZIP.html">ZIP</a></td></tr>
<tr><td><a href="TagNames/OOXML.html">PPAX, PPAM</a></td><td>R</td><td>Office Open XML Presentation Addin [Macro-enabled]</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/OOXML.html">XML</a> <a href="TagNames/ZIP.html">ZIP</a></td></tr>
<tr><td><a href="TagNames/OOXML.html">PPSX, PPSM</a></td><td>R</td><td>Office Open XML Presentation Slideshow [Macro-enabled]</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/OOXML.html">XML</a> <a href="TagNames/ZIP.html">ZIP</a></td></tr>
<tr><td><a href="TagNames/OOXML.html">PPTX, PPTM</a></td><td>R</td><td>Office Open XML Presentation [Macro-enabled]</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/OOXML.html">XML</a> <a href="TagNames/ZIP.html">ZIP</a></td></tr>
<tr><td><a href="TagNames/Photoshop.html">PSD, PSB, PSDT</a></td><td>R/W</td><td>PhotoShop Document / Large Document / Template</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R <a href="TagNames/Photoshop.html">Photoshop</a></td></tr>
<tr><td><a href="TagNames/PSP.html">PSP, PSPIMAGE</a></td><td>R</td><td>Paint Shop Pro</td><td>R</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/PSP.html">PSP</a></td></tr>
<tr><td><a href="TagNames/QuickTime.html">QTIF, QTI, QIF</a></td><td>R/W</td><td>QuickTime Image File</td><td>R/W<span class=sup>3</span></td><td>R/W<span class=sup>3</span></td><td>R/W/C</td><td>-</td><td>R/W/C <a href="TagNames/QuickTime.html">QuickTime</a></td></tr>
<tr><td><a href="TagNames/Red.html">R3D</a></td><td>R</td><td>Redcode RAW video</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/Red.html">Red</a></td></tr>
<tr><td><a href="TagNames/Real.html#Audio">RA</a></td><td>R</td><td>Real Audio</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/Real.html#Audio">Real</a> <a href="TagNames/ID3.html">ID3</a> <a href="TagNames/ID3.html#Lyrics3">Lyrics3</a></td></tr>
<tr><td><a href="TagNames/FujiFilm.html#RAF">RAF</a></td><td>R/W</td><td>FujiFilm RAW Format</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W <a href="TagNames/FujiFilm.html">FujiFilm</a></td></tr>
<tr><td><a href="TagNames/Real.html#Metafile">RAM, RPM</a></td><td>R</td><td>Real Audio/Plug-in Metafile</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/Real.html#Metafile">Real</a></td></tr>
<tr><td><a href="TagNames/ZIP.html#RAR">RAR</a></td><td>R</td><td>RAR Archive</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/ZIP.html#RAR">ZIP</a></td></tr>
<tr><td><a href="TagNames/KyoceraRaw.html">RAW</a></td><td>R</td><td>Kyocera Contax N Digital RAW</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/KyoceraRaw.html">KyoceraRaw</a></td></tr>
<tr><td><a href="TagNames/PanasonicRaw.html">RAW</a></td><td>R/W</td><td>Panasonic RAW (<a href="TagNames/EXIF.html">TIFF</a>-based)</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W <a href="TagNames/PanasonicRaw.html">PanasonicRaw</a> <a href="TagNames/Panasonic.html">Panasonic</a></td></tr>
<tr><td><a href="TagNames/RIFF.html">RIFF, RIF</a></td><td>R</td><td>Resource Interchange File Format</td><td>R<span class=sup>3</span></td><td>-</td><td>R</td><td>-</td><td>R <a href="TagNames/RIFF.html">RIFF</a></td></tr>
<tr><td><a href="TagNames/Real.html">RM, RV, RMVB</a></td><td>R</td><td>Real Media/Video [Variable Bitrate]</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/Real.html">Real</a></td></tr>
<tr><td><a href="TagNames/RSRC.html">RSRC</a></td><td>R</td><td>Mac OS Resource</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/RSRC.html">RSRC</a> <a href="TagNames/Photoshop.html">Photoshop</a> <a href="TagNames/PostScript.html">PostScript</a> <a href="TagNames/Font.html">Font</a></td></tr>
<tr><td><a href="TagNames/RTF.html">RTF</a></td><td>R</td><td>Rich Text Format</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/RTF.html">RTF</a></td></tr>
<tr><td><a href="TagNames/PanasonicRaw.html">RW2</a></td><td>R/W</td><td>Panasonic RAW 2 (<a href="TagNames/EXIF.html">TIFF</a>-based)</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W <a href="TagNames/PanasonicRaw.html">PanasonicRaw</a> <a href="TagNames/Panasonic.html">Panasonic</a></td></tr>
<tr><td><a href="TagNames/PanasonicRaw.html">RWL</a></td><td>R/W</td><td>Leica RAW (<a href="TagNames/EXIF.html">TIFF</a>-based)</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W <a href="TagNames/PanasonicRaw.html">PanasonicRaw</a> <a href="TagNames/Panasonic.html">Panasonic</a></td></tr>
<tr><td><a href="TagNames/Rawzor.html">RWZ</a></td><td>R</td><td>Rawzor compressed image</td><td>R</td><td>R</td><td>R</td><td>R</td><td>R <a href="TagNames/Rawzor.html">Rawzor</a></td></tr>
<tr><td><a href="TagNames/FLIR.html#AFF">SEQ</a></td><td>R</td><td>FLIR Systems image Sequence</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/FLIR.html#AFF">FLIR</a></td></tr>
<tr><td>SKETCH</td><td>R</td><td>Sketch design file</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/JSON.html">JSON</a> <a href="TagNames/ZIP.html">ZIP</a></td></tr>
<tr><td><a href="TagNames/EXE.html#ELF">SO</a></td><td>R</td><td>Unix ELF executable and Shared Object files</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/EXE.html#ELF">EXE</a></td></tr>
<tr><td>SR2</td><td>R/W</td><td>Sony RAW 2 (<a href="TagNames/EXIF.html">TIFF</a>-based)</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W <a href="TagNames/Sony.html">Sony</a></td></tr>
<tr><td>SRF</td><td>R</td><td>Sony RAW Format (<a href="TagNames/EXIF.html">TIFF</a>-based)</td><td>R</td><td>R</td><td>R</td><td>R</td><td>R <a href="TagNames/Sony.html">Sony</a></td></tr>
<tr><td>SRW</td><td>R/W</td><td>Samsung RAW format (<a href="TagNames/EXIF.html">TIFF</a>-based)</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W <a href="TagNames/Samsung.html">Samsung</a></td></tr>
<tr><td><a href="TagNames/XMP.html#SVG">SVG</a></td><td>R</td><td>Scalable Vector Graphics (XML-based)</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/XMP.html#SVG">SVG</a></td></tr>
<tr><td><a href="TagNames/Flash.html">SWF</a></td><td>R</td><td>Shockwave Flash</td><td>-</td><td>-</td><td>R</td><td>-</td><td>R <a href="TagNames/Flash.html">Flash</a></td></tr>
<tr><td>THM</td><td>R/W</td><td>Thumbnail image (<a href="TagNames/JPEG.html">JPEG</a>)</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td><a href="#JPEG">Supported JPEG Meta Information</a></td></tr>
<tr><td><a href="TagNames/OOXML.html">THMX</a></td><td>R</td><td>Office Open XML Theme</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/OOXML.html">XML</a> <a href="TagNames/ZIP.html">ZIP</a></td></tr>
<tr><td><a href="TagNames/EXIF.html">TIFF, TIF</a></td><td>R/W</td><td>Tagged Image File Format</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C <a href="TagNames/GeoTiff.html">GeoTIFF</a><span class=sup>1</span>, R/W <a href="#Trailers">Trailers</a></td></tr>
<tr><td><a href="TagNames/Font.html">TTF, TTC</a></td><td>R</td><td>True Type Font/Collection</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/Font.html">Font</a></td></tr>
<tr><td><a href="TagNames/Torrent.html">TORRENT</a></td><td>R</td><td>BitTorrent description file</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/Torrent.html">Torrent</a></td></tr>
<tr><td><a href="TagNames/Text.html">TXT</a></td><td>R</td><td>Text files</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/Text.html">Text</a></td></tr>
<tr><td><a href="TagNames/VCard.html">VCF, VCARD</a></td><td>R</td><td>Virtual Card</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/VCard.html">VCard</a></td></tr>
<tr><td>VOB</td><td>R</td><td>Video Object (<a href="TagNames/MPEG.html">MPEG</a>-based)</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/MPEG.html">MPEG</a></td></tr>
<tr><td><a href="TagNames/CanonVRD.html">VRD</a></td><td>R/W/C<span class=sup>2</span></td><td>Canon DPP Recipe Data</td><td>-</td><td>-</td><td>R/W/C</td><td>-</td><td>R/W/C <a href="TagNames/CanonVRD.html">CanonVRD</a><span class=sup>2</span></td></tr>
<tr><td>VSD</td><td>R</td><td>Microsoft Visio Drawing (<a href="TagNames/FlashPix.html">FPX</a>-like)</td><td>-</td><td>-</td><td>R</td><td>R</td><td>R <a href="TagNames/FlashPix.html">FlashPix</a></td></tr>
<tr><td>WAV</td><td>R</td><td>Windows digital audio WAVeform (<a href="TagNames/RIFF.html">RIFF</a>-based)</td><td>R<span class=sup>3</span></td><td>-</td><td>R</td><td>-</td><td>R <a href="TagNames/RIFF.html">RIFF</a></td></tr>
<tr><td>WEBM</td><td>R</td><td>Google Web Movie (<a href="TagNames/Matroska.html">Matroska</a>-based)</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/Matroska.html">Matroska</a></td></tr>
<tr><td>WEBP</td><td>R</td><td>Google Web Picture (<a href="TagNames/RIFF.html">RIFF</a>-based)</td><td>R<span class=sup>3</span></td><td>-</td><td>R</td><td>-</td><td>R <a href="TagNames/RIFF.html">RIFF</a></td></tr>
<tr><td>WMA, WMV</td><td>R</td><td>Windows Media Audio/Video (<a href="TagNames/ASF.html">ASF</a>-based)</td><td>-</td><td>-</td><td>R</td><td>-</td><td>R <a href="TagNames/ASF.html">ASF</a></td></tr>
<tr><td><a href="TagNames/WTV.html">WTV</a></td><td>R</td><td>Windows recorded TV show</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/WTV.html">WTV</a></td></tr>
<tr><td>WV</td><td>R</td><td>WavePack lossless audio (<a href="TagNames/RIFF.html">RIFF</a>-based)</td><td>R<span class=sup>3</span></td><td>-</td><td>R</td><td>-</td><td>R <a href="TagNames/RIFF.html">RIFF</a></td></tr>
<tr><td><a href="TagNames/SigmaRaw.html">X3F</a></td><td>R/W</td><td>Sigma/Foveon RAW</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W/C</td><td>R/W <a href="TagNames/Sigma.html">Sigma</a>, R <a href="TagNames/SigmaRaw.html">SigmaRaw</a></td></tr>
<tr><td><a href="TagNames/GIMP.html">XCF</a></td><td>R</td><td>GIMP native image format</td><td>R</td><td>R</td><td>R</td><td>R</td><td>R <a href="TagNames/GIMP.html">GIMP</a></td></tr>
<tr><td>XLS, XLT</td><td>R</td><td>Microsoft Excel Spreadsheet/Template (<a href="TagNames/FlashPix.html">FPX</a>-like)</td><td>-</td><td>-</td><td>R</td><td>R</td><td>R <a href="TagNames/FlashPix.html">FlashPix</a></td></tr>
<tr><td><a href="TagNames/OOXML.html">XLSX, XLSM, XLSB</a></td><td>R</td><td>Office Open XML Spreadsheet [Macro-enabled/Binary]</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/OOXML.html">XML</a> <a href="TagNames/ZIP.html">ZIP</a></td></tr>
<tr><td><a href="TagNames/OOXML.html">XLTX, XLTM</a></td><td>R</td><td>Office Open XML Spreadsheet Template [Macro-enabled]</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/OOXML.html">XML</a> <a href="TagNames/ZIP.html">ZIP</a></td></tr>
<tr><td><a href="TagNames/XMP.html">XMP</a></td><td>R/W/C</td><td>Extensible Metadata Platform sidecar file</td><td>-</td><td>-</td><td>R/W/C</td><td>-</td><td>-</td></tr>
<tr><td><a href="TagNames/ZIP.html">ZIP</a></td><td>R</td><td>ZIP archive</td><td>-</td><td>-</td><td>-</td><td>-</td><td>R <a href="TagNames/ZIP.html">ZIP</a></td></tr>
</table><span class=sm><span class=sup>1</span> Block write only,
<span class=sup>2</span> Block create only,
<span class=sup>3</span> Non-standard format,
<span class=sup>4</span> Only writable for PostScript-format file type,
<span class=sup>5</span> Only writable for PDF-format file type,
<span class=sup>6</span> Only writable when ignoring minor errors due to <a href='#problems'>Phocus incompatibility</a></span></blockquote>
<h3><a name="JPEG">Supported JPEG Meta Information</a></h3>
<p>ExifTool can <b>R</b>ead, <b>W</b>rite and/or <b>C</b>reate the following types
of meta information in JPEG images:</p>
<blockquote><table class='norm tight sm bm'>
<tr><th>JPEG Meta Information</th><th>Support</th><th>Description</th></tr>
<tr><td>APP0 - <a href="TagNames/JFIF.html">JFIF</a></td><td>R/W/C</td><td>JPEG File Interchange Format</td></tr>
<tr><td>APP0 - <a href="TagNames/JFIF.html#Extension">JFXX</a></td><td>R</td><td>Extended JFIF</td></tr>
<tr><td>APP0 - <a href="TagNames/CanonRaw.html">CIFF</a></td><td>R/W</td><td><a href="canon_raw.html">Camera Image File Format</a> (used by some Canon models)</td></tr>
<tr><td>APP0 - <a href="TagNames/JPEG.html#AVI1">AVI1</a></td><td>R</td><td>JPEG AVI information</td></tr>
<tr><td>APP0 - <a href="TagNames/JPEG.html#Ocad">Ocad</a></td><td>R</td><td>Photobucket Ocad segment</td></tr>
<tr><td>APP1 - <a href="TagNames/EXIF.html">EXIF</a></td><td>R/W/C</td><td>Exchangeable Image File Format (multi-segment)</td></tr>
<tr><td>APP1 - <a href="TagNames/XMP.html">XMP</a></td><td>R/W/C</td><td>Extensible Metadata Platform (multi-segment)</td></tr>
<tr><td>APP1 - <a href="TagNames/Casio.html#QVCI">QVCI</a></td><td>R</td><td>Casio QV-7000SX QVCI information</td></tr>
<tr><td>APP1 - <a href="TagNames/FLIR.html#FFF">FLIR</a></td><td>R</td><td>FLIR thermal imaging data (multi-segment)</td></tr>
<tr><td>APP1 - RawThermalImage</td><td>R</td><td>Thermal image from Parrot Bebop-Pro Thermal drone</td></tr>
<tr><td>APP2 - <a href="TagNames/ICC_Profile.html">ICC</a></td><td>R/W/C</td><td>International Color Consortium (multi-segment)</td></tr>
<tr><td>APP2 - <a href="TagNames/FlashPix.html">FPXR</a></td><td>R</td><td>FlashPix Ready (multi-segment)</td></tr>
<tr><td>APP2 - <a href="TagNames/MPF.html">MPF</a></td><td>R</td><td>Multi-Picture Format</td></tr>
<tr><td>APP2 - PreviewImage</td><td>R</td><td>Samsung/GE APP2 preview image (multi-segment)</td></tr>
<tr><td>APP3 - <a href="TagNames/Kodak.html#Meta">Kodak Meta</a></td><td>R/W</td><td>Kodak Meta information (EXIF-like)</td></tr>
<tr><td>APP3 - <a href="TagNames/Stim.html">Stim</a></td><td>R</td><td>Stereo Still Image format</td></tr>
<tr><td>APP3 - ThermalData</td><td>R</td><td>Thermal data from DJI RJPEG file (multi-segment)</td></tr>
<tr><td>APP3 - PreviewImage</td><td>R</td><td>Samsung/HP preview image (multi-segment)</td></tr>
<tr><td>APP4 - <a href="TagNames/Scalado.html">Scalado</a></td><td>R</td><td>(presumably written by <a href="http://www.scalado.com/">Scalado</a> mobile software)</td></tr>
<tr><td>APP4 - <a href="TagNames/DJI.html#ThermalParams">ThermalParams</a></td><td>R</td><td>Thermal parameters from DJI RJPEG file</td></tr>
<tr><td>APP4 - <a href="TagNames/FlashPix.html">FPXR</a></td><td>R</td><td>FlashPix Ready in non-standard location (multi-segment)</td></tr>
<tr><td>APP4 - PreviewImage</td><td>R</td><td>(continued from APP3)</td></tr>
<tr><td>APP5 - <a href="TagNames/Ricoh.html#RMETA">Ricoh RMETA</a></td><td>R</td><td>Ricoh custom fields</td></tr>
<tr><td>APP5 - <a href="TagNames/Samsung.html#APP5">Samsung UniqueID</a></td><td>R</td><td>Samsung Unique ID</td></tr>
<tr><td>APP5 - ThermalCalibration</td><td>R</td><td>Thermal calibration data from DJI RJPEG file</td></tr>
<tr><td>APP5 - PreviewImage</td><td>R</td><td>(continued from APP4)</td></tr>
<tr><td>APP6 - <a href="TagNames/JPEG.html#EPPIM">EPPIM</a></td><td>R</td><td>Toshiba PrintIM</td></tr>
<tr><td>APP6 - <a href="TagNames/JPEG.html#NITF">NITF</a></td><td>R</td><td>National Imagery Transmission Format</td></tr>
<tr><td>APP6 - <a href="TagNames/HP.html#TDHD">HP TDHD</a></td><td>R</td><td>Hewlett-Packard Photosmart R837 TDHD information</td></tr>
<tr><td>APP6 - <a href="TagNames/GoPro.html#GPMF">GoPro</a></td><td>R</td><td>GoPro Metadata Format (GPMF) information</td></tr>
<tr><td>APP6 - DJI_DTAT</td><td>R</td><td>DJI Thermal Analysis Tool record (JSON format)</td></tr>
<tr><td>APP7 - <a href="TagNames/Pentax.html">Pentax</a></td><td>R</td><td>Pentax APP7 maker notes</td></tr>
<tr><td>APP7 - <a href="TagNames/Qualcomm.html">Qualcomm</a></td><td>R</td><td>Qualcomm Camera Attributes</td></tr>
<tr><td>APP7 - Huawei</td><td>R</td><td>Huawei APP7 maker notes (extract with Unknown option)</td></tr>
<tr><td>APP8 - <a href="TagNames/JPEG.html#SPIFF">SPIFF</a></td><td>R</td><td>Still Picture Interchange File Format</td></tr>
<tr><td>APP9 - <a href="TagNames/JPEG.html#MediaJukebox">Media Jukebox</a></td><td>R</td><td>Media Jukebox XML information</td></tr>
<tr><td>APP10 - Comment</td><td>R</td><td>PhotoStudio Unicode Comment</td></tr>
<tr><td>APP11 - <a href="TagNames/JPEG.html#HDR">JPEG-HDR</a></td><td>R</td><td>JPEG-HDR compressed ratio image</td></tr>
<tr><td>APP12 - <a href="TagNames/APP12.html#PictureInfo">Picture Info</a></td><td>R</td><td>ASCII-based Picture Information</td></tr>
<tr><td>APP12 - <a href="TagNames/APP12.html#Ducky">Ducky</a></td><td>R/W/C</td><td>Photoshop "Save for Web"</td></tr>
<tr><td>APP13 - <a href="TagNames/Photoshop.html">Photoshop IRB</a></td><td>R/W/C</td><td>Image Resource Block (multi-segment, includes <a href="TagNames/IPTC.html">IPTC</a>)</td></tr>
<tr><td>APP13 - <a href="TagNames/JPEG.html#AdobeCM">Adobe CM</a></td><td>R</td><td>Adobe Color Management</td></tr>
<tr><td>APP14 - <a href="TagNames/JPEG.html#Adobe">Adobe</a></td><td>R/W/C</td><td>Adobe DCT filter</td></tr>
<tr><td>APP15 - <a href="TagNames/JPEG.html#GraphConv">GraphicConverter</a></td><td>R</td><td>GraphicConverter quality</td></tr>
<tr><td>COM</td><td>R/W/C</td><td>JPEG Comment (multi-segment)</td></tr>
<tr><td>DQT</td><td>R</td><td>(used to calculate the <a href="TagNames/Extra.html">Extra:JPEGDigest</a> tag value)</td></tr>
<tr><td><a href="TagNames/JPEG.html#SOF">SOF</a></td><td>R</td><td>JPEG Start Of Frame</td></tr>
<tr><th colspan=3><a name="Trailers">Trailers <span class=sup>1</span></a></th></tr>
<tr><td><a href="TagNames/AFCP.html">AFCP trailer</a></td><td>R/W</td><td>AXS File Concatenation Protocol (includes <a href="TagNames/IPTC.html">IPTC</a>)</td></tr>
<tr><td><a href="TagNames/CanonVRD.html">CanonVRD trailer</a></td><td>R/W/C</td><td>Canon DPP Recipe Data (includes <a href="TagNames/CanonVRD.html#DR4">DR4</a>)</td></tr>
<tr><td><a href="TagNames/FotoStation.html">FotoStation trailer</a></td><td>R/W</td><td>FotoWare FotoStation (includes <a href="TagNames/IPTC.html">IPTC</a>)</td></tr>
<tr><td><a href="TagNames/PhotoMechanic.html">PhotoMechanic trailer</a></td><td>R/W</td><td>Camera Bits Photo Mechanic</td></tr>
<tr><td><a href="TagNames/MIE.html">MIE trailer</a></td><td>R/W</td><td><a href="MIE1.1-20070121.pdf">Meta Information Encapsulation</a></td></tr>
<tr><td><a href="TagNames/Samsung.html#Trailer">Samsung trailer</a></td><td>R</td><td>Samsung Galaxy trailer</td></tr>
<tr><td>Insta360 trailer</td><td>R</td><td>Insta360 trailer found in INSP files</td></tr>
<tr><td>PreviewImage trailer</td><td>R/W/C</td><td>(preview image written after JPEG EOI)</td></tr>
<tr><td>EmbeddedVideo trailer</td><td>R</td><td>(extracted only with ExtractEmbedded option)</td></tr>
</table><span class=sm><span class=sup>1</span> All trailers except Samsung, Insta360, PreviewImage and EmbeddedVideo also have R/W support in TIFF images.</span></blockquote>
<h2><a name="system">System Requirements</a></h2>
<p>Requires Perl 5.004 or later. No other libraries or software required, but
some optional Perl modules may be added to enable certain ExifTool features (for
details, see the DEPENDENCIES section of the README file included in the full
distribution).</p>
<p><b>Windows users:</b> A <a href="#alone">stand-alone Windows executable</a>
version of ExifTool is available which doesn't require Perl. You can also use
the pure Perl version if you already have Perl installed. (You can get a good,
free Perl interpreter from
<a href="http://www.activestate.com/activeperl/">activeperl.com</a>.)</p>
<p><b>Everyone else (Mac, Unix, etc):</b> Don't worry, you already have
Perl installed.</p>
<h2><a name="running">Running ExifTool</a></h2>
<p>The <a href="exiftool_pod.html">exiftool application</a> provides a
convenient command-line interface for the
<a href="ExifTool.html">Image::ExifTool</a> Perl package (both included in the
full distribution). Once you have downloaded and extracted the distribution, you
can immediately run exiftool (without building or installing) by typing
"<code><i>DIR</i>/exiftool <i>FILE</i></code>" (or
"<code>perl <i>DIR</i>/exiftool <i>FILE</i></code>" in Windows), where
<code><i>DIR</i></code> is the exiftool directory and <code><i>FILE</i></code>
is the name of an image file, including directory name. Read the
<a href="install.html">installation instructions</a> or the README file included
in the full distribution for help installing ExifTool.</p>
<p>Many command-line options are available to allow you to access a wide range
of features. Run exiftool with no arguments for a
<a href="exiftool_pod.html">complete list of available options with
examples</a>.</p>
<h3>Running in Windows</h3>
<p><b>i) From the command line:</b></p>
<p>The Perl application ("<code>exiftool</code>") is run by typing "<code>perl
exiftool</code>". Alternately, you may be able to rename it to
"<code>exiftool.pl</code>" and type "<code>exiftool.pl</code>", but this
requires that the proper Windows associations have been made for the the
"<code>.pl</code>" extension.</p>
<p>The stand-alone version ("<code>exiftool(-k).exe</code>") should be
renamed to "<code>exiftool.exe</code>" to allow it to be run by typing
"<code>exiftool</code>" at the command line.</p>
<p>If the exiftool executable ("<code>exiftool.pl</code>" or
"<code>exiftool.exe</code>") is not in the current directory or your system
PATH, then its directory must be specified on the command line (eg. by typing
"<code>c:\path_to_exiftool\exiftool.pl</code>" or
"<code>c:\path_to_exiftool\exiftool</code>").</p>
<p>Note that when typing commands in the "cmd.exe" shell, you should use double
quotes instead of single quotes as shown in some examples.</p>
<p><b>ii) Stand-alone version in the Windows GUI:</b></p>
<p>Double-click on "<code>exiftool(-k).exe</code>" to read the application
documentation, or drag-and-drop files and folders to run exiftool on the
selected files.</p>
<p>Simple options may be added inside brackets in the name of the stand-alone
executable. (But note that the characters <code>/\?*:|"<></code> may not
be used because they are invalid in Windows file names.) In this way, the
behaviour of the drag-and-drop application can be customized. For example:</p>
<blockquote><table class=norm>
<tr><th>Executable Name</th><th>Operation</th></tr>
<tr><td><pre>exiftool(-k).exe</pre></td>
<td>Print meta information in window and pause before terminating.</td></tr>
<tr><td><pre>exiftool(-k -a -u -g1 -w txt).exe</pre></td>
<td>Generate output "<code>.txt</code>" files with detailed meta information.</td></tr>
<tr><td><pre>exiftool(-k -o %d%f.xmp).exe</pre></td>
<td>Generate sidecar "<code>.xmp</code>" files.</td></tr>
<tr><td><pre>exiftool(-copyright='Phil Harvey').exe</pre></td>
<td>Add copyright information (and don't pause before terminating).</td></tr>
</table></blockquote>
<p><b>Hint:</b> Options may also be added to the "Target" property of a Windows
shortcut for the executable. Using a shortcut has 3 advantages over adding
options in the file name: 1) different shortcuts may be created without
requiring multiple copies of the executable, 2) characters which are invalid
in file names may be used, and 3) the shortcuts can be given more meaningful
(and convenient) file names.</p>
<p>As well, it may be useful to increase the window and buffer sizes to display
more information: Right-click on the window's title bar then select
"Properties" from the menu and change the window layout settings.</p>
<h2><a name="output">Example Output</a></h2>
<blockquote>
<table width='100%'><tr valign='top'><td>
> <code>exiftool -h -canon t/images/Canon.jpg</code><br>
<!-- t/images/Canon.jpg -->
<table class='box sm tight'>
<tr><td>File Name</td><td>Canon.jpg</td></tr>
<tr><td>Camera Model Name</td><td>Canon EOS DIGITAL REBEL</td></tr>
<tr><td>Date/Time Original</td><td>2003:12:04 06:46:52</td></tr>
<tr><td>Shooting Mode</td><td>Bulb</td></tr>
<tr><td>Shutter Speed</td><td>4</td></tr>
<tr><td>Aperture</td><td>14.0</td></tr>
<tr><td>Metering Mode</td><td>Center-weighted average</td></tr>
<tr><td>Exposure Compensation</td><td>0</td></tr>
<tr><td>ISO</td><td>100</td></tr>
<tr><td>Lens</td><td>18.0 - 55.0 mm</td></tr>
<tr><td>Focal Length</td><td>34.0 mm</td></tr>
<tr><td>Image Size</td><td>8x8</td></tr>
<tr><td>Quality</td><td>RAW</td></tr>
<tr><td>Flash</td><td>No Flash</td></tr>
<tr><td>White Balance</td><td>Auto</td></tr>
<tr><td>Focus Mode</td><td>Manual Focus (3)</td></tr>
<tr><td>Contrast</td><td>+1</td></tr>
<tr><td>Sharpness</td><td>+1</td></tr>
<tr><td>Saturation</td><td>+1</td></tr>
<tr><td>Color Tone</td><td>Normal</td></tr>
<tr><td>Color Space</td><td>sRGB</td></tr>
<tr><td>File Size</td><td>2.6 kB</td></tr>
<tr><td>File Number</td><td>118-1861</td></tr>
<tr><td>Drive Mode</td><td>Continuous Shooting</td></tr>
<tr><td>Owner Name</td><td>Phil Harvey</td></tr>
<tr><td>Serial Number</td><td>0560018150</td></tr>
</table>
</td><td>
> <code>exiftool -lang de -h -canon t/images/Canon.jpg</code><br>
<!-- t/images/Canon.jpg -->
<table class='box sm tight'>
<tr><td>Dateiname</td><td>Canon.jpg</td></tr>
<tr><td>Kameramodell</td><td>Canon EOS DIGITAL REBEL</td></tr>
<tr><td>Erstellungsdatum/-uhrzeit</td><td>2003:12:04 06:46:52</td></tr>
<tr><td>Aufnahmemodus</td><td>Bulb</td></tr>
<tr><td>Belichtungsdauer</td><td>4</td></tr>
<tr><td>Blende</td><td>14.0</td></tr>
<tr><td>Belichtungsmessmethode</td><td>Mittenbetont</td></tr>
<tr><td>Belichtungskorrektur</td><td>0</td></tr>
<tr><td>ISO-Empfindlichkeit</td><td>100</td></tr>
<tr><td>Objektiv</td><td>18.0 - 55.0 mm</td></tr>
<tr><td>Brennweite</td><td>34.0 mm</td></tr>
<tr><td>Bildgröße</td><td>8x8</td></tr>
<tr><td>Qualität</td><td>RAW</td></tr>
<tr><td>Blitzmodus</td><td>Blitz wurde nicht ausgelöst</td></tr>
<tr><td>Weißabgleich</td><td>Automatisch</td></tr>
<tr><td>Fokus-Modus</td><td>Manueller Fokus (3)</td></tr>
<tr><td>Kontrast</td><td>+1</td></tr>
<tr><td>Schärfe</td><td>+1</td></tr>
<tr><td>Farbsättigung</td><td>+1</td></tr>
<tr><td>Farbton</td><td>Normal</td></tr>
<tr><td>Farbraum</td><td>sRGB</td></tr>
<tr><td>Dateigröße</td><td>2.6 kB</td></tr>
<tr><td>Dateinummer</td><td>118-1861</td></tr>
<tr><td>Aufnahmeart</td><td>Serienaufnahme</td></tr>
<tr><td>Name des Besitzers</td><td>Phil Harvey</td></tr>
<tr><td>Seriennummer</td><td>0560018150</td></tr>
</table>
</td></tr></table>
</blockquote>
<h3>Verbose and HtmlDump Output</h3>
<p>The <a href="verbose.html">Verbose</a> (<code>-v</code>) and <a
href="htmldump.html">HtmlDump</a> (<code>-htmlDump</code>) options print additional
information that can be very useful for debugging or when decoding new tags.</p>
<h2><a name="tagnames">Tag Names Explained</a></h2>
<p>A tag name is a "handle" that is used to refer to a specific piece of meta
information. Tag names are entered on the command line with a leading
'<code>-</code>', in the order you want them displayed. Case is not
significant. The tag name may be prefixed by a <a href="#groups">group name</a>
(separated by a colon) to identify a specific information type or location. A
special tag name of "<code>All</code>" may be used to represent all tags, or all
tags in a specified group. For example:</p>
<blockquote><pre>
exiftool -filename -imagesize -exif:fnumber -xmp:all image.jpg
</pre></blockquote>
<p>A complete list of <a href="TagNames/index.html">ExifTool Tag Names</a>
accompanies this documentation. As well, current lists of available tag names
and writable tag names may be obtained using the exiftool <code>-list</code> and
<code>-listw</code> options. But perhaps the easiest way to determine a tag name
is to use the <code>-s</code> option to print the tag names instead of
descriptions for all information in a file. It may also be helpful to use the
<code>-G</code> option to display the group names, and the <code>-H</code> or
<code>-D</code> option to print the numerical tag ID's for reference.</p>
<p><b>Notes:</b></p>
<ol><li>Tag names sometimes differ from their descriptions. Use the
<code>-s</code> command-line option to see the actual tag names instead of the
descriptions shown when extracting information.</li>
<li>When extracting information, tags will not appear in the output unless they
exist in the file, even if they are specified on the command line. The
<code>-f</code> option may be used to force all specified tags to be displayed
(not including tags specified with wildcards or by <code>-GROUP:all</code>).</li>
<li>Information for a given tag name may occur in multiple locations within a
single file. By default these duplicate tags are suppressed, but the <code>-a</code>
option may be used to extract all tags.</li>
<li>Tag names may be suffixed by a '<code>#</code>' character to disable the
print conversion on a per-tag basis. See the
<a href="exiftool_pod.html#item_n">-n option</a> in the application
documentation for more information.</li>
</ol>
<h3><a name="shortcut">Shortcut Tags</a></h3>
<p>Shortcut tags represent one or more other tags, and are used like any other
tag when reading, writing or copying information.</p>
<p>ExifTool defines <a href="TagNames/Shortcuts.html">a few shortcut tags</a>
in the Image::ExifTool::Shortcuts module, and allows users to define their own
shortcuts in a <a href="config.html">configuration file</a> called
"<code>.ExifTool_config</code>" in their home directory or exiftool application
directory. Here is a simple example that defines two shortcuts:</p>
<blockquote><table class=box><tr><td><pre class=blk>
%Image::ExifTool::UserDefined::Shortcuts = (
MyShortcut => ['createdate','exposuretime','aperture'],
MyAlias => 'FocalLengthIn35mmFormat',
);
</pre></td></tr></table></blockquote>
<p>In this example, MyShortcut is a shortcut for the CreateDate, ExposureTime
and Aperture tags, and MyAlias is a shortcut for FocalLengthIn35mmFormat.</p>
<p>The current shortcuts may be listed with the <code>-list</code> option.</p>
<p>The <code>~/.ExifTool_config</code> file may also be used to define new tags.
For more information about the configuration file, see the
<a href="config.html">sample configuration file</a> included with the ExifTool
distribution.</p>
<p><b>Windows tip:</b> You may have difficulty generating a filename beginning
with a '<code>.</code>' in the Windows GUI, but it can be done with the
"<code>rename</code>" command at the cmd.exe prompt.</p>
<h2><a name="groups">Tag Groups</a></h2>
<p>ExifTool classifies tags into groups in various families. Here is a list
of the group names in each family:</p>
<blockquote><table class=norm>
<tr><th>Family</th><th>Group Names</th></tr>
<tr><td><b>0 (Information Type)</b></td>
<td class=sm>AFCP, AIFF, APE, APP0, APP1, APP11, APP12, APP13, APP14, APP15, APP4, APP5,
APP6, APP8, ASF, Audible, CanonVRD, Composite, DICOM, DNG, DV, DjVu, Ducky,
EXE, EXIF, ExifTool, FITS, FLAC, FLIR, File, Flash, FlashPix, Font,
FotoStation, GIF, GIMP, GeoTiff, GoPro, H264, HTML, ICC_Profile, ID3, IPTC,
ISO, ITC, JFIF, JPEG, JSON, Jpeg2000, LNK, Leaf, Lytro, M2TS, MIE, MIFF,
MNG, MOI, MPC, MPEG, MPF, MXF, MakerNotes, Matroska, Meta, Ogg, OpenEXR,
Opus, PDF, PICT, PLIST, PNG, PSP, Palm, Parrot, PanasonicRaw, PhotoCD,
PhotoMechanic, Photoshop, PostScript, PrintIM, QuickTime, RAF, RIFF, RSRC,
RTF, Radiance, Rawzor, Real, Red, SVG, SigmaRaw, Stim, Theora, Torrent,
Trailer, UserParam, VCard, Vorbis, WTV, XML, XMP, ZIP
</td></tr>
<tr><td><b>1 (Specific Location)</b></td>
<td class=sm>AC3, AFCP, AIFF, APE, ASF, AVI1, Adobe, AdobeCM, AdobeDNG, Apple, Audible,
CIFF, CameraIFD, Canon, CanonCustom, CanonRaw, CanonVRD, Casio, Chapter#,
Composite, DICOM, DJI, DNG, DV, DjVu, DjVu-Meta, Ducky, EPPIM, EXE, EXIF,
ExifIFD, ExifTool, FITS, FLAC, FLIR, File, Flash, FlashPix, Font,
FotoStation, FujiFilm, FujiIFD, GE, GIF, GIMP, GPS, GeoTiff, GlobParamIFD,
GoPro, GraphConv, H264, HP, HTC, HTML, HTML-dc, HTML-ncc, HTML-office,
HTML-prod, HTML-vw96, HTTP-equiv, ICC-chrm, ICC-clrt, ICC-header, ICC-meas,
ICC-meta, ICC-view, ICC_Profile, ICC_Profile#, ID3, ID3v1, ID3v1_Enh,
ID3v2_2, ID3v2_3, ID3v2_4, IFD0, IFD1, IPTC, IPTC#, ISO, ITC, Insta360,
InteropIFD, ItemList, JFIF, JFXX, JPEG, JPEG-HDR, JSON, JVC, Jpeg2000,
KDC_IFD, Keys, Kodak, KodakBordersIFD, KodakEffectsIFD, KodakIFD,
KyoceraRaw, LNK, Leaf, LeafSubIFD, Leica, Lyrics3, Lytro, M2TS, MAC,
MIE-Audio, MIE-Camera, MIE-Canon, MIE-Doc, MIE-Extender, MIE-Flash, MIE-GPS,
MIE-Geo, MIE-Image, MIE-Lens, MIE-Main, MIE-MakerNotes, MIE-Meta,
MIE-Orient, MIE-Preview, MIE-Thumbnail, MIE-UTM, MIE-Unknown, MIE-Video,
MIFF, MNG, MOBI, MOI, MPC, MPEG, MPF0, MPImage, MS-DOC, MXF, MacOS,
MakerNotes, MakerUnknown, Matroska, MediaJukebox, Meta, MetaIFD, Microsoft,
Minolta, MinoltaRaw, Motorola, NITF, Nikon, NikonCapture, NikonCustom,
NikonScan, NikonSettings, Nintendo, Ocad, Ogg, Olympus, OpenEXR, Opus, PDF,
PICT, PNG, PNG-pHYs, PSP, Palm, Panasonic, PanasonicRaw, Pentax, PhaseOne,
PhotoCD, PhotoMechanic, Photoshop, PictureInfo, PostScript, PreviewIFD,
PrintIM, ProfileIFD, Qualcomm, QuickTime, RAF, RAF2, RIFF, RMETA, RSRC, RTF,
Radiance, Rawzor, Real, Real-CONT, Real-MDPR, Real-PROP, Real-RA3, Real-RA4,
Real-RA5, Real-RJMD, Reconyx, Red, Ricoh, SPIFF, SR2, SR2DataIFD, SR2SubIFD,
SRF#, SVG, Samsung, Sanyo, Scalado, Sigma, SigmaRaw, Sony, SonyIDC, Stim,
SubIFD, System, Theora, Torrent, Track#, UserData, UserParam, VCalendar,
VCard, Version0, Vorbis, WTV, XML, XMP, XMP-DICOM, XMP-Device, XMP-GAudio,
XMP-GDepth, XMP-GFocus, XMP-GImage, XMP-GPano, XMP-GSpherical, XMP-LImage,
XMP-MP, XMP-MP1, XMP-PixelLive, XMP-aas, XMP-acdsee, XMP-album,
XMP-apple-fi, XMP-aux, XMP-cc, XMP-cell, XMP-creatorAtom, XMP-crs, XMP-dc,
XMP-dex, XMP-digiKam, XMP-drone-dji, XMP-dwc, XMP-exif, XMP-exifEX,
XMP-expressionmedia, XMP-extensis, XMP-fpv, XMP-getty, XMP-ics,
XMP-iptcCore, XMP-iptcExt, XMP-lr, XMP-mediapro, XMP-microsoft,
XMP-mwg-coll, XMP-mwg-kw, XMP-mwg-rs, XMP-pdf, XMP-pdfx, XMP-photomech,
XMP-photoshop, XMP-plus, XMP-pmi, XMP-prism, XMP-prl, XMP-prm, XMP-pur,
XMP-rdf, XMP-swf, XMP-tiff, XMP-x, XMP-xmp, XMP-xmpBJ, XMP-xmpDM, XMP-xmpMM,
XMP-xmpNote, XMP-xmpPLUS, XMP-xmpRights, XMP-xmpTPg, ZIP
</td></tr>
<tr><td><b>2 (Category)</b></td>
<td>Audio, Author, Camera, Device, Document, ExifTool, Image, Location, Other,
Preview, Printing, Time, Unknown, Video
</td></tr>
<tr><td><b>3 (Document Number)</b></td>
<td>Doc#, Main
</td></tr>
<tr><td><b>4 (Instance Number)</b></td>
<td>Copy#
</td></tr>
<tr><td><b>5 (Metadata Path)</b></td>
<td><i>[experimental]</i> eg. JPEG-APP1-IFD0-ExifIFD
</td></tr>
<tr><td><b>6 (EXIF/TIFF Format)</b></td>
<td>int8u, string, int16u, int32u, rational64u, int8s, undef, int16s, int32s,
rational64s, float, double, ifd, unicode, complex, int64u, int64s, ifd64</td></tr>
<tr><td><b>7 (Tag ID)</b></td>
<td>ID-xxx (where xxx is the tag ID. Numerical ID's are given in hex with a
leading "0x" if the <a href="ExifTool.html#HexTagIDs">HexTagIDs API option</a>
is set, as are characters in non-numerical ID's which are not valid in a group
name. Note that unlike other group names, family 7 group names are case
sensitive.)</td></tr>
</table></blockquote>
<p>The exiftool output can be organized based on these groups using the
<code>-g</code> or <code>-G</code> option (ie. <code>-g1</code> to see family 1
groups, or <code>-g3:1</code> to see both family 3 and family 1 group names in
the output. See the <code>-g</code> option in the exiftool application
documentation for more details, and the <a href="ExifTool.html#GetGroup">GetGroup</a>
function in the ExifTool library for a description of the group families. Note
that when writing, only family 0, 1, 2 and 7 group names may be used.</p>
<h2><a name="writing">Writing Meta Information</a></h2>
<p>When writing information, ExifTool preserves the original file by adding
"<code>_original</code>" to the file name. Be sure to keep a copy of the
original, or thoroughly validate the new file before erasing the original.
(<a href="writing.html">Read here</a> for some ramblings on the subject of
writing meta information.)</p>
<h3>Syntax</h3>
<p>Tag values are written rather than being extracted if any tag name ends with
a '<code>=</code>' symbol (or if the <code>-tagsFromFile</code> or
<code>-geotag</code> options are used). The '<code>=</code>' may be prefixed by
'<code>+</code>', '<code>-</code>' or '<code><</code>' to add a value, remove
a value or set a value from file. The following table outlines the different
write syntaxes:</p>
<blockquote><table class=norm>
<tr><th>Syntax</th><th>Result</th></tr>
<tr><td>-TAG=</td><td>Deletes all occurrences of TAG</td></tr>
<tr><td>-all=</td><td>Deletes all meta information! <sup>†</sup></td></tr>
<tr><td>-GROUP:TAG=</td><td>Deletes TAG only in specified group</td></tr>
<tr><td>-GROUP:all=</td><td>Deletes all information in specified group</td></tr>
<tr><td>-[GROUP:]TAG=VALUE</td><td>Sets value of TAG (only in GROUP if specified)</td></tr>
<tr><td>-[GROUP:]TAG+=VALUE</td><td>Adds item to a list, shifts a date/time, or increments a number</td></tr>
<tr><td>-[GROUP:]TAG-=VALUE</td><td>Removes item from a list, shifts a date/time, or deletes TAG if it has the specified value</td></tr>
<tr><td>-[GROUP:]TAG<=FILE</td><td>Sets tag value from contents of specified file</td></tr>
</table><sup>†</sup> See the <a href="#limitations">Writer Limitations</a> for some limitations of this feature.</blockquote>
<p>Quotes are required around VALUE if it contains spaces or other
special characters, and around the whole argument if the '<code><=</code>'
syntax is used (to prevent shell redirection).</p>
<p>A special feature allows the print conversion to be disabled on a per-tag
basis by suffixing any tag name (including '<code>all</code>') with the
'<code>#</code>' character. This has the same effect as the
<code>-n</code> option, but for a single tag. See the
<a href="exiftool_pod.html#item_n">-n option</a> in the application
documentation for more details.</p>
<p><b>Note:</b> Changes to PDF files are reversible because the original
metadata is never actually deleted from these files. See the
<a href="TagNames/PDF.html">PDF Tags documentation</a> for details.</p>
<h3>Group Priorities</h3>
<p>ExifTool prioritizes the following types of meta information when writing:</p>
<blockquote>
<b>1)</b> EXIF, <b>2)</b> IPTC, <b>3)</b> XMP
</blockquote>
<p>Many tag names are valid for more than one of these groups. If a group name is
not specified when writing information, then the information is added only to
the highest priority group for which the tag name is valid (however, the
information is updated in all groups where the tag already existed). The
priority of the groups is given by the list above. Specifically, this means that
new information is added preferentially to the EXIF group, or to the IPTC group
if no corresponding EXIF tag exists, or finally to the XMP group.</p>
<p>Alternatively, information may be written to a specific group only, bypassing
these priorities, by providing a group name for the tag. The
"<a href="#writing">Writing Meta Information</a>" section above gave the syntax
rules for exiftool command-line arguments to do this. Any family 0, 1, 2 or 7 group
name may be used when writing information, although not all groups are writable.</p>
<h3>The "-tagsFromFile" Option</h3>
<p>A special ExifTool option allows copying tags from one file to another. The
command-line syntax for doing this is
"<code>-tagsFromFile <i>SRCFILE</i></code>". Any tags specified after this
option on the command line are extracted from source file and written to the
destination file. If no tags are specified, then all writable tags are copied.
This option is very simple, yet very powerful. Depending on the formats of the
source and destination files, some of tags read may not be valid in the
destination file, in which case they aren't written.</p>
<p>This option may also be used to transfer information between different tags
within a single image or between different images. See the
<a href="exiftool_pod.html#item__2dtagsfromfile_srcfile_or_fmt">-tagsFromFile
option</a> in the application documentation for more details.</p>
<h2><font color='#cc0000'><a name="limitations">Writer Limitations</a></font></h2>
<ul>
<li>ExifTool will <b>not rewrite a file if it detects a significant problem</b>
with the file format.</li>
<li>ExifTool has been tested with a wide range of different images, but since it
is not possible to test it with every known image type, <b>there is the possibility
that it will corrupt some files</b>. Be sure to keep backups of your files.</li>
<li>Even though ExifTool does some validation of the information written, it is
still <b>possible to write illegal values</b> which may cause problems when
reading the images with other software. So take care to validate the
information you are writing.</li>
<li>ExifTool is <b>not guaranteed to remove metadata completely</b> from a file
when attempting to delete all metadata. For JPEG images, all APP segments
(except <a href="TagNames/JPEG.html#Adobe">Adobe APP14</a>, which is not removed
by default) and trailers are removed which effectively removes all metadata, but
for other formats the results are less complete:
<ul>
<li>JPEG - APP segments (except <a href="TagNames/JPEG.html#Adobe">Adobe APP14</a>) and trailers are removed.</li>
<li>TIFF - XMP, IPTC, ICC_Profile and the ExifIFD are removed, but some EXIF may remain in IFD0. (The CommonIFD0
<a href="#shortcut">Shortcut tag</a> is provided to simplify removal of common metadata tags from IFD0.)</li>
<li>PNG - Only XMP, EXIF, ICC_Profile and native PNG textual data chunks are removed.</li>
<li>PDF - The original metadata is never actually removed.</li>
<li>PS - Only XMP and some native PostScript tags may be deleted.</li>
<li>MOV/MP4 - Most top-level metadata is removed.</li>
<li>RAW formats - It is not recommended to remove all metadata from RAW images
because this will likely remove some proprietary information that is necessary
for proper rendering of the image.</li>
</ul></li>
</ul>
<h2><font color='#cc6600'><a name="problems">Known Problems</a></font></h2>
<ul>
<li><span class=red>[2020-02-18]</span>
<b>Hasselblad Phocus</b> software will no longer update the small preview or
thumbnail images of <b>FFF files</b> edited by ExifTool. This is perhaps due to
some <a href="idiosyncracies.html#HasselbladFFF">unreferenced preview information</a>
in the file that is lost when edited by ExifTool, but this does not seem to have
any other effect.
<i class=grn>[ExifTool 11.88 and later issue a minor error when attempting to
write FFF files, but this problem seems to be fixed in Phocus v3.5.4]</i></li>
<li><span class=grn>[2019-05-29]</span>
<b>Canon Digital Photo Professional 4</b> (DPP4) will destroy a <b>CR3</b> image
when editing if it had previously been edited by DPP4 followed by ExifTool.
<i class=grn>[ExifTool 11.45 fixes this by structuring the CR3 to make it safe
for editing with DPP4, and may be used to restructure files written by older
ExifTool versions.]</i></li>
<li><span class=red>[2018-09-27]</span>
The <b>Sony Imaging Edge applications</b> give an error when trying to open
<b>ARW</b> or <b>ARQ</b> images edited by ExifTool, although other RAW image
utilities including Sony IDC (Sony's older RAW image converter), Adobe
Photoshop, Lightroom and DNG Converter, Apple Preview, dcraw, Capture One,
Affinity Photo, and LibRaw's SonyPixelShift2DNG have no problems with these.</li>
<li><span class=red>[2016-08-03]</span>
Some antivirus software has been known to cause problems for the <b>Windows</b>
version of ExifTool. <b>Norton Antivirus</b> may delete ExifTool when it is run,
<b>Windows Defender</b> may slow down launching of ExifTool or hang it altogether,
and <b>Bitdefender Antivirus</b> may block ExifTool from writing files.
Presumably this is due to the way the ExifTool package for Windows works -- it
unpacks executable files into a temporary directory and runs from there, which
apparently may be seen as a threat by antivirus software. A work-around is to
add ExifTool to the exclusion list of the antivirus software.</li>
<li><span class=grn>[2016-05-27]</span>
<b>Adobe Camera Raw and DNG Converter 9.5.1</b> fail to recognize edited
<b>Samsung SRW</b> images from some models (NX30, NX300, NX2000 and EK-GN120).
<i class=grn>[This problem was fixed for the NX models in ExifTool 10.26, and
writing of EK-GN120 files was disabled in ExifTool 10.95]</i></li>
<li>In <b>Windows</b>, ExifTool will not process files with <b>Unicode characters
in the file name</b>. This is due to an underlying lack of support for Unicode
filenames in the Windows standard C I/O libraries. <i class=grn>[This deficiency
was addressed in ExifTool 9.79, and ExifTool now supports Windows Unicode file
names with some exceptions. See the
<a href="exiftool_pod.html#windows_unicode_file_names">WINDOWS UNICODE FILE NAMES</a>
section of the application documentation for details.]</i></li>
<li><span class=grn>[2013-11-08]</span>
<b>Apple</b> Spotlight and Preview (OS X 10.8.5) and <b>Adobe</b> Photoshop
CC (version 14.0) <b>ignore XMP in PNG images</b> if it comes after the image
data, which is where ExifTool adds new XMP. This should be considered as a bug
in the Apple and Adobe software since XMP is allowed to exist after the image
data according to the XMP and PNG specifications. <i class=grn>[ExifTool 9.40
provides the PNGEarlyXMP API option to allow writing XMP before the IDAT chunk,
but there are caveats associated with its use. ExifTool 11.58 and later remove
this option and always write XMP before IDAT, and 11.63 and later write all
text chunks before IDAT.]</i></li>
<li><span class=red>[2013-04-21]</span>
Memory available to ExifTool in the <b>Windows EXE version</b> is limited to
a few hundred MB. This limitation has been known to cause <b>unreasonably long
processing times</b> (almost 7 minutes) for some large EPS files (> 200 MB) which
are processed much faster by the Perl version (< 6 seconds).</li>
<li><span class=grn>[2010-01-12]</span>
There is a bug in a number of <b>Adobe</b> utilities which causes some
edited <b>Sony ARW</b> images to be displayed with the wrong tone curve. This
problem has been observed in Photoshop CS4 Camera Raw 5.6, DNG Converter 5.6 and
Lightroom 2.6 with ARW images from the A500, A550, A700, A850 and A900. Other
software such as the Sony IDC utility, Apple RAW utilities, dcraw and Capture
One have no problems with edited images. <i class=grn>[This bug is fixed in
Camera Raw 6.3 and LR 3.3]</i></li>
<li><span class=grn>[2007-07-06]</span>
There is a bug in the <b>Apple</b> RAW file support (OS X 10.4.11) which
prevents some edited <b>Pentax PEF</b> images from being displayed properly.
Other software such as the Pentax Silkypix software and dcraw have no problems
with these images. <i class=grn>[This bug is fixed in OS X 10.5.4]</i></li>
</ul>
<h2><font color='#cc6600'><a name="security">Security Issues</a></font></h2>
<p>Some ExifTool options (<code>-config</code>, <code>-if</code>,
<code>-p</code>, <code>-api filter</code>, <code>-api filterw</code> and
copying arguments like <code>"-DSTTAG<STR"</code>) have the ability to
execute Perl code from external files or within command-line arguments. This
may be a security problem if ExifTool is executed from another application that
blindly passes untrusted file names on the command line (since they may be
interpreted as ExifTool options if they begin with a dash). To be secure the
calling application must either place file names after the "<code>--</code>"
option, or ensure that input file names do not start with a dash (U+002D) or a
Unicode minus sign (U+2212). One way to accomplish this is to prefix input file
names with a known directory name, eg.) <code>"./FILENAME"</code>.</p>
<h2><a name="shift">Date/Time Shift Feature</a></h2>
<p>Have you ever forgotten to set the date/time on your digital camera before
taking a bunch of pictures? ExifTool has a time shift feature that makes it
easy to apply a batch fix to the timestamps of the images (eg. change the "Date
Picture Taken" reported by Windows Explorer). Say for example that your camera
clock was reset to 2000:01:01 00:00:00 when you put in a new battery at
2005:11:03 10:48:00. Then all of the pictures you took subsequently have
timestamps that are wrong by 5 years, 10 months, 2 days, 10 hours and 48
minutes. To fix this, put all of the images in the same directory
(<i>"<code>DIR</code>"</i>) and run exiftool:</p>
<blockquote><pre>
exiftool "-DateTimeOriginal+=5:10:2 10:48:0" <i>DIR</i>
</pre></blockquote>
<p>The example above changes only the DateTimeOriginal tag, but any writable date
or time tag can be shifted, and multiple tags may be written with a single
command line. Commonly, in JPEG images, the DateTimeOriginal, CreateDate and
ModifyDate values must all be changed. For convenience, a
<a href="#shortcut">Shortcut tag</a> called <b>AllDates</b> has been defined to
represent these three tags. So, for example, if you forgot to set your camera
clock back 1 hour at the end of daylight savings time in the fall, you can fix
the images with:</p>
<blockquote><pre>
exiftool -AllDates-=1 <i>DIR</i>
</pre></blockquote>
<p>See
<a href="Shift.html">Image::ExifTool::Shift.pl</a>
(<a href="https://exiftool.org/Shift.pdf">download in PDF format</a>)
for details about the syntax of the time shift string.</p>
<p><b>Note:</b> Not all date/time information is covered by the AllDates
shortcut. Specifically, the filesystem date/time tags are not included, and this
command will reset FileModifyDate to the current date/time as it should when the
file is modified, unless either the <code>-P</code> option is used, or
FileModifyDate is set to something else. To shift FileModifyDate along with the
other tags, add <code>-FileModifyDate-=1</code> to the command above.</p>
<h2><a name="filename">Renaming and/or Moving Files</a></h2>
<p>By writing a new value to the <b>FileName</b> and/or <b>Directory</b> tags,
files can be renamed and/or moved to different directories. This can be a very
powerful tool in combination with the <code>-d</code> (date format) option for
organizing images by date/time. For example, the following command renames all
images in directory <i>"<code>DIR</code>"</i> according to the individual file's
creation date in the form "<code>YYYYmmdd_HHMMSS.ext</code>".</p>
<blockquote><pre>
exiftool "-FileName<CreateDate" -d "%Y%m%d_%H%M%S.%%e" <i>DIR</i>
</pre></blockquote>
<p>Or a new directory can be specified by setting the value of the <b>Directory</b>
tag. For example, the following command moves all images originally in
directory <i>"<code>DIR</code>"</i> into a directory hierarchy organized by
year/month/day:</p>
<blockquote><pre>
exiftool "-Directory<DateTimeOriginal" -d "%Y/%m/%d" <i>DIR</i>
</pre></blockquote>
<p><a href="filename.html">Read here</a> for more details about this powerful
feature.</p>
<h2><a name="performance">Improving Performance</a></h2>
<p>There is a significant overhead in loading ExifTool, so performance may be
greatly improved by taking advantage of ExifTool's <b>batch processing capabilities</b>
(the ability to process multiple files or entire directories with a single
command) to reduce the number of executed commands when performing complex
operations or processing multiple files.<span class=sm><sup>†</sup></span>
<i>[One exiftool user
<!-- dead link <a href="https://web.archive.org/web/20131204165247/http://www.christian-etter.de/?p=458"> -->
documented a 60x speed increase<!-- </a> --> by processing a large number of files with a single
command instead of running exiftool separately on each file.]</i> Also, the
<code>-execute</code> option may be used to perform multiple independent
operations with a single invocation of exiftool, and together with the
<code>-stay_open</code> option provides a method for calling applications to
<b>avoid this startup overhead</b>.</p>
<p>It has also been observed that the loading time of ExifTool for Windows
increases significantly when Windows Defender is active. <b>Disabling Windows
Defender</b> may speed things up significantly.</p>
<p>The processing speed of ExifTool can be improved when extracting information
by reducing the amount of work that it must do. Decrease the number of
extracted tags by specifying them individually (<code>-TAG</code>) or by group
(<code>-GROUP:all</code>), and disable the composite tags (<code>-e</code>) and
the print conversions (<code>-n</code>) if these features aren't required. Note
that the exclude options (<code>-x</code> or <code>--TAG</code>) are not very
efficient, and may have a negative impact on performance if a large number of
tags are excluded individually.</p>
<p>The <code>-fast</code> option can significantly increase speed when
extracting information from JPEG images which are piped across a slow network
connection. However, with this option any information in a JPEG trailer is not
extracted. For more substantial speed benefits, <code>-fast2</code> may be
used to also avoid extracting MakerNote information if this is not required,
or <code>-fast4</code> if only pseudo System tags are required.</p>
<p>When writing, avoid copying tags (with <code>-tagsFromFile</code>) or using
the <code>-if</code> or <code>-fileOrder</code> option because these will add
the extra step of extracting tags from the file. Without these the write
operation is accomplished with a single pass of each file.</p>
<blockquote><span class=sm><sup>†</sup></span> <span class=lt>However,
note that when the <code>-csv</code> option is used, information from all files
is buffered in memory before the CSV output is written. This may be very memory
intensive and result in poor performance when reading a large number of files in
a single command.</span></blockquote>
<h2><a name="library">The Image::ExifTool Perl Library Module</a></h2>
<p>The "<code>exiftool</code>" script provides a command-line interface to the
Image::ExifTool Perl library module which is part of the ExifTool distribution.
The Image::ExifTool module can be used in any Perl script to provide easy access
to meta information. Here is an example of a very simple script that uses
Image::ExifTool to print out all recognized meta information in a file:</p>
<blockquote><table class=box><tr><td><pre class=blk>
<span class=com>#!/usr/bin/perl -w</span>
use Image::ExifTool ':Public';
my $file = shift or die "Please specify filename";
my $info = <a href="ExifTool.html#ImageInfo">ImageInfo</a>($file);
foreach (keys %$info) {
print "$_ : $info->{$_}\n";
}
</pre></td></tr></table></blockquote>
<p>Note that some tag values may be returned as SCALAR references indicating
binary data. The simple script above does not handle this case.</p>
<p>See the <a href="ExifTool.html">Image::ExifTool Documentation</a> for more details.</p>
<h2><a name="links">Additional Documentation and Resources</a></h2>
<ul>
<li><a href="https://exiftool.org/">ExifTool Home Page</a></li>
<li><a href="faq.html">ExifTool FAQ</a></li>
<li><a href="https://exiftool.org/forum/">ExifTool Forum</a></li>
<li><a href="TagNames/index.html">ExifTool Tag Names</a> (<a href="https://exiftool.org/TagNames.pdf">download in PDF format</a>)</li>
<li><a href="history.html">ExifTool Revision History</a> (<a href="https://exiftool.org/rss.xml">RSS feed</a>)</li>
<li><a href="exiftool_pod.html">exiftool Application Documentation</a> (<a href="https://exiftool.org/exiftool_pod.pdf">download in PDF format</a>)</li>
<li><a href="ExifTool.html">Image::ExifTool API Documentation</a> (<a href="https://exiftool.org/ExifTool.pdf">download in PDF format</a>)</li>
<li><a href="Shift.html">Date/Time Shift Module</a> (<a href="https://exiftool.org/Shift.pdf">download in PDF format</a>)</li>
<li><a href="config.html">Sample ExifTool Configuration File</a> (custom user-defined tags)</li>
<li><a href="metafiles.html">Working with Metadata Sidecar Files</a></li>
<li><a href="struct.html">Reading/Writing Structured Information</a></li>
<li><a href="mistakes.html">Common Mistakes when using ExifTool</a></li>
<li><a href="writing.html">Comments on the Subject of Writing Meta Information</a></li>
<li><a href="standards.html">Problems with current Metadata Standards</a></li>
<li><a href="under.html">"Under the Hood" of ExifTool</a></li>
<li><a href="canon_raw.html">Canon RAW (CRW) File Format Specification</a></li>
<li><a href="MIE1.1-20070121.pdf">MIE 1.1 File Format Specification (pdf)</a></li>
<li><a href="https://github.com/exiftool/exiftool">ExifTool source code on GitHub</a></li>
<li><a href="https://sourceforge.net/projects/exiftool/">ExifTool SourceForge project page</a> (<a href="https://sourceforge.net/p/exiftool/discussion/">alternate discussion forum</a>)</li>
<li><a href="https://exiftool.org/sample_images.html">JPEG Image Samples</a> (and
<a href="https://exiftool.org/makernote_types.html">Table of Makernote Types</a>)</li>
<li><a href="https://metacpan.org/release/Image-ExifTool">Image::ExifTool at MetaCPAN</a></li>
<li><a href="https://rt.cpan.org/Public/Dist/Display.html?Name=Image-ExifTool">ExifTool Bug Reports</a> (CPAN Request Tracker)</li>
<li><a href="http://www.cpantesters.org/distro/I/Image-ExifTool.html">ExifTool Test Reports</a> (CPAN Testers)</li>
<li><a href="http://matrix.cpantesters.org/?dist=Image-ExifTool;maxver=1">CPAN Testers Matrix</a> (max version with a PASS)</li>
</ul>
<p><b><a name="user_docs">User-contributed Documentation</a></b></p>
<ul>
<li><a href="https://www.weareavp.com/exiftool-tutorial-series/">ExifTool Tutorial</a> (video in 4 parts by <a href="https://www.weareavp.com">AVP</a>)</li>
<li><a href="http://www.youtube.com/watch?v=K9PAD7GqUag">Using the ExifTool on Linux to read/write Exif Tags to your photo collection</a> (video by <a href="http://www.linuxbyexample.org">Linux By Example</a>)</li>
<li><a href="http://www.youtube.com/watch?v=WchknYwbFJY">Working with jpg Metadata Comments - Exiftool - BASH - Linux Command Line</a> (video by <a href="http://www.linuxbyexample.org">Linux By Example</a>)</li>
<li><a href="http://sourceforge.net/projects/exiftool1line/files/">Useful one-line ExifTool commands</a> (.txt file)</li>
<li><a href="http://orchisere.pagesperso-orange.fr/logiciels/html/exiftool.htm">ExifTool tuto en français</a></li>
</ul>
<h3><a name="related">Related Utilities</a></h3>
<p>Below are some free utilities which take advantage of the ExifTool engine:</p>
<p><b><a name="related_win">Windows</a></b></p>
<ul>
<li><a href="https://oliverbetz.de/pages/Artikel/ExifTool-for-Windows">Alternate ExifTool Windows Installer and Portable Package</a> by Oliver Betz</li>
<li><a href="https://exiftool.org/gui/">ExifTool GUI for Windows</a>: GUI for viewing meta information with some editing features</li>
<li><a href="https://www.logipole.com/metadata++-en.htm">Metadata++</a>: View, edit, extract, copy metadata metadata</li>
<!-- dead <li><a href="http://www.thezeal.com/software/?Exif_Stats_Utility">Exif Stats Utility</a>: Analyzes images to tabulate apertures, exposure times, etc</li> -->
<li><a href="http://aeropic.free.fr/H&B/AUTO_ISO_patcher/">Auto ISO Tool</a>: GUI front-end for ExifTool to patch Canon ISO information</li>
<!-- dead <li><a href="http://home.roadrunner.com/~dick/ExifAuto.htm">ExifAuto</a>: GUI front-end for ExifTool to perform simple operations</li> -->
<li><a href="http://www.geosetter.de/en/">GeoSetter</a>: Utility for showing and changing geo data of image files</li>
<li><a href="http://www.moonsoftware.com/exifmixer.asp">ExifMixer</a>: GUI extension for the exiftool command-line interface</li>
<!-- dead <li><a href="http://fliggs.wordpress.com/2009/02/01/exifdropper-v090902-released/">ExifDropper</a>: Graphical front-end for ExifTool with drag-and-drop</li> -->
<!-- dead <li><a href="http://gpstamper.wordpress.com/geotagger/">GPStamper Geotagger</a>: A simple Windows GUI front end for geotagging images</li> -->
<li><a href="http://www.anvo-it.de/wiki/doku.php?id=avpicfacexmptagger:main">AvPicFaceXmpTagger</a>: Write Picasa 3.5 face recognition information as XMP to your images</li>
<li><a href="http://www.ulfwood.net/Mp3TagFileData/Id3TagExifViewer.aspx">FileTagSleuth</a>: MP3, ID3 and EXIF viewer</li>
<!-- dead <li><a href="http://exifcopier.110mb.com/">Exif Copier</a>: Copy Exif data between sets of multiple images</li> -->
<!-- dead <li><a href="http://www.xtrasimplicity.info/archives/185">ExifyMe</a>: Restore Exif metadata from an original image</li> -->
<li><a href="http://mjbpix.com/automatically-move-photos-to-directories-or-folders-based-on-exif-date/">PhotoMove</a>: Automatically move photos to directories or folders based on Exif date taken</li>
<!-- dead <li><a href="http://code.google.com/p/tinyexif/">TinyExif</a>: Simple Windows GUI for ExifTool written in Python using the Qt4 toolkit</li> -->
<li><a href="http://gui2-for-exiftool.weebly.com/">GUI2 for ExifTool</a>: An ExifTool GUI with built-in editor and browser</li>
<li><a href="http://www.avtonomer.net/content/view/332/42/">AutoJpegTrunk</a>: Tool to remove all metadata from JPEG images</li>
<li><a href="http://www.advancedrenamer.com/">AdvancedRenamer</a>: Rename files and folders from metadata</li>
<li><a href="http://www.proxel.se/exif.html">Proxel EXIF Tool</a>: Photoshop plugin based on ExifTool</li>
<li><a href="http://fhotolab.de/wp/?page_id=795">EXIFCopy</a>: Copy all EXIF information between files</li>
<li><a href="http://www.abscreensavers.com/random-photo-screensaver/">Random Photo Screensaver</a>: Photo screensaver with metadata display</li>
<li><a href="https://www.picageotag.com/en/">PicaGeoTag</a>: Geolocate your photos</li>
<li><a href="https://onedrive.live.com/?authkey=%21ACLDz87Pi7VH%5FWA&id=6266D5E1E0FBB1B8%2193728&cid=6266D5E1E0FBB1B8">PictureTools</a>: Tools for viewing pictures and editing EXIF data or renaming files</li>
</ul>
<p><b><a name="related_mac">MacOS</a></b></p>
<ul>
<li><a href="https://exiftool.org/Extract%20Preview.sit">Download</a>
a stand-alone PPC droplet to extract preview images from RAW files (thanks to Brett Gross)</li>
<li><a href="https://exiftool.org/List_Exif_Metadata.zip">Download</a>
three droplets to extract information [exiftool must be installed] (thanks to Rob Lewis)</li>
<!-- dead <li><a href="http://macfidelity.de/tierprogramm/">Tierprogramm</a>: Droplet to perform some basic operations</li> -->
<li><a href="http://frozentime.se/photos/macmetamod.html">MacMetaMod</a>: Droplet for adding Keywords to images</li>
<li><a href="http://www.earlyinnovations.com/gpsphotolinker/">GPSPhotoLinker</a>: Geotagging on the Mac</li>
<!-- seems to be dead: <li><a href="http://www.scriptamac.at/geotaggingactions.html">Geotagging Automator Action</a>: Application to geotag images from GPX tracks</li> -->
<li><a href="http://www.mmisoftware.co.uk/pages/photogpseditor.php">PhotoGPSEditor</a> and <a href="http://www.mmisoftware.co.uk/pages/photoinfoeditor.php">PhotoInfoEditor</a>: Geocoding utilities</li>
<li><a href="http://automatorworld.com/archives/metadata-mover/">MetaDataMover</a> (<a href="https://github.com/Mortimerp9/MetaDataMover">source</a>): GUI-based automator utility for moving/renaming images</li>
<li><a href="http://www.lintburger.com/softwares#CS1ToCR2">CS1ToCR2</a>: Utility that uses Sony GPS-CS1 log files to add GPS information to CR2 images</li>
<!-- dead <li><a href="http://82.94.219.20/~marcvos/software/realbasic/sed.html">SetEXIFData</a>: Utility to set EXIF data</li> -->
<li><a href="http://craig.stanton.net.nz/code/geotagger/">Geotagger</a>: Droplet for inserting GPS coordinates in your photos</li>
<li><a href="http://www.raw-photo-processor.com/RPP/Overview.html">Raw Photo Processor</a>: Raw converter for MacOS</li>
<li><a href="http://www.lemkesoft.com/content/188/graphicconverter.html">GraphicConverter</a>: Full-featured image editor <i>[noteworthy, but not free]</i></li>
<li><a href="http://www.saltpepper.net/geotag/">GeoTag</a>: Geotagging application for iPhone and MacOS</li>
<li><a href="http://imagefuser.sourceforge.net/">ImageFuser</a>: Fuses multiple exposures of a scene into one image with improved detail/exposure</li>
<li><a href="http://www.theoneandonlysepp.com/gnt/">GeoNamesTagger</a>: Docklet to easily update image metadata with location specific information</li>
<li><a href="http://marc.vos.net/downloads/setexifdata/">SetEXIFData</a>: Add/modify EXIF data in images</li>
<li><a href="https://itunes.apple.com/us/app/geotagster/id1180435565">GeoTagster</a>: Geotagging from GPX files ($0.99 paid app)</li>
<li><a href="http://www.exifphotoworker.com/">Exif Photoworker</a>: Smart rename and organize your photos and videos in a few clicks</li>
</ul>
<p><b><a name="related_linux">Linux</a></b></p>
<ul>
<li><a href="http://kde-apps.org/content/show.php?content=30971">rawimage:</a> A kfile plugin and thumbnail image handler for RAW formats</li>
<!-- apparently abandoned: <li><a href="http://sagittarius.berlios.de/">Sagittarius</a>: Linux XMP metadata editor</li> -->
<!-- dead <li><a href="http://beam.at/aenima">Photo related scripts</a>: Includes EXIFInfo script to provide statistics from EXIF data</li> -->
<li><a href="http://hugin.sourceforge.net/">Hugin</a>: Panorama photo stitcher</li>
<li><a href="https://savannah.nongnu.org/projects/fotopreprocessor/">FotoPreProcessor</a>: PyQt4-based frontend for exiftool to graphically edit metadata</li>
<li><a href="https://exiftool.org/forum/index.php/topic,4715.0.html">ExZenToo</a>: Script for basic ExifTool GUI using Zenity</li>
<li><a href="https://github.com/Glutanimate/PDFMtEd">PDFMted</a>: A set of bash scripts for easy viewing and editing of PDF metadata</li>
<li><a href="https://github.com/HeLiBloks/exiftool-zsh-completion">exiftool-zsh-completion</a>: zsh completion for exiftool</li>
<li><a href="https://sourceforge.net/projects/image-metawriter/">Image MetaWriter</a>: Batch processing Linux command-line program for adding metadata to images</li>
</ul>
<p><b><a name="android">Android</a></b></p>
<ul>
<li><a href="https://play.google.com/store/apps/details?id=com.exiftool.free">ExifTool for Android:</a> View, edit or delete metadata in photo, video and other files</li>
<li><a href="https://play.google.com/store/apps/details?id=net.xnano.android.exifpro">EXIF Pro - ExifTool for Android</a>: View, edit or delete the metadata of files on Android</li>
</ul>
<p><b><a name="related_multi">Multi-Platform</a></b></p>
<ul>
<li><a href="http://basepath.com/new/detail-ImageIngester.php">ImageIngester</a>: Windows and MacOS image workflow automator</li>
<li><a href="http://www.carto.net/projects/photoTools/gpsPhoto/">gpsPhoto</a>: Geotag your images from a GPS (GPX) track log</li>
<li><a href="https://puszcza.gnu.org.ua/projects/renrot/">renrot</a>: Perl utility to perform various processing tasks on images</li>
<li><a href="http://code.google.com/p/gpicsync/">GPicSync</a>: Windows/Linux utility to geocode photos from a GPX track log and create KML files</li>
<li><a href="http://flickfleck.googlecode.com/">FlickFleck</a>: Tool to transfer images from memory card, rotate, rename, and organize by date</li>
<!-- broken: <li><a href="http://muellerware.org/hg/gpx2exif/">gpx2exif</a>: Python script to geocode photos and produce KML files from a GPS track log</li> -->
<li><a href="http://geotag.sourceforge.net/?q=node/1">Geotag</a>: Open source Java-based geotagging application</li>
<li><a href="http://www.haplessgenius.com/photogrok/">PhotoGrok</a>: Java-based GUI front-end for ExifTool to display images organized by any EXIF tag</li>
<li><a href="http://www.xnview.com/en/xnview.html">XnView</a>: View and convert graphic files</li>
<li><a href="http://sourceforge.net/projects/mapivi/">Mapivi</a>: Open-source and cross-platform picture manager</li>
<li><a href="http://www.resourcespace.org/">ResourceSpace</a>: Open source digital asset management system</li>
<li><a href="https://exiftool.org/fix_corrupted_nef.html">fix_corrupted_nef</a>: Utility to fix Nikon D4/D600/D800/D800E NEF images corrupted by Nikon Transfer 1</li>
<li><a href="https://hvdwolf.github.io/pyExifToolGUI/">pyExifToolGUI</a>: Python-based graphical frontend for ExifTool</li>
<li><a href="https://github.com/hvdwolf/jExifToolGUI/releases">jExifToolGUI</a>: Java-based graphical frontend for ExifTool</li>
<li><a href="https://github.com/avpreserve/mdqc">MDQC</a>: <a href="http://www.avpreserve.com/avpsresources/tools/">AVPreserve tool</a> for metadata quality control across large numbers of digital assets</li>
<li><a href="http://fastphototagger.sourceforge.net/about.html">FastPhotoTagger</a>: Add metadata to images (requires Java runtime engine)</li>
<li><a href="https://bizgraphic.ch/Reader/">Digi-libris</a>: Metadata centric software for the automatic organization of your own catalogue</li>
<li><a href="http://ronmevissen.com/FreezeFrame">FreezeFrame</a>: Photo/video library manager (requires Java 8)</li>
</ul>
<p><b><a name="related_online">Online</a></b></p>
<ul>
<li><a href="http://regex.info/exif.cgi">Jeffrey's Exif Viewer</a>: Web utility to view meta information in online images</li>
<li><a href="http://www.thexifer.net/">The eXif.er</a>: Web-based EXIF editor</li>
<li><a href="http://getiptcpmd.nitsvc.net">Get-IPTC-Photo-Metadata</a>: Web service showing all IPTC metadata of web and local images (<a href="https://github.com/nitmws/get-iptc-pmd">source code</a>)</li>
<!-- gone commercial <li><a href="http://www.exif-search.com/">exif Photo Search</a>: Search the internet for photos base on EXIF metadata</li> -->
</ul>
<p><b><a name="related_lightroom">Lightroom Plugins</a></b></p>
<ul>
<li><a href="http://regex.info/blog/lightroom-goodies/gps">Jeffrey's Geoencoding Plugin for Lightroom</a>: Geoencode your photos from within Lightroom</li>
<li><a href="http://regex.info/blog/lightroom-goodies/metadata-wrangler/">Metadata Wrangler</a>: Strip selected metadata components from images as they are exported</li>
<li><a href="http://www.robcole.com/Rob/ProductsAndServices/ExifMetaLrPlugin/">ExifMeta</a>: Make all exif metadata available in Lightroom for lib filtering and smart collections</li>
<li><a href="http://chaoliu12.wordpress.com/fullmetaexport-lightroom-plugin/">FullMetaExport</a>: Export JPEG images from Lightroom with full metadata</li>
<li><a href="http://www.essl.de/wp/software/lenstagger-lightroom-plugin/">LensTagger</a>: Add EXIF information like aperture and focal length for manual lenses</li>
<li><a href="http://tim.jagenberg.info/projects/deaspect/">DeAspect:</a> Remove aspect ratio information from DNG, CR2 and ORF images to restore full image</li>
<li><a href="https://github.com/flingo64/PhotoStation-Upload-Lr-Plugin">PhotoStation-Upload-Lr-Plugin</a>: Export photos from LR directly to a Synology PhotoStation</li>
</ul>
<p><b><a name="related_prog">Programming</a></b></p>
<ul>
<li><a href="https://exiftool.org/cpp_exiftool/">C++ ExifTool</a>: Performance-oriented C++ interface for the exiftool application (by Phil Harvey)</li>
<li><a href="https://exiftool.org/get_tags.sit">Download</a> sample AppleScript to extract tags into AppleScript record (thanks to Rob Lewis)</li>
<li><a href="https://exiftool.org/ExifToolWrapper.zip">Download</a> example of a simple Visual C++ wrapper for exiftool (thanks Mark Borg and 黃瑞昌)</li>
<li><a href="https://exiftool.org/ExifToolWrapper_cs.zip">Download</a> C# version of simple exiftool wrapper (thanks Willem Semmelink)</li>
<li><a href="https://exiftool.org/forum/index.php?topic=11286.0">Example C# code</a> for running ExifTool with the -stay_open option</li>
<li><a href="https://exiftool.org/modExiftool_101.zip">Download</a> Visual Basic 6.0 example script v1.01 for reading tags with exiftool (thanks Michael Wandel)</li>
<li><a href="https://exiftool.org/vb_sample.html">Sample VB.NET subroutine</a> to extract a preview image (thanks Claus Beckmann)</li>
<li><a href="https://exiftool.org/TC_Extractor.txt">Sample VBA for Mac code</a> to extract start timecode from a WAV file (thanks Adam Newns)</li>
<li><a href="https://exiftool.org/tagInfoSql.zip">tagInfoSql</a>: SQLite database of ExifTool tag repository, including Perl script (thanks Wernfried)</li>
<li><a href="https://exiftool.org/forum/index.php/topic,5857.0.html">ExifToolIO</a>: .NET wrapper for ExifTool, optimized for speed (using VB.NET)</li>
<li><a href="https://exiftool.org/forum/index.php/topic,5262.0.html">ExifToolWrapper</a>: .NET wrapper for ExifTool (using C#)</li>
<li><a href="http://gitorious.org/mini_exiftool">MiniExiftool</a>: Ruby library wrapper for ExifTool</li>
<li><a href="https://github.com/mceachen/exiftoolr">exiftoolr</a>: Ruby wrapper for ExifTool</li>
<li><a href="http://smarnach.github.com/pyexiftool/">pyexiftool</a>: Python wrapper for ExifTool</li>
<li><a href="https://github.com/guinslym/pyexifinfo">PyExifInfo</a>: Another Python wrapper for ExifTool</li>
<li><a href="https://github.com/romainneutron/PHPExiftool">PHPExiftool</a>: PHP wrapper for ExifTool (in development)</li>
<li><a href="https://exiftool.org/forum/index.php/topic,5381.0.html">ExifTool_PHP_StayOpen</a>: ExifTool PHP fast processing script using -stayOpen and Gearman</li>
<li><a href="http://sourceforge.net/projects/moss/">Moss</a>: Collection of Java utilities which includes an exiftool interface</li>
<li><a href="http://im4java.sourceforge.net">im4java</a>: Java interface to ImageMagick, ExifTool, and other image utilities</li>
<li><a href="https://github.com/mjeanroy/exiftool">Java ExifTool</a>: Enhanced Java Integration for ExifTool</li>
<li><a href="https://bitbucket.org/P_W999/j-exiftool/wiki/Home">J-ExifTool</a>: Open-source, cross platform Java7 library to read/write Exif tags in images</li>
<li><a href="https://github.com/mceachen/exiftool-vendored">exiftool-vendored</a>: Blazing-fast, cross-platform Node.js access to ExifTool</li>
<li><a href="https://exiftool.org/gui/articles/delphi01.html">How to call ExifTool from Delphi</a>, by Bogdan Hrastnik</li>
</ul>
<h3><a name="other_links">Other Links</a></h3>
<ul>
<li><a href="https://web.archive.org/web/20150419003745/http://www.ebv4linux.de/modules.php?name=News&file=article&sid=26">An interview with Phil Harvey</a> (in German), (<a href="https://exiftool.org/PhilHarveyInterview.pdf">English translation in PDF format</a>)</li>
</ul>
<h2><a name="boldly">Boldly Go where No Man has Gone Before...</a></h2>
<p>There is still much unknown information in the maker notes for many camera
models. (To see this information, run exiftool with the <code>-U</code>
option.) In this area, ExifTool is very much a collaborative effort, and
development relies heavily on the input from camera owners to help decode new
meta information. If you manage to figure out what any of it means, send me an
e-mail (philharvey66 at gmail.com) and I'll <b>add your new discoveries to
ExifTool</b>. Many thanks to all who have helped so far...</p>
<h2><a name="ack">Acknowledgements</a></h2>
<p>Thanks to everyone who has sent in bug reports, comments, or suggestions, and
special thanks to the following people for their valuable input and/or additions
to the code:</p>
<ul>
<li>Malcolm Wotton for his help with the D30 Custom Functions</li>
<li>David Anson for his help sorting out binary file problems on Windows</li>
<li>Leon Booyens for his suggestions</li>
<li>Dan Heller for his bug reports, detailed suggestions and guidance</li>
<li>Wayne Smith for his help figuring out the Pentax maker notes</li>
<li>Michael Rommel for his bug fixes and additions to the Canon maker notes</li>
<li>Joseph Heled for help figuring out some of the Nikon D70 maker notes</li>
<li>Joachim Loehr for adding the Casio type 2 maker notes</li>
<li>Greg Troxel for his suggestions and for adding ExifTool to pkgsrc</li>
<li>Thomas Walter for figuring out some Nikon tags</li>
<li>Brian Ristuccia for more information about some Nikon tags</li>
<li>Christian Koller for decoding the 20D custom functions</li>
<li>Matt Madrid for his testing and feedback</li>
<li>Tom Christiansen for his help decoding some Nikon tags</li>
<li>Markku Hänninen for help decoding tags for the Olympus E-1</li>
<li>Frank Ledwon for decoding many new Olympus tags</li>
<li>Robert Rottmerhusen for decoding many tricky Nikon lens data tags</li>
<li>Michael Tiemann for decoding a number of new Canon tags</li>
<li>Albert Bogner for his image samples, testing and useful suggestions</li>
<li>Rainer Hönle for decoding a number of new Canon 5D tags</li>
<li>Nilesh Patel for his help with the web page layout</li>
<li>Jens Duttke for his suggestions, bug reports and help decoding new tags</li>
<li>Dave Nicholson for decoding new tags in Pentax and Canon maker notes</li>
<li>Bogdan Hrastnik for his feedback, decoding efforts, user support and ExifTool GUI</li>
<li>Igal Milchtaich for decoding many Sony A100 tags</li>
<li>Laurent Clévy for his work analyzing Canon RAW images</li>
<li>Warren Hatch for decoding many Nikon tags</li>
<li>Jos Roost for decoding many Sony tags for various models</li>
<li>Iliah Borg and <a href="http://www.libraw.org/">LibRaw</a> for decoding many raw development tags</li>
<li>Bryan K. Williams and Hayo Baan for their help with the <a href="https://exiftool.org/forum/">ExifTool Forum</a></li>
</ul>
<h2><a name="license">License</a></h2>
<p>This is free software; you can redistribute it and/or modify it under the
same terms as <a href="http://dev.perl.org/licenses/">Perl itself</a>.</p>
<h2><a name="donate">Donate</a></h2>
<p>ExifTool is free, but due to popular request I am providing a way for
those who feel the need to send me some money. It is really not necessary,
but thank you very much if you decide to make a contribution:</p>
<blockquote>
<table>
<tr>
<td><center>
<form action="https://www.paypal.com/cgi-bin/webscr" method="POST">
<input type="hidden" name="cmd" value="_donations">
<input type="hidden" name="business" value="philharvey66@gmail.com">
<input type="hidden" name="return" value="https://exiftool.org/">
<input type="hidden" name="item_name" value="ExifTool Donation">
<input type="hidden" name="no_shipping" value="1">
<input type="hidden" name="currency_code" value="USD">
$<input name="amount" value="0.00" size="6">
<input type="submit" value="Donate via PayPal">
</form>
</center></td>
</tr>
</table>
</blockquote>
<p><i class=lt>(Your generous donations have provided the funds used to register
exiftool.org and pay for web site hosting, and for the Mac Mini used to generate
distribution files, run the necessary Windows virtual machine, and maintain
source-code and forum backups.)</i></p>
<h2><a name="contact">Contact Me</a></h2>
<p>If you have any comments, suggestions or questions, please post to the
<a href="https://exiftool.org/forum/">ExifTool Forum</a> so
other people may benefit from your experiences. (I check the forum at least as
often as my email.) Otherwise, if you must contact me directly, my e-mail
address is on the first line of the README file in the full distribution.
Thanks. - <i>Phil Harvey</i></p>
<div class=wide><table class=links><tr>
<th><a href="install.html" class=wt> Installing </a></th>
<th><a href="TagNames/index.html" class=wt> Tag Names </a></th>
<th><a href="#links" class=wt> Resources </a></th>
<th><a href="history.html" class=wt> History </a></th>
<th><a href="https://exiftool.org/forum/" class=wt> Forum </a></th>
<th class=rt><a href="faq.html" class=wt> FAQ </a></th>
</tr></table></div>
</body>
</html>
|