exiftool_vendored 10.65.0 → 11.41.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of exiftool_vendored might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/bin/Changes +818 -19
- data/bin/MANIFEST +38 -0
- data/bin/META.json +1 -1
- data/bin/META.yml +1 -1
- data/bin/README +48 -44
- data/bin/arg_files/exif2xmp.args +4 -1
- data/bin/arg_files/gps2xmp.args +4 -1
- data/bin/arg_files/iptcCore.args +8 -0
- data/bin/arg_files/xmp2exif.args +4 -1
- data/bin/arg_files/xmp2gps.args +4 -1
- data/bin/config_files/dji.config +131 -0
- data/bin/config_files/example.config +6 -2
- data/bin/config_files/gps2utm.config +256 -256
- data/bin/config_files/nksc.config +146 -0
- data/bin/config_files/picasa_faces.config +382 -382
- data/bin/exiftool +688 -408
- data/bin/fmt_files/gpx.fmt +10 -6
- data/bin/fmt_files/gpx_wpt.fmt +10 -6
- data/bin/fmt_files/kml.fmt +8 -5
- data/bin/lib/File/RandomAccess.pm +48 -8
- data/bin/lib/File/RandomAccess.pod +21 -2
- data/bin/lib/Image/ExifTool.pm +645 -256
- data/bin/lib/Image/ExifTool.pod +219 -164
- data/bin/lib/Image/ExifTool/AES.pm +1 -1
- data/bin/lib/Image/ExifTool/AFCP.pm +3 -8
- data/bin/lib/Image/ExifTool/AIFF.pm +12 -4
- data/bin/lib/Image/ExifTool/APE.pm +1 -1
- data/bin/lib/Image/ExifTool/APP12.pm +1 -1
- data/bin/lib/Image/ExifTool/ASF.pm +19 -6
- data/bin/lib/Image/ExifTool/Apple.pm +13 -5
- data/bin/lib/Image/ExifTool/Audible.pm +1 -1
- data/bin/lib/Image/ExifTool/BMP.pm +1 -1
- data/bin/lib/Image/ExifTool/BPG.pm +17 -15
- data/bin/lib/Image/ExifTool/BZZ.pm +1 -1
- data/bin/lib/Image/ExifTool/BigTIFF.pm +30 -15
- data/bin/lib/Image/ExifTool/BuildTagLookup.pm +103 -52
- data/bin/lib/Image/ExifTool/Canon.pm +684 -112
- data/bin/lib/Image/ExifTool/CanonCustom.pm +119 -9
- data/bin/lib/Image/ExifTool/CanonRaw.pm +1 -1
- data/bin/lib/Image/ExifTool/CanonVRD.pm +13 -26
- data/bin/lib/Image/ExifTool/CaptureOne.pm +1 -1
- data/bin/lib/Image/ExifTool/Casio.pm +1 -1
- data/bin/lib/Image/ExifTool/Charset.pm +1 -1
- data/bin/lib/Image/ExifTool/DICOM.pm +12 -5
- data/bin/lib/Image/ExifTool/DJI.pm +51 -3
- data/bin/lib/Image/ExifTool/DNG.pm +15 -8
- data/bin/lib/Image/ExifTool/DPX.pm +1 -1
- data/bin/lib/Image/ExifTool/DV.pm +1 -1
- data/bin/lib/Image/ExifTool/DarwinCore.pm +63 -23
- data/bin/lib/Image/ExifTool/DjVu.pm +4 -2
- data/bin/lib/Image/ExifTool/EXE.pm +30 -6
- data/bin/lib/Image/ExifTool/Exif.pm +351 -109
- data/bin/lib/Image/ExifTool/FITS.pm +148 -0
- data/bin/lib/Image/ExifTool/FLAC.pm +2 -2
- data/bin/lib/Image/ExifTool/FLIF.pm +1 -1
- data/bin/lib/Image/ExifTool/FLIR.pm +109 -13
- data/bin/lib/Image/ExifTool/Fixup.pm +1 -1
- data/bin/lib/Image/ExifTool/Flash.pm +3 -3
- data/bin/lib/Image/ExifTool/FlashPix.pm +433 -9
- data/bin/lib/Image/ExifTool/Font.pm +2 -2
- data/bin/lib/Image/ExifTool/FotoStation.pm +1 -1
- data/bin/lib/Image/ExifTool/FujiFilm.pm +336 -16
- data/bin/lib/Image/ExifTool/GE.pm +1 -1
- data/bin/lib/Image/ExifTool/GIF.pm +5 -7
- data/bin/lib/Image/ExifTool/GIMP.pm +39 -3
- data/bin/lib/Image/ExifTool/GPS.pm +48 -22
- data/bin/lib/Image/ExifTool/GeoTiff.pm +23 -23
- data/bin/lib/Image/ExifTool/Geotag.pm +80 -45
- data/bin/lib/Image/ExifTool/GoPro.pm +709 -0
- data/bin/lib/Image/ExifTool/H264.pm +40 -18
- data/bin/lib/Image/ExifTool/HP.pm +1 -1
- data/bin/lib/Image/ExifTool/HTML.pm +19 -12
- data/bin/lib/Image/ExifTool/HtmlDump.pm +37 -26
- data/bin/lib/Image/ExifTool/ICC_Profile.pm +297 -23
- data/bin/lib/Image/ExifTool/ID3.pm +12 -7
- data/bin/lib/Image/ExifTool/IPTC.pm +48 -19
- data/bin/lib/Image/ExifTool/ISO.pm +1 -1
- data/bin/lib/Image/ExifTool/ITC.pm +1 -1
- data/bin/lib/Image/ExifTool/Import.pm +13 -9
- data/bin/lib/Image/ExifTool/InDesign.pm +3 -5
- data/bin/lib/Image/ExifTool/JPEG.pm +22 -11
- data/bin/lib/Image/ExifTool/JPEGDigest.pm +1 -1
- data/bin/lib/Image/ExifTool/JSON.pm +3 -3
- data/bin/lib/Image/ExifTool/JVC.pm +1 -1
- data/bin/lib/Image/ExifTool/Jpeg2000.pm +2 -2
- data/bin/lib/Image/ExifTool/Kodak.pm +1233 -58
- data/bin/lib/Image/ExifTool/KyoceraRaw.pm +1 -1
- data/bin/lib/Image/ExifTool/LNK.pm +1 -1
- data/bin/lib/Image/ExifTool/Lang/cs.pm +1 -1
- data/bin/lib/Image/ExifTool/Lang/de.pm +33 -24
- data/bin/lib/Image/ExifTool/Lang/en_ca.pm +64 -2
- data/bin/lib/Image/ExifTool/Lang/en_gb.pm +64 -2
- data/bin/lib/Image/ExifTool/Lang/es.pm +8 -4
- data/bin/lib/Image/ExifTool/Lang/fi.pm +46 -4
- data/bin/lib/Image/ExifTool/Lang/fr.pm +5 -3
- data/bin/lib/Image/ExifTool/Lang/it.pm +6 -3
- data/bin/lib/Image/ExifTool/Lang/ja.pm +15 -3
- data/bin/lib/Image/ExifTool/Lang/ko.pm +5 -2
- data/bin/lib/Image/ExifTool/Lang/nl.pm +6 -3
- data/bin/lib/Image/ExifTool/Lang/pl.pm +2 -2
- data/bin/lib/Image/ExifTool/Lang/ru.pm +1 -1
- data/bin/lib/Image/ExifTool/Lang/sv.pm +1 -1
- data/bin/lib/Image/ExifTool/Lang/tr.pm +4 -2
- data/bin/lib/Image/ExifTool/Lang/zh_cn.pm +1 -1
- data/bin/lib/Image/ExifTool/Lang/zh_tw.pm +1 -1
- data/bin/lib/Image/ExifTool/Leaf.pm +1 -1
- data/bin/lib/Image/ExifTool/Lytro.pm +4 -8
- data/bin/lib/Image/ExifTool/M2TS.pm +10 -9
- data/bin/lib/Image/ExifTool/MIE.pm +12 -8
- data/bin/lib/Image/ExifTool/MIEUnits.pod +1 -1
- data/bin/lib/Image/ExifTool/MIFF.pm +1 -1
- data/bin/lib/Image/ExifTool/MNG.pm +1 -1
- data/bin/lib/Image/ExifTool/MOI.pm +1 -1
- data/bin/lib/Image/ExifTool/MPC.pm +1 -1
- data/bin/lib/Image/ExifTool/MPEG.pm +2 -3
- data/bin/lib/Image/ExifTool/MPF.pm +6 -6
- data/bin/lib/Image/ExifTool/MWG.pm +4 -4
- data/bin/lib/Image/ExifTool/MXF.pm +2 -2
- data/bin/lib/Image/ExifTool/MacOS.pm +184 -34
- data/bin/lib/Image/ExifTool/MakerNotes.pm +101 -18
- data/bin/lib/Image/ExifTool/Matroska.pm +1 -1
- data/bin/lib/Image/ExifTool/Microsoft.pm +5 -3
- data/bin/lib/Image/ExifTool/Minolta.pm +89 -62
- data/bin/lib/Image/ExifTool/MinoltaRaw.pm +1 -1
- data/bin/lib/Image/ExifTool/Motorola.pm +1 -1
- data/bin/lib/Image/ExifTool/Nikon.pm +1511 -380
- data/bin/lib/Image/ExifTool/NikonCapture.pm +1 -1
- data/bin/lib/Image/ExifTool/NikonCustom.pm +2758 -2935
- data/bin/lib/Image/ExifTool/Nintendo.pm +1 -1
- data/bin/lib/Image/ExifTool/OOXML.pm +1 -1
- data/bin/lib/Image/ExifTool/Ogg.pm +1 -1
- data/bin/lib/Image/ExifTool/Olympus.pm +47 -8
- data/bin/lib/Image/ExifTool/OpenEXR.pm +1 -1
- data/bin/lib/Image/ExifTool/Opus.pm +1 -1
- data/bin/lib/Image/ExifTool/PCX.pm +138 -0
- data/bin/lib/Image/ExifTool/PDF.pm +58 -42
- data/bin/lib/Image/ExifTool/PGF.pm +1 -1
- data/bin/lib/Image/ExifTool/PICT.pm +1 -1
- data/bin/lib/Image/ExifTool/PLIST.pm +12 -5
- data/bin/lib/Image/ExifTool/PLUS.pm +1 -1
- data/bin/lib/Image/ExifTool/PNG.pm +108 -10
- data/bin/lib/Image/ExifTool/PPM.pm +3 -3
- data/bin/lib/Image/ExifTool/PSP.pm +1 -1
- data/bin/lib/Image/ExifTool/Palm.pm +1 -1
- data/bin/lib/Image/ExifTool/Panasonic.pm +299 -31
- data/bin/lib/Image/ExifTool/PanasonicRaw.pm +201 -19
- data/bin/lib/Image/ExifTool/Pentax.pm +164 -143
- data/bin/lib/Image/ExifTool/PhaseOne.pm +12 -5
- data/bin/lib/Image/ExifTool/PhotoCD.pm +9 -10
- data/bin/lib/Image/ExifTool/PhotoMechanic.pm +1 -1
- data/bin/lib/Image/ExifTool/Photoshop.pm +230 -60
- data/bin/lib/Image/ExifTool/PostScript.pm +29 -4
- data/bin/lib/Image/ExifTool/PrintIM.pm +1 -1
- data/bin/lib/Image/ExifTool/Qualcomm.pm +2 -2
- data/bin/lib/Image/ExifTool/QuickTime.pm +1539 -279
- data/bin/lib/Image/ExifTool/QuickTimeStream.pl +1857 -0
- data/bin/lib/Image/ExifTool/README +84 -46
- data/bin/lib/Image/ExifTool/RIFF.pm +116 -23
- data/bin/lib/Image/ExifTool/RSRC.pm +1 -1
- data/bin/lib/Image/ExifTool/RTF.pm +6 -4
- data/bin/lib/Image/ExifTool/Radiance.pm +1 -1
- data/bin/lib/Image/ExifTool/Rawzor.pm +3 -2
- data/bin/lib/Image/ExifTool/Real.pm +1 -1
- data/bin/lib/Image/ExifTool/Reconyx.pm +261 -7
- data/bin/lib/Image/ExifTool/Red.pm +325 -0
- data/bin/lib/Image/ExifTool/Ricoh.pm +3 -7
- data/bin/lib/Image/ExifTool/Samsung.pm +95 -25
- data/bin/lib/Image/ExifTool/Sanyo.pm +1 -1
- data/bin/lib/Image/ExifTool/Scalado.pm +1 -1
- data/bin/lib/Image/ExifTool/Shift.pl +26 -12
- data/bin/lib/Image/ExifTool/Shortcuts.pm +9 -2
- data/bin/lib/Image/ExifTool/Sigma.pm +36 -30
- data/bin/lib/Image/ExifTool/SigmaRaw.pm +3 -8
- data/bin/lib/Image/ExifTool/Sony.pm +531 -177
- data/bin/lib/Image/ExifTool/SonyIDC.pm +63 -3
- data/bin/lib/Image/ExifTool/Stim.pm +2 -2
- data/bin/lib/Image/ExifTool/TagInfoXML.pm +23 -23
- data/bin/lib/Image/ExifTool/TagLookup.pm +6352 -5062
- data/bin/lib/Image/ExifTool/TagNames.pod +3024 -565
- data/bin/lib/Image/ExifTool/Theora.pm +1 -1
- data/bin/lib/Image/ExifTool/Torrent.pm +2 -2
- data/bin/lib/Image/ExifTool/Unknown.pm +1 -1
- data/bin/lib/Image/ExifTool/VCard.pm +47 -9
- data/bin/lib/Image/ExifTool/Validate.pm +391 -99
- data/bin/lib/Image/ExifTool/Vorbis.pm +1 -1
- data/bin/lib/Image/ExifTool/WTV.pm +319 -0
- data/bin/lib/Image/ExifTool/WriteCanonRaw.pl +1 -1
- data/bin/lib/Image/ExifTool/WriteExif.pl +91 -18
- data/bin/lib/Image/ExifTool/WriteIPTC.pl +6 -6
- data/bin/lib/Image/ExifTool/WritePDF.pl +13 -12
- data/bin/lib/Image/ExifTool/WritePNG.pl +1 -1
- data/bin/lib/Image/ExifTool/WritePhotoshop.pl +1 -1
- data/bin/lib/Image/ExifTool/WritePostScript.pl +2 -2
- data/bin/lib/Image/ExifTool/WriteQuickTime.pl +764 -121
- data/bin/lib/Image/ExifTool/WriteXMP.pl +176 -67
- data/bin/lib/Image/ExifTool/Writer.pl +490 -246
- data/bin/lib/Image/ExifTool/XMP.pm +216 -76
- data/bin/lib/Image/ExifTool/XMP2.pl +54 -10
- data/bin/lib/Image/ExifTool/XMPStruct.pl +14 -11
- data/bin/lib/Image/ExifTool/ZIP.pm +60 -15
- data/bin/lib/Image/ExifTool/iWork.pm +12 -5
- data/bin/perl-Image-ExifTool.spec +46 -44
- data/lib/exiftool_vendored/version.rb +1 -1
- metadata +14 -4
data/bin/lib/Image/ExifTool.pod
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
#
|
6
6
|
# URL: http://owl.phy.queensu.ca/~phil/exiftool/
|
7
7
|
#
|
8
|
-
# Legal: Copyright (c) 2003-
|
8
|
+
# Legal: Copyright (c) 2003-2019, Phil Harvey (phil at owl.phy.queensu.ca)
|
9
9
|
# This library is free software; you can redistribute it and/or
|
10
10
|
# modify it under the same terms as Perl itself.
|
11
11
|
#------------------------------------------------------------------------------
|
@@ -55,7 +55,7 @@ Image::ExifTool - Read and write meta information
|
|
55
55
|
|
56
56
|
Reads and writes meta information in a wide variety of files, including the
|
57
57
|
maker notes of many digital cameras by various manufacturers such as Canon,
|
58
|
-
Casio, FLIR, FujiFilm, GE, HP, JVC/Victor, Kodak, Leaf,
|
58
|
+
Casio, DJI, FLIR, FujiFilm, GE, GoPro, HP, JVC/Victor, Kodak, Leaf,
|
59
59
|
Minolta/Konica-Minolta, Nikon, Nintendo, Olympus/Epson, Panasonic/Leica,
|
60
60
|
Pentax/Asahi, Phase One, Reconyx, Ricoh, Samsung, Sanyo, Sigma/Foveon and
|
61
61
|
Sony.
|
@@ -65,43 +65,45 @@ supported by ExifTool (r = read, w = write, c = create):
|
|
65
65
|
|
66
66
|
File Types
|
67
67
|
------------+-------------+-------------+-------------+------------
|
68
|
-
3FR r |
|
69
|
-
3G2 r/w |
|
70
|
-
3GP r/w |
|
71
|
-
A r |
|
72
|
-
AA r |
|
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
|
-
|
68
|
+
3FR r | DSS r | J2C r | ODP r | RAW r/w
|
69
|
+
3G2 r/w | DV r | JNG r/w | ODS r | RIFF r
|
70
|
+
3GP r/w | DVB r/w | JP2 r/w | ODT r | RSRC r
|
71
|
+
A r | DVR-MS r | JPEG r/w | OFR r | RTF r
|
72
|
+
AA r | DYLIB r | JSON r | OGG r | RW2 r/w
|
73
|
+
AAE r | EIP r | K25 r | OGV r | RWL r/w
|
74
|
+
AAX r/w | EPS r/w | KDC r | OPUS r | RWZ r
|
75
|
+
ACR r | EPUB r | KEY r | ORF r/w | RM r
|
76
|
+
AFM r | ERF r/w | LA r | OTF r | SEQ r
|
77
|
+
AI r/w | EXE r | LFP r | PAC r | SKETCH r
|
78
|
+
AIFF r | EXIF r/w/c | LNK r | PAGES r | SO r
|
79
|
+
APE r | EXR r | LRV r/w | PBM r/w | SR2 r/w
|
80
|
+
ARQ r/w | EXV r/w/c | M2TS r | PCD r | SRF r
|
81
|
+
ARW r/w | F4A/V r/w | M4A/V r/w | PCX r | SRW r/w
|
82
|
+
ASF r | FFF r/w | MAX r | PDB r | SVG r
|
83
|
+
AVI r | FITS r | MEF r/w | PDF r/w | SWF r
|
84
|
+
AZW r | FLA r | MIE r/w/c | PEF r/w | THM r/w
|
85
|
+
BMP r | FLAC r | MIFF r | PFA r | TIFF r/w
|
86
|
+
BPG r | FLIF r/w | MKA r | PFB r | TORRENT r
|
87
|
+
BTF r | FLV r | MKS r | PFM r | TTC r
|
88
|
+
CHM r | FPF r | MKV r | PGF r | TTF r
|
89
|
+
COS r | FPX r | MNG r/w | PGM r/w | VCF r
|
90
|
+
CR2 r/w | GIF r/w | MOBI r | PLIST r | VRD r/w/c
|
91
|
+
CR3 r/w | GPR r/w | MODD r | PICT r | VSD r
|
92
|
+
CRM r/w | GZ r | MOI r | PMP r | WAV r
|
93
|
+
CRW r/w | HDP r/w | MOS r/w | PNG r/w | WDP r/w
|
94
|
+
CS1 r/w | HDR r | MOV r/w | PPM r/w | WEBP r
|
95
|
+
DCM r | HEIC r | MP3 r | PPT r | WEBM r
|
96
|
+
DCP r/w | HEIF r | MP4 r/w | PPTX r | WMA r
|
97
|
+
DCR r | HTML r | MPC r | PS r/w | WMV r
|
98
|
+
DFONT r | ICC r/w/c | MPG r | PSB r/w | WTV r
|
99
|
+
DIVX r | ICS r | MPO r/w | PSD r/w | WV r
|
100
|
+
DJVU r | IDML r | MQV r/w | PSP r | X3F r/w
|
101
|
+
DLL r | IIQ r/w | MRW r/w | QTIF r/w | XCF r
|
102
|
+
DNG r/w | IND r/w | MXF r | R3D r | XLS r
|
103
|
+
DOC r | INSV r | NEF r/w | RA r | XLSX r
|
104
|
+
DOCX r | INX r | NRW r/w | RAF r/w | XMP r/w/c
|
105
|
+
DPX r | ISO r | NUMBERS r | RAM r | ZIP r
|
106
|
+
DR4 r/w/c | ITC r | O r | RAR r |
|
105
107
|
|
106
108
|
Meta Information
|
107
109
|
----------------------+----------------------+---------------------
|
@@ -294,19 +296,20 @@ still generated, but the tag value is undefined.
|
|
294
296
|
|
295
297
|
=item HASH ref
|
296
298
|
|
297
|
-
Reference to a hash containing the options settings
|
298
|
-
documentation below for a list of available options.
|
299
|
-
as arguments to L</ImageInfo> take precedence over
|
299
|
+
Reference to a hash containing the options settings valid for this call
|
300
|
+
only. See L</Options> documentation below for a list of available options.
|
301
|
+
Options specified as arguments to L</ImageInfo> take precedence over
|
302
|
+
L</Options> settings.
|
300
303
|
|
301
304
|
=back
|
302
305
|
|
303
306
|
=item Return Values:
|
304
307
|
|
305
308
|
L</ImageInfo> returns a reference to a hash of tag key/value pairs. The tag
|
306
|
-
keys are identifiers
|
309
|
+
keys are identifiers -- essentially case-sensitive tag names with an
|
307
310
|
appended instance number if multiple tags with the same name were extracted
|
308
311
|
from the image. Many of the ExifTool functions require a tag key as an
|
309
|
-
argument.
|
312
|
+
argument. Use L</GetTagName [static]> to get the tag name for a given tag
|
310
313
|
key. Note that the case of the tag names may not be the same as requested.
|
311
314
|
Here is a simple example to print out the information returned by
|
312
315
|
L</ImageInfo>:
|
@@ -498,7 +501,7 @@ applications may use local encoding instead. Default is 'Latin'.
|
|
498
501
|
|
499
502
|
Fallback internal IPTC character set to assume if IPTC information contains
|
500
503
|
no CodedCharacterSet tag. Possible values are the same as the L</Charset>
|
501
|
-
option.
|
504
|
+
option. Default is 'Latin'.
|
502
505
|
|
503
506
|
Note that this option affects some types of information when reading/writing
|
504
507
|
the file and other types when getting/setting tag values, so it must be
|
@@ -523,11 +526,12 @@ without recoding. Default is 0.
|
|
523
526
|
|
524
527
|
=item Compact
|
525
528
|
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
529
|
+
Option to write compact XMP output. The XMP specification suggests that the
|
530
|
+
data be padded with blanks to allow in-place editing. With this flag set to
|
531
|
+
1, the 2 kB of padding is not written. Note that this only effects embedded
|
532
|
+
XMP since padding is never written for stand-alone XMP files. When set to
|
533
|
+
2, spaces to indent XMP for readability are also dropped. Default is undef.
|
534
|
+
Also see the XMPShorthand option for reducing the size of XMP.
|
531
535
|
|
532
536
|
=item Composite
|
533
537
|
|
@@ -563,7 +567,7 @@ different when copying tags with L</SetNewValuesFromFile>.
|
|
563
567
|
Format for printing date/time values. See C<strftime> in the L<POSIX>
|
564
568
|
package for details about the format string. If date can not be converted,
|
565
569
|
value is left unchanged unless the StrictDate option is set. Timezones are
|
566
|
-
ignored.
|
570
|
+
ignored. The inverse conversion (ie. when calling L</SetNewValue>) is
|
567
571
|
performed only if POSIX::strptime or Time::Piece is installed. The default
|
568
572
|
setting of undef causes date/time values to remain in standard EXIF format
|
569
573
|
(similar to a DateFormat of "%Y:%m:%d %H:%M:%S").
|
@@ -605,8 +609,8 @@ XMP to be extracted.
|
|
605
609
|
|
606
610
|
Flag to extract information from embedded documents in EPS files, embedded
|
607
611
|
EPS information and JPEG and Jpeg2000 images in PDF files, embedded MPF
|
608
|
-
images in JPEG and MPO files,
|
609
|
-
|
612
|
+
images in JPEG and MPO files, timed metadata in videos, and the resource
|
613
|
+
fork of Mac OS files. Default is undef.
|
610
614
|
|
611
615
|
=item FastScan
|
612
616
|
|
@@ -615,19 +619,23 @@ this option set to 1, ExifTool will not scan to the end of a JPEG image to
|
|
615
619
|
check for an AFCP, CanonVRD, FotoStation, PhotoMechanic, MIE or PreviewImage
|
616
620
|
trailer. This also stops the parsing after the first comment in GIF images,
|
617
621
|
and at the audio/video data with RIFF-format files (AVI, WAV, etc), so any
|
618
|
-
trailing metadata (eg. XMP written by some utilities) may be missed.
|
619
|
-
|
620
|
-
|
621
|
-
|
622
|
-
|
623
|
-
|
622
|
+
trailing metadata (eg. XMP written by some utilities) may be missed. Also
|
623
|
+
disables input buffering for some types of files to reduce memory usage when
|
624
|
+
reading from a non-seekable stream. When combined with the ScanForXMP
|
625
|
+
option, prevents scanning for XMP in recognized file types. With a value of
|
626
|
+
2, ExifTool will also avoid extracting any EXIF MakerNote information. When
|
627
|
+
set to 3 or 4, only pseudo system tags and FileType are generated. For 3,
|
628
|
+
the file header is read to provide an educated guess at FileType. For 4,
|
629
|
+
the file is not read at all and FileType is determined based on the file's
|
630
|
+
extension. Default is undef.
|
624
631
|
|
625
632
|
=item Filter
|
626
633
|
|
627
634
|
Perl expression used to filter values for all tags. The expression acts on
|
628
635
|
the value of the Perl default variable ($_), and changes the value of this
|
629
|
-
variable as required. The value is not changed if $_ is set to undef.
|
630
|
-
Applies to all returned values unless
|
636
|
+
variable as required. The value is not changed if $_ is set to undef. List
|
637
|
+
items are filtered individually. Applies to all returned values unless
|
638
|
+
PrintConv option is disabled.
|
631
639
|
|
632
640
|
=item FixBase
|
633
641
|
|
@@ -671,6 +679,14 @@ ignored if the PDOP is greater than this. Default is undef.
|
|
671
679
|
Minimum number of satellites for geotagging. GPS fixes are ignored if the
|
672
680
|
number of acquired satellites is less than this. Default is undef.
|
673
681
|
|
682
|
+
=item GeoSpeedRef
|
683
|
+
|
684
|
+
Reference units for writing GPSSpeed when geotagging:
|
685
|
+
|
686
|
+
'K', 'k' or 'km/h' - km/h
|
687
|
+
'M', 'm' or 'mph' - mph
|
688
|
+
<anything else> - knots (default undef)
|
689
|
+
|
674
690
|
=item GlobalTimeShift
|
675
691
|
|
676
692
|
Time shift to apply to all extracted date/time PrintConv values. Does not
|
@@ -760,9 +776,10 @@ L<Image::ExifTool::TagNames/MacOS MDItem Tags> for more information).
|
|
760
776
|
|
761
777
|
=item MissingTagValue
|
762
778
|
|
763
|
-
Value for missing tags in expressions
|
764
|
-
If not set, a minor error is issued
|
765
|
-
to '' if L</IgnoreMinorErrors> is
|
779
|
+
Value for missing tags in tag name expressions (or tags where the advanced
|
780
|
+
formatting expression returns undef). If not set, a minor error is issued
|
781
|
+
for missing values, or the value is set to '' if L</IgnoreMinorErrors> is
|
782
|
+
set. Default is undef.
|
766
783
|
|
767
784
|
=item NoPDFList
|
768
785
|
|
@@ -803,18 +820,18 @@ Flag set to assume that QuickTime date/time values are stored as UTC,
|
|
803
820
|
causing conversion to local time when they are extracted and from local time
|
804
821
|
when written. According to the QuickTime specification date/time values
|
805
822
|
should be UTC, but many digital cameras store local time instead (presumably
|
806
|
-
because they don't know the time zone), so the default is
|
807
|
-
option also disables the autodetection of incorrect
|
808
|
-
QuickTime date/time values, and enforces a time zero of
|
809
|
-
QuickTime specification.
|
823
|
+
because they don't know the time zone), so the default is to not convert
|
824
|
+
these times. This option also disables the autodetection of incorrect
|
825
|
+
time-zero offsets in QuickTime date/time values, and enforces a time zero of
|
826
|
+
1904 as per the QuickTime specification.
|
810
827
|
|
811
828
|
=item RequestAll
|
812
829
|
|
813
830
|
Flag to request all tags to be extracted. This causes some tags to be
|
814
831
|
generated which normally would not be unless specifically requested (by
|
815
832
|
passing the tag name to L</ImageInfo> or L</ExtractInfo>). May be set to 2
|
816
|
-
or 3 to enable generation of some additional tags mentioned in the tag
|
817
|
-
documentation. Default is undef.
|
833
|
+
or 3 to enable generation of some additional tags as mentioned in the tag
|
834
|
+
name documentation. Default is undef.
|
818
835
|
|
819
836
|
=item RequestTags
|
820
837
|
|
@@ -858,10 +875,20 @@ Secondary sort order used for tags within each group when Sort is 'Group':
|
|
858
875
|
Flag to return undefined value for any date which can't be converted when
|
859
876
|
the DateFormat option is used. Default is undef.
|
860
877
|
|
861
|
-
undef - Same as 0 for reading, 1 for copying
|
878
|
+
undef - Same as 0 for reading/writing, or 1 for copying
|
862
879
|
0 - Return date/time value unchanged if it can't be converted
|
863
880
|
1 - Return undef if date/time value can't be converted
|
864
881
|
|
882
|
+
When set to 1 while writing a PrintConv date/time value with the DateFormat
|
883
|
+
option set, the value is written only if POSIX::strptime or Time::Piece is
|
884
|
+
available and can successfully convert the value.
|
885
|
+
|
886
|
+
For PNG CreationTime, a setting of 1 has the additional effect of causing
|
887
|
+
the date/time to be reformatted according to PNG 1.2 recommendation
|
888
|
+
(RFC-1123) when writing, and a warning to be issued for any non-standard
|
889
|
+
value when reading (but note that Windows may not recognize PNG date/time
|
890
|
+
values in standard format).
|
891
|
+
|
865
892
|
=item Struct
|
866
893
|
|
867
894
|
Flag to return XMP structures as hash references instead of flattening into
|
@@ -885,6 +912,13 @@ FileDeviceID, FileBlockSize and FileBlockCount.
|
|
885
912
|
Output file reference for Verbose and HtmlDump options. Default is
|
886
913
|
\*STDOUT.
|
887
914
|
|
915
|
+
=item TimeZone
|
916
|
+
|
917
|
+
Time zone for local date/time values. May be set to any valid TZ string.
|
918
|
+
Uses the system time zone if not specified. Default is undef. (Requires
|
919
|
+
POSIX::tzset, which may not be available in Windows. A work-around in
|
920
|
+
Windows is to C<set TZ=E<lt>zoneE<gt>> before running ExifTool.)
|
921
|
+
|
888
922
|
=item Unknown
|
889
923
|
|
890
924
|
Flag to get the values of unknown tags. If set to 1, unknown tags are
|
@@ -899,6 +933,7 @@ are:
|
|
899
933
|
|
900
934
|
PARAM - Get parameter
|
901
935
|
PARAM= - Clear parameter
|
936
|
+
PARAM^= - Set parameter to empty string
|
902
937
|
PARAM=VALUE - Set parameter
|
903
938
|
<hash ref> - Set entire UserParam hash lookup
|
904
939
|
undef - Clear all user parameters
|
@@ -906,14 +941,15 @@ are:
|
|
906
941
|
Where I<PARAM> is the user-defined parameter name (case insensitive).
|
907
942
|
|
908
943
|
User-defined parameters may be accessed in tag name expressions by prefixing
|
909
|
-
the parameter name with a dollar sign
|
910
|
-
|
911
|
-
to the hash of all
|
944
|
+
the parameter name with a dollar sign just like normal tags, or via the API
|
945
|
+
by calling C<Options('UserParam','PARAM')>. If called without no additional
|
946
|
+
arguments, C<Options('UserParam')> returns a reference to the hash of all
|
947
|
+
user parameters (with lower-case names).
|
912
948
|
|
913
949
|
=item Validate
|
914
950
|
|
915
|
-
|
916
|
-
|
951
|
+
Flag to perform extra validation checks when reading, causing extra warnings
|
952
|
+
to be generated if problems are found. Default is undef.
|
917
953
|
|
918
954
|
=item Verbose
|
919
955
|
|
@@ -948,6 +984,10 @@ and L<Image::ExifTool::TagNames/MacOS XAttr Tags> for more information).
|
|
948
984
|
Flag to enable automatic conversion for unknown XMP tags with values that
|
949
985
|
look like rational numbers or dates. Default is 1.
|
950
986
|
|
987
|
+
=item XMPShorthand
|
988
|
+
|
989
|
+
Flag set to write xmp in shorthand format. Default is undef.
|
990
|
+
|
951
991
|
=back
|
952
992
|
|
953
993
|
=item Return Values:
|
@@ -1128,7 +1168,8 @@ called with a source file name.
|
|
1128
1168
|
The following ExifTool options are effective in the call to L</WriteInfo>:
|
1129
1169
|
|
1130
1170
|
ByteOrder, Charset, CharsetEXIF, CharsetFileName, CharsetIPTC, Compact,
|
1131
|
-
Compress, FixBase, IgnoreMinorErrors, Password, PNGEarlyXMP and
|
1171
|
+
Compress, FixBase, IgnoreMinorErrors, Password, PNGEarlyXMP, Verbose and
|
1172
|
+
XMPShorthand.
|
1132
1173
|
|
1133
1174
|
=head2 GetTagList
|
1134
1175
|
|
@@ -1214,11 +1255,12 @@ Note that this list will be empty if tags were not specifically requested
|
|
1214
1255
|
|
1215
1256
|
Get the value of a specified tag. The returned value is either the
|
1216
1257
|
human-readable (PrintConv) value, the converted machine-readable (ValueConv)
|
1217
|
-
value,
|
1218
|
-
|
1219
|
-
|
1220
|
-
|
1221
|
-
|
1258
|
+
value, the original raw (Raw) value, or the original rational (Rational)
|
1259
|
+
value for rational formats. If the value type is not specified, the
|
1260
|
+
PrintConv value is returned if the PrintConv option is set, otherwise the
|
1261
|
+
ValueConv value is returned. The PrintConv values are same as the values
|
1262
|
+
returned by L</ImageInfo> and L</GetInfo> in the tag/value hash unless the
|
1263
|
+
PrintConv option is disabled.
|
1222
1264
|
|
1223
1265
|
Tags which represent lists of multiple values (as may happen with 'Keywords'
|
1224
1266
|
for example) are handled specially. In scalar context, the returned
|
@@ -1254,8 +1296,8 @@ optional group specifier), use L</GetInfo> instead.
|
|
1254
1296
|
The following options are in effect when L</GetValue> is called:
|
1255
1297
|
|
1256
1298
|
Charset, CoordFormat, DateFormat, Escape, Filter, GlobalTimeShift, Lang,
|
1257
|
-
ListItem, ListJoin, PrintConv, QuickTimeUTC (conversion to local time),
|
1258
|
-
StrictDate.
|
1299
|
+
ListItem, ListJoin, PrintConv, QuickTimeUTC (conversion to local time),
|
1300
|
+
StrictDate and TimeZone.
|
1259
1301
|
|
1260
1302
|
=over 4
|
1261
1303
|
|
@@ -1263,7 +1305,7 @@ StrictDate.
|
|
1263
1305
|
|
1264
1306
|
0) ExifTool object reference
|
1265
1307
|
|
1266
|
-
1) Tag key
|
1308
|
+
1) Tag key, or case-sensitive tag name with optional group prefix(es)
|
1267
1309
|
|
1268
1310
|
2) [optional] Value type: 'PrintConv', 'ValueConv', 'Both', 'Raw' or
|
1269
1311
|
'Rational'
|
@@ -1510,7 +1552,7 @@ explicitly, either by group (with 'Adobe:*') or as a block (with 'Adobe').
|
|
1510
1552
|
The following ExifTool options are effective in the call to L</SetNewValue>:
|
1511
1553
|
|
1512
1554
|
Charset, DateFormat, Escape, IgnoreMinorErrors, Lang, ListJoin, ListSplit,
|
1513
|
-
PrintConv, QuickTimeUTC, StrictDate, Verbose and WriteMode.
|
1555
|
+
PrintConv, QuickTimeUTC, StrictDate, TimeZone, Verbose and WriteMode.
|
1514
1556
|
|
1515
1557
|
=head2 GetNewValue
|
1516
1558
|
|
@@ -1609,13 +1651,15 @@ of this feature allows the tag value to be set from a string containing tag
|
|
1609
1651
|
names with leading '$' symbols (eg. 'CommentE<lt>the file is $filename').
|
1610
1652
|
Braces '{}' may be used around the tag name to separate it from subsequent
|
1611
1653
|
text, and a '$$' is used to to represent a '$' symbol. The behaviour for
|
1612
|
-
missing tags in expressions is defined by the L</MissingTagValue> option.
|
1654
|
+
missing tags in expressions is defined by the L</MissingTagValue> option.
|
1613
1655
|
The tag value may be modified via changes to the default input variable ($_)
|
1614
1656
|
in a Perl expression placed inside the braces and after a semicolon
|
1615
|
-
following the tag name (see the last example above).
|
1616
|
-
|
1617
|
-
|
1618
|
-
|
1657
|
+
following the tag name (see the last example above). A '@' may be added
|
1658
|
+
after the tag name (before the semicolon) to make the expression act on
|
1659
|
+
individual list items instead of the concatenated string for list-type tags.
|
1660
|
+
Braces within the expression must be balanced. Multiple options hash
|
1661
|
+
references may be passed to set different options for different tags.
|
1662
|
+
Options apply to subsequent tags in the argument list.
|
1619
1663
|
|
1620
1664
|
By default, this routine will commute information between same-named tags in
|
1621
1665
|
different groups, allowing information to be translated between images with
|
@@ -1776,11 +1820,11 @@ systems only.
|
|
1776
1820
|
|
1777
1821
|
Set the file name and directory, or create a hard link. If not specified,
|
1778
1822
|
the new file name is derived from the new values of the FileName and
|
1779
|
-
Directory tags, or from the HardLink tag if creating a link. If
|
1780
|
-
FileName tag contains a '/', then the file is renamed into a new
|
1781
|
-
If FileName ends with '/', then it is taken as a directory name
|
1782
|
-
is moved into the new directory. The new value for the
|
1783
|
-
precedence over any directory specified in FileName.
|
1823
|
+
Directory tags, or from the HardLink or SymLink tag if creating a link. If
|
1824
|
+
the FileName tag contains a '/', then the file is renamed into a new
|
1825
|
+
directory. If FileName ends with '/', then it is taken as a directory name
|
1826
|
+
and the file is moved into the new directory. The new value for the
|
1827
|
+
Directory tag takes precedence over any directory specified in FileName.
|
1784
1828
|
|
1785
1829
|
$result = $exifTool->SetFileName($file);
|
1786
1830
|
$result = $exifTool->SetFileName($file, $newName);
|
@@ -1795,14 +1839,14 @@ precedence over any directory specified in FileName.
|
|
1795
1839
|
|
1796
1840
|
2) [optional] New file name
|
1797
1841
|
|
1798
|
-
3) [optional] '
|
1799
|
-
'Test' to test renaming feature by printing
|
1800
|
-
changing anything.
|
1842
|
+
3) [optional] 'HardLink' or 'SymLink' to create a hard or symbolic link
|
1843
|
+
instead of renaming the file, or 'Test' to test renaming feature by printing
|
1844
|
+
the old and new names instead of changing anything.
|
1801
1845
|
|
1802
1846
|
=item Return Value:
|
1803
1847
|
|
1804
|
-
1
|
1805
|
-
|
1848
|
+
1 on success, 0 if nothing was done, or -1 if there was an error renaming the
|
1849
|
+
file or creating the link.
|
1806
1850
|
|
1807
1851
|
=item Notes:
|
1808
1852
|
|
@@ -1971,13 +2015,15 @@ L</ExtractEmbedded> option for extracting tags from embedded documents.)
|
|
1971
2015
|
Nested sub-documents (if they exist) are indicated by numbers separated with
|
1972
2016
|
dashes in the group name, to an arbitrary depth. (eg. 'Doc2-3-1' is the 1st
|
1973
2017
|
sub-sub-document of the 3rd sub-document of the 2nd embedded document of the
|
1974
|
-
main file.)
|
2018
|
+
main file.) Document numbers are also used to differentiate samples for
|
2019
|
+
timed metadata in videos.
|
1975
2020
|
|
1976
2021
|
Family 4 provides a method for differentiating tags when multiple tags exist
|
1977
2022
|
with the same name in the same location. The primary instance of a tag (the
|
1978
2023
|
tag extracted when the Duplicates option is disabled and no group is
|
1979
2024
|
specified) has no family 4 group name, but additional instances have have
|
1980
|
-
family 4 group names of 'Copy1', 'Copy2', 'Copy3', etc.
|
2025
|
+
family 4 group names of 'Copy1', 'Copy2', 'Copy3', etc. For convenience,
|
2026
|
+
the primary tag may also be accessed using a group name of 'Copy0'.
|
1981
2027
|
|
1982
2028
|
See L</GetAllGroups [static]> for complete lists of group names.
|
1983
2029
|
|
@@ -2150,51 +2196,54 @@ Here is a complete list of groups for each of these families:
|
|
2150
2196
|
|
2151
2197
|
AFCP, AIFF, APE, APP0, APP1, APP11, APP12, APP13, APP14, APP15, APP4, APP5,
|
2152
2198
|
APP6, APP8, ASF, Audible, CanonVRD, Composite, DICOM, DNG, DV, DjVu, Ducky,
|
2153
|
-
EXE, EXIF, ExifTool, FLAC, FLIR, File, Flash, FlashPix, Font,
|
2154
|
-
GIF, GIMP, GeoTiff, H264, HTML, ICC_Profile, ID3, IPTC,
|
2155
|
-
JPEG, Jpeg2000, LNK, Leaf, Lytro, M2TS, MIE, MIFF,
|
2156
|
-
|
2157
|
-
|
2158
|
-
|
2159
|
-
|
2199
|
+
EXE, EXIF, ExifTool, FITS, FLAC, FLIR, File, Flash, FlashPix, Font,
|
2200
|
+
FotoStation, GIF, GIMP, GeoTiff, GoPro, H264, HTML, ICC_Profile, ID3, IPTC,
|
2201
|
+
ISO, ITC, JFIF, JPEG, JSON, Jpeg2000, LNK, Leaf, Lytro, M2TS, MIE, MIFF,
|
2202
|
+
MNG, MOI, MPC, MPEG, MPF, MXF, MakerNotes, Matroska, Meta, Ogg, OpenEXR,
|
2203
|
+
Opus, PDF, PICT, PLIST, PNG, PSP, Palm, PanasonicRaw, PhotoCD,
|
2204
|
+
PhotoMechanic, Photoshop, PostScript, PrintIM, QuickTime, RAF, RIFF, RSRC,
|
2205
|
+
RTF, Radiance, Rawzor, Real, Red, SVG, SigmaRaw, Stim, Theora, Torrent,
|
2206
|
+
VCard, Vorbis, WTV, XML, XMP, ZIP
|
2160
2207
|
|
2161
2208
|
=item Family 1 (Specific Location):
|
2162
2209
|
|
2163
2210
|
AC3, AFCP, AIFF, APE, ASF, AVI1, Adobe, AdobeCM, AdobeDNG, Apple, Audible,
|
2164
2211
|
CIFF, CameraIFD, Canon, CanonCustom, CanonRaw, CanonVRD, Casio, Chapter#,
|
2165
2212
|
Composite, DICOM, DJI, DNG, DV, DjVu, DjVu-Meta, Ducky, EPPIM, EXE, EXIF,
|
2166
|
-
ExifIFD, ExifTool, FLAC, FLIR, File, Flash, FlashPix, Font,
|
2167
|
-
FujiFilm, FujiIFD, GE, GIF, GIMP, GPS, GeoTiff, GlobParamIFD,
|
2168
|
-
H264, HP, HTC, HTML, HTML-dc, HTML-ncc, HTML-office,
|
2169
|
-
HTTP-equiv, ICC-chrm, ICC-clrt, ICC-header, ICC-meas,
|
2170
|
-
ICC_Profile, ICC_Profile#, ID3, ID3v1, ID3v1_Enh,
|
2171
|
-
IFD0, IFD1, IPTC, IPTC#, ISO, ITC, InteropIFD,
|
2172
|
-
|
2173
|
-
|
2174
|
-
|
2175
|
-
MIE-
|
2176
|
-
MIE-
|
2177
|
-
|
2178
|
-
|
2179
|
-
|
2180
|
-
|
2181
|
-
|
2182
|
-
|
2183
|
-
|
2184
|
-
|
2185
|
-
|
2186
|
-
|
2187
|
-
|
2188
|
-
|
2189
|
-
XMP-
|
2190
|
-
XMP-
|
2191
|
-
XMP-
|
2192
|
-
XMP-
|
2193
|
-
XMP-
|
2194
|
-
XMP-
|
2195
|
-
XMP-
|
2196
|
-
XMP-
|
2197
|
-
XMP-
|
2213
|
+
ExifIFD, ExifTool, FITS, FLAC, FLIR, File, Flash, FlashPix, Font,
|
2214
|
+
FotoStation, FujiFilm, FujiIFD, GE, GIF, GIMP, GPS, GeoTiff, GlobParamIFD,
|
2215
|
+
GoPro, GraphConv, H264, HP, HTC, HTML, HTML-dc, HTML-ncc, HTML-office,
|
2216
|
+
HTML-prod, HTML-vw96, HTTP-equiv, ICC-chrm, ICC-clrt, ICC-header, ICC-meas,
|
2217
|
+
ICC-meta, ICC-view, ICC_Profile, ICC_Profile#, ID3, ID3v1, ID3v1_Enh,
|
2218
|
+
ID3v2_2, ID3v2_3, ID3v2_4, IFD0, IFD1, IPTC, IPTC#, ISO, ITC, InteropIFD,
|
2219
|
+
ItemList, JFIF, JFXX, JPEG, JPEG-HDR, JSON, JVC, Jpeg2000, KDC_IFD, Keys,
|
2220
|
+
Kodak, KodakBordersIFD, KodakEffectsIFD, KodakIFD, KyoceraRaw, LNK, Leaf,
|
2221
|
+
LeafSubIFD, Leica, Lytro, M2TS, MAC, MIE-Audio, MIE-Camera, MIE-Canon,
|
2222
|
+
MIE-Doc, MIE-Extender, MIE-Flash, MIE-GPS, MIE-Geo, MIE-Image, MIE-Lens,
|
2223
|
+
MIE-Main, MIE-MakerNotes, MIE-Meta, MIE-Orient, MIE-Preview, MIE-Thumbnail,
|
2224
|
+
MIE-UTM, MIE-Unknown, MIE-Video, MIFF, MNG, MOBI, MOI, MPC, MPEG, MPF0,
|
2225
|
+
MPImage, MS-DOC, MXF, MacOS, MakerNotes, MakerUnknown, Matroska,
|
2226
|
+
MediaJukebox, Meta, MetaIFD, Microsoft, Minolta, MinoltaRaw, Motorola, NITF,
|
2227
|
+
Nikon, NikonCapture, NikonCustom, NikonScan, Nintendo, Ocad, Ogg, Olympus,
|
2228
|
+
OpenEXR, Opus, PDF, PICT, PNG, PNG-pHYs, PSP, Palm, Panasonic, PanasonicRaw,
|
2229
|
+
Pentax, PhaseOne, PhotoCD, PhotoMechanic, Photoshop, PictureInfo,
|
2230
|
+
PostScript, PreviewIFD, PrintIM, ProfileIFD, Qualcomm, QuickTime, RAF, RAF2,
|
2231
|
+
RIFF, RMETA, RSRC, RTF, Radiance, Rawzor, Real, Real-CONT, Real-MDPR,
|
2232
|
+
Real-PROP, Real-RA3, Real-RA4, Real-RA5, Real-RJMD, Reconyx, Red, Ricoh,
|
2233
|
+
SPIFF, SR2, SR2DataIFD, SR2SubIFD, SRF#, SVG, Samsung, Sanyo, Scalado,
|
2234
|
+
Sigma, SigmaRaw, Sony, SonyIDC, Stim, SubIFD, System, Theora, Torrent,
|
2235
|
+
Track#, UserData, VCalendar, VCard, Version0, Vorbis, WTV, XML, XMP,
|
2236
|
+
XMP-DICOM, XMP-GAudio, XMP-GDepth, XMP-GFocus, XMP-GImage, XMP-GPano,
|
2237
|
+
XMP-GSpherical, XMP-LImage, XMP-MP, XMP-MP1, XMP-PixelLive, XMP-aas,
|
2238
|
+
XMP-acdsee, XMP-album, XMP-apple-fi, XMP-aux, XMP-cc, XMP-cell,
|
2239
|
+
XMP-creatorAtom, XMP-crs, XMP-dc, XMP-dex, XMP-digiKam, XMP-drone-dji,
|
2240
|
+
XMP-dwc, XMP-exif, XMP-exifEX, XMP-expressionmedia, XMP-extensis, XMP-fpv,
|
2241
|
+
XMP-getty, XMP-ics, XMP-iptcCore, XMP-iptcExt, XMP-lr, XMP-mediapro,
|
2242
|
+
XMP-microsoft, XMP-mwg-coll, XMP-mwg-kw, XMP-mwg-rs, XMP-pdf, XMP-pdfx,
|
2243
|
+
XMP-photomech, XMP-photoshop, XMP-plus, XMP-pmi, XMP-prism, XMP-prl,
|
2244
|
+
XMP-prm, XMP-pur, XMP-rdf, XMP-swf, XMP-tiff, XMP-x, XMP-xmp, XMP-xmpBJ,
|
2245
|
+
XMP-xmpDM, XMP-xmpMM, XMP-xmpNote, XMP-xmpPLUS, XMP-xmpRights, XMP-xmpTPg,
|
2246
|
+
ZIP
|
2198
2247
|
|
2199
2248
|
=item Family 2 (Category):
|
2200
2249
|
|
@@ -2229,22 +2278,27 @@ A list of deletable group names in alphabetical order. The current list of
|
|
2229
2278
|
deletable group names is:
|
2230
2279
|
|
2231
2280
|
AFCP, APP0, APP1, APP10, APP11, APP12, APP13, APP14, APP15, APP2, APP3,
|
2232
|
-
APP4, APP5, APP6, APP7, APP8, APP9, Adobe,
|
2233
|
-
|
2234
|
-
|
2235
|
-
|
2236
|
-
|
2237
|
-
|
2238
|
-
|
2239
|
-
|
2240
|
-
|
2241
|
-
|
2242
|
-
|
2243
|
-
|
2244
|
-
|
2245
|
-
|
2246
|
-
|
2247
|
-
|
2281
|
+
APP4, APP5, APP6, APP7, APP8, APP9, Adobe, Audio, Author, CIFF, Camera,
|
2282
|
+
CanonVRD, Document, Ducky, EXIF, ExifIFD, ExifTool, File, FlashPix,
|
2283
|
+
FotoStation, GPS, GlobParamIFD, ICC_Profile, IFD0, IFD1, IPTC, Image,
|
2284
|
+
InteropIFD, JFIF, Jpeg2000, Location, MIE, MPF, MakerNotes, Meta, MetaIFD,
|
2285
|
+
NikonCapture, Other, PDF, PDF-update, PNG, PNG-pHYs, PhotoMechanic,
|
2286
|
+
Photoshop, Preview, PrintIM, Printing, RMETA, RSRC, SubIFD, Time, Trailer,
|
2287
|
+
Video, XML, XML-*, XMP, XMP-*
|
2288
|
+
|
2289
|
+
To schedule a group for deletion, call L</SetNewValue> with a tag name like
|
2290
|
+
'EXIF:*' and an undefined tag value.
|
2291
|
+
|
2292
|
+
Deleting a family 0 or 1 group will delete the entire corresponding block of
|
2293
|
+
metadata, but deleting a family 2 group (eg. Audio, Author, Camera, etc.)
|
2294
|
+
deletes the individual tags belonging to that category.
|
2295
|
+
|
2296
|
+
The 'Trailer' group allows all trailers in JPEG and TIFF-format images to be
|
2297
|
+
deleted at once, including unknown trailers. Note that the JPEG "APP"
|
2298
|
+
groups are special, and are used only to delete application segments which
|
2299
|
+
are not associated with another deletable group. For example, deleting
|
2300
|
+
'APP14:*' will delete other APP14 segments, but not the APP14 "Adobe"
|
2301
|
+
segment.
|
2248
2302
|
|
2249
2303
|
=back
|
2250
2304
|
|
@@ -2261,9 +2315,10 @@ Get type of file given file name.
|
|
2261
2315
|
|
2262
2316
|
0) [optional] File name (or just an extension)
|
2263
2317
|
|
2264
|
-
1) [optional] Flag to return a description instead of a type.
|
2265
|
-
return
|
2266
|
-
for unsupported files is undef)
|
2318
|
+
1) [optional] Flag to return a description instead of a type. Default is
|
2319
|
+
undef. Set to 0 to also return types of recognized but unsupported files
|
2320
|
+
(otherwise the return value for unsupported files is undef), or 1 to return
|
2321
|
+
descriptions.
|
2267
2322
|
|
2268
2323
|
=item Return Value:
|
2269
2324
|
|
@@ -2323,8 +2378,8 @@ files.
|
|
2323
2378
|
Add user-defined tags to an existing tag table at run time. This differs
|
2324
2379
|
from the usual technique of creating user-defined tags via the
|
2325
2380
|
%Image::ExifTool::UserDefined hash (see the ExifTool_config file in the
|
2326
|
-
Image::ExifTool distribution) because it allows tags to be added after
|
2327
|
-
|
2381
|
+
Image::ExifTool distribution) because it allows tags to be added after a tag
|
2382
|
+
table has been initialized.
|
2328
2383
|
|
2329
2384
|
use Image::ExifTool ':Public';
|
2330
2385
|
my %tags = (
|
@@ -2568,7 +2623,7 @@ specified by the L</Charset> option.
|
|
2568
2623
|
|
2569
2624
|
=head1 AUTHOR
|
2570
2625
|
|
2571
|
-
Copyright 2003-
|
2626
|
+
Copyright 2003-2019, Phil Harvey
|
2572
2627
|
|
2573
2628
|
This library is free software; you can redistribute it and/or modify it
|
2574
2629
|
under the same terms as Perl itself.
|