Exiftool - comandos de escrita

De Pontão Nós Digitais
Revisão de 12h08min de 19 de junho de 2015 por Felipecabral (discussão | contribs)
Ir para navegaçãoIr para pesquisar

Note that quotes are necessary around arguments which contain certain special characters such as >, < or any white space. These quoting techniques are shell dependent, but the examples below will work for most Unix shells. With the Windows cmd shell however, double quotes should be used (eg. -Comment="This is a new comment").

exiftool -Comment='This is a new comment' dst.jpg Write new comment to a JPG image (replaces any existing comment).

exiftool -comment= -o newdir -ext jpg . Remove comment from all JPG images in the current directory, writing the modified images to a new directory.

exiftool -keywords=EXIF -keywords=editor dst.jpg Replace existing keyword list with two new keywords (EXIF and editor).

exiftool -Keywords+=word -o newfile.jpg src.jpg Copy a source image to a new file, and add a keyword (word) to the current list of keywords.

exiftool -exposurecompensation+=-0.5 a.jpg Decrement the value of ExposureCompensation by 0.5 EV. Note that += with a negative value is used for decrementing because the -= operator is used for conditional deletion (see next example).

exiftool -credit-=xxx dir Delete Credit information from all files in a directory where the Credit value was (xxx).

exiftool -xmp:description-de='kühl' -E dst.jpg Write alternate language for XMP:Description, using HTML character escaping to input special characters.

exiftool -all= dst.jpg Delete all meta information from an image. Note: You should NOT do this to RAW images (except DNG) since proprietary RAW image formats often contain information in the makernotes that is necessary for converting the image.

exiftool -all= -comment='lonely' dst.jpg Delete all meta information from an image and add a comment back in. (Note that the order is important: -comment='lonely' -all= would also delete the new comment.)

exiftool -all= --jfif:all dst.jpg Delete all meta information except JFIF group from an image.

exiftool -Photoshop:All= dst.jpg Delete Photoshop meta information from an image (note that the Photoshop information also includes IPTC).

exiftool -r -XMP-crss:all= DIR Recursively delete all XMP-crss information from images in a directory.

exiftool '-ThumbnailImage<=thumb.jpg' dst.jpg Set the thumbnail image from specified file (Note: The quotes are necessary to prevent shell redirection).

exiftool '-JpgFromRaw<=%d%f_JFR.JPG' -ext NEF -r . Recursively write JPEG images with filenames ending in _JFR.JPG to the JpgFromRaw tag of like-named files with extension .NEF in the current directory. (This is the inverse of the -JpgFromRaw command of the READING EXAMPLES section above.)

exiftool -DateTimeOriginal-='0:0:0 1:30:0' dir Adjust original date/time of all images in directory dir by subtracting one hour and 30 minutes. (This is equivalent to -DateTimeOriginal-=1.5. See Image::ExifTool::Shift.pl for details.)

exiftool -createdate+=3 -modifydate+=3 a.jpg b.jpg Add 3 hours to the CreateDate and ModifyDate timestamps of two images.

exiftool -AllDates+=1:30 -if '$make eq "Canon"' dir Shift the values of DateTimeOriginal, CreateDate and ModifyDate forward by 1 hour and 30 minutes for all Canon images in a directory. (The AllDates tag is provided as a shortcut for these three tags, allowing them to be accessed via a single tag.)

exiftool -xmp:city=Kingston image1.jpg image2.nef Write a tag to the XMP group of two images. (Without the xmp: this tag would get written to the IPTC group since City exists in both, and IPTC is preferred by default.)

exiftool -LightSource-='Unknown (0)' dst.tiff Delete LightSource tag only if it is unknown with a value of 0.

exiftool -whitebalance-=auto -WhiteBalance=tung dst.jpg Set WhiteBalance to Tungsten only if it was previously Auto.

exiftool -comment-= -comment='new comment' a.jpg Write a new comment only if the image doesn't have one already.

exiftool -o %d%f.xmp dir Create XMP meta information data files for all images in dir.

exiftool -o test.xmp -owner=Phil -title='XMP File' Create an XMP data file only from tags defined on the command line.

exiftool '-ICC_Profile<=%d%f.icc' image.jpg Write ICC_Profile to an image from a .icc file of the same name.

exiftool -hierarchicalkeywords='{keyword=one,children={keyword=B}}' Write structured XMP information. See http://owl.phy.queensu.ca/~phil/exiftool/struct.html for more details.

exiftool -trailer:all= image.jpg Delete any trailer found after the end of image (EOI) in a JPEG file. A number of digital cameras store a large PreviewImage after the JPEG EOI, and the file size may be reduced significantly by deleting this trailer. See the JPEG Tags documentation for a list of recognized JPEG trailers.