批量删除exif信息


Answers:


17

如果您想删除或更改特定部分,其他ExifTool建议也很棒。但是,如果您只想完全删除所有元数据,请使用它(从手册页中):

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

您还可以将jhead与-de标志一起使用:

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

请注意,在两种情况下,EXIF都是元数据的一种类型。可能会出现其他元数据部分,并且根据您要执行的操作,这两个程序都有不同的选项来保留部分内容或将其全部删除。例如,jhead -purejpg去除渲染图像不需要的所有信息。


6

EXIF处理工具exiv2具有用于删除EXIF数据的命令:

exiv2 rm image.jpg

从图像中删除所有EXIF数据。

要从当前目录中的所有JPEG图像中删除EXIF数据,请使用

exiv2 rm *.jpg

要从当前目录中的所有JPEG图像及其所有子目录中递归删除EXIF数据,请使用:

find . -type f -iname '*.jpg' | xargs exiv2 rm

最好先测试一下命令。

要查看找到的文件:

find . -type f -iname '*.jpg' | less

要查看将要执行的命令:

find . -type f -iname '*.jpg' | xargs echo exiv2 rm | less

请注意echo插入之前exiv2打印命令,而不是运行它。


3

您应该查看一些开源工具,例如exiftool。有很多选项(例如exif,xmp,iptc)。

exiftool -overwrite_original \
-xmp:Creator='votre nom' \
-xmp:WebStatement='http://creativecommons.org/licenses/by-nc-nd/3.0/' \
-xmp:Rights='Copyright votre nom. This work is licensed under a Creative Commons Attribution-Noncommercial-No Derivative Works 3.0  License.' \
-iptc:By-line='votre nom' \
-iptc:CopyrightNotice='Copyright votre nom. This work is licensed under a Creative Commons Attribution-Noncommercial-No Derivative Works 3.0  License.' \
-exif:Artist='votre nom' \
-exif:Copyright='Copyright votre nom. This work is licensed under a Creative Commons Attribution-Noncommercial-No Derivative Works 3.0  License.' \
votre_fichier.jpg

接下来,您唯一要做的就是编写一个微型脚本,列出您的文件(jpg)并执行相应的操作。要删除字段的内容,您必须将其设置为“ ^”; 类似于以下示例:

-Software= ^
-ModifyDate= ^
-CreatorTool= ^
-MetadataDate= ^
-Rating= ^
-ImageNumber= ^
-WhiteBalance= ^
-Temperature= ^
-Tint= ^
-IncrementalTemperature= ^
-IncrementalTint= ^
-Exposure= ^
-Shadows= ^
-Brightness= ^
-Contrast= ^
-Saturation= ^
-Sharpness= ^
-LuminanceSmoothing= ^
-ColorNoiseReduction= ^
-ChromaticAberrationR= ^
-ChromaticAberrationB= ^
-VignetteAmount= ^
-VignetteMidpoint= ^
-ShadowTint= ^
-RedHue= ^
-RedSaturation= ^-GreenHue= ^
-GreenSaturation= ^
-BlueHue= ^
-BlueSaturation= ^
-FillLight= ^
-Vibrance= ^
-HighlightRecovery= ^
-Clarity= ^
-Defringe= ^
-HueAdjustmentRed= ^
-HueAdjustmentOrange= ^
-HueAdjustmentYellow= ^
-HueAdjustmentGreen= ^
-HueAdjustmentAqua= ^
-HueAdjustmentBlue= ^
-HueAdjustmentPurple= ^
-HueAdjustmentMagenta= ^
-SaturationAdjustmentRed= ^
-SaturationAdjustmentOrange= ^
-SaturationAdjustmentYellow= ^
-SaturationAdjustmentGreen= ^
-SaturationAdjustmentAqua= ^
-SaturationAdjustmentBlue= ^
-SaturationAdjustmentPurple= ^
-SaturationAdjustmentMagenta= ^
-LuminanceAdjustmentRed= ^
-LuminanceAdjustmentOrange= ^
-LuminanceAdjustmentYellow= ^
-LuminanceAdjustmentGreen= ^
-LuminanceAdjustmentAqua= ^
-LuminanceAdjustmentBlue= ^
-LuminanceAdjustmentPurple= ^
-LuminanceAdjustmentMagenta= ^
-SplitToningShadowHue= ^
-SplitToningShadowSaturation= ^
-SplitToningHighlightHue= ^
-SplitToningHighlightSaturation= ^
-SplitToningBalance= ^
-ParametricShadows= ^
-ParametricDarks= ^
-ParametricLights= ^
-ParametricHighlights= ^
-ParametricShadowSplit= ^
-ParametricMidtoneSplit= ^
-ParametricHighlightSplit= ^
-SharpenRadius= ^
-SharpenDetail= ^
-SharpenEdgeMasking= ^
-ConvertToGrayscale= ^
-ToneCurveName= ^
-CameraProfile= ^
-HasSettings= ^
-CropTop= ^
-CropLeft= ^
-CropBottom= ^
-CropRight= ^
-CropAngle= ^
-CropWidth= ^
-CropHeight= ^
-CropUnit= ^
-HasCrop= ^
-AlreadyApplied= ^
-ToneCurve= ^
-CameraProfile= ^
-ApplicationRecordVersion= ^

3

文森特建议使用exiftool是很好的。我建议您编写一个脚本,该脚本接受文件名的单个参数,然后在该脚本上运行所需的剥离功能。然后用于find在文件集上执行此脚本。该脚本如下所示:

#!/bin/sh
exiftool -overwrite_original -ExifFieldName=^ [-MoreExifFieldNames=^] $1

假设您将其另存为/usr/local/bin/strip_exif.sh,然后可以通过转到具有jpeg文件的文件夹来调用它,如下所示:

find -type f -iname '*.jpg' -exec strip_exif.sh {} \;

编辑:在看到mattdm关于剥离所有标签的参数的答案之后,我认为您可以跳过脚本,而仅使用如下查找:

find -type f -iname '*.jpg' -exec exiftool -all= {} \;
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.