diff --git a/pages/common/exiftool.md b/pages/common/exiftool.md index 81f3911355..c21326dd94 100644 --- a/pages/common/exiftool.md +++ b/pages/common/exiftool.md @@ -3,10 +3,18 @@ > Read and write meta information in files. > More information: . +- Print the EXIF metadata for a given file: + +`exiftool {{file}}` + - Remove all EXIF metadata from the given files: `exiftool -All= {{file1 file2 ...}}` +- Remove all EXIF metadata from the given image files, then re-add metadata for color and orientation: + +`exiftool -All= -tagsfromfile @ -colorspacetags -orientation {{image1 image2 ...}}` + - Move the date at which all photos in a directory were taken 1 hour forward: `exiftool "-AllDates+=0:0:0 1:0:0" {{path/to/directory}}`