Linux

批量刪除exif資訊

  • January 10, 2018

如何從數千個 JPG 文件中遞歸刪除 EXIF 資訊?

如果您想刪除或更改特定部分,其他 ExifTool 建議非常有用。但是,如果您只想完全刪除所有元數據,請使用它(來自手冊頁):

  exiftool -all= dst.jpg
       Delete all meta information from an image.

您還可以使用帶有 -de 標誌的jhead

  -de    Delete the Exif header entirely.  Leaves  other  metadata
         sections intact.

請注意,在這兩種情況下,EXIF 只是一種元數據。可能存在其他元數據部分,並且根據您想要執行的操作,這兩個程序都有不同的選項來保留部分或全部刪除。例如,jhead -purejpg去除渲染圖像不需要的所有資訊。

引用自:https://unix.stackexchange.com/questions/13251