当前位置: 首页>>技术教程>>正文


如何使用命令行从我的照片中读取和删除元(exif)数据?

, , ,

问题描述

刚看了这个。图I我将在此分享以供将来参考。

最佳解决思路

安装exiftool:

sudo apt-get install libimage-exiftool-perl

要阅读照片元数据:

exiftool /tmp/my_photo.jpg

要删除照片元数据:

exiftool -all= /tmp/my_photo.jpg

之前:

ExifTool Version Number         : 8.60
File Name                       : my_photo.jpg
Directory                       : /tmp
File Size                       : 3.0 MB
File Modification Date/Time     : 2013:02:24 12:08:10-08:00
File Permissions                : rw-rw-r--
File Type                       : JPEG
MIME Type                       : image/jpeg
Exif Byte Order                 : Big-endian (Motorola, MM)
Orientation                     : Unknown (0)
Y Cb Cr Positioning             : Centered
X Resolution                    : 72
Y Resolution                    : 72
Resolution Unit                 : inches
Modify Date                     : 2013:02:24 11:25:27
Make                            : Samsung
Camera Model Name               : Galaxy Nexus
Exif Version                    : 0220
Flashpix Version                : 
Color Space                     : sRGB
Components Configuration        : Y, Cb, Cr, -
Compressed Bits Per Pixel       : 0
Exif Image Width                : 1944
Exif Image Height               : 2592
Date/Time Original              : 2013:02:24 11:25:27
Create Date                     : 2013:02:24 11:25:27
Exposure Time                   : 1/354
F Number                        : 2.8
Exposure Program                : Aperture-priority AE
ISO                             : 50, 0, 0
Shutter Speed Value             : 1/353
Aperture Value                  : 2.6
Brightness Value                : 0
Exposure Compensation           : 0
Max Aperture Value              : 2.6
Subject Distance                : 0 m
Metering Mode                   : Multi-spot
Light Source                    : Daylight
Flash                           : No Flash
Focal Length                    : 3.4 mm
Flash Energy                    : 0
Exposure Index                  : undef
Sensing Method                  : One-chip color area
Scene Type                      : Directly photographed
Custom Rendered                 : Custom
Exposure Mode                   : Auto
White Balance                   : Auto
Digital Zoom Ratio              : 1
Scene Capture Type              : Standard
Contrast                        : Normal
Saturation                      : Normal
Sharpness                       : Normal
Subject Distance Range          : Unknown
Image Unique ID                 : OAEL01
GPS Time Stamp                  : 19:25:27
GPS Date Stamp                  : 2013:02:24
Compression                     : JPEG (old-style)
Thumbnail Offset                : 2143
Thumbnail Length                : 10941
Image Width                     : 1944
Image Height                    : 2592
Encoding Process                : Baseline DCT, Huffman coding
Bits Per Sample                 : 8
Color Components                : 3
Y Cb Cr Sub Sampling            : YCbCr4:2:0 (2 2)
Aperture                        : 2.8
GPS Date/Time                   : 2013:02:24 19:25:27Z
Image Size                      : 1944x2592
Shutter Speed                   : 1/354
Thumbnail Image                 : (Binary data 10941 bytes, use -b option to extract)
Focal Length                    : 3.4 mm
Light Value                     : 12.4

后:

ExifTool Version Number         : 8.60
File Name                       : my_photo.jpg
Directory                       : /tmp
File Size                       : 2.9 MB
File Modification Date/Time     : 2013:02:24 12:21:39-08:00
File Permissions                : rw-rw-r--
File Type                       : JPEG
MIME Type                       : image/jpeg
Image Width                     : 1944
Image Height                    : 2592
Encoding Process                : Baseline DCT, Huffman coding
Bits Per Sample                 : 8
Color Components                : 3
Y Cb Cr Sub Sampling            : YCbCr4:2:0 (2 2)
Image Size                      : 1944x2592

参考文献:

次佳解决思路

Imagemagick

而不是Exiftool,我发现使用Imagemagick更有用,命令更容易记住:

阅读

identify -verbose myphoto.jpg | grep exif

去除

安装imagemagick软件包后,您可以执行此操作(不仅适用于JPEG):

mogrify -strip *.jpg

来自manual

-strip

strip the image of any profiles, comments or these PNG chunks: bKGD,cHRM,EXIF,gAMA,iCCP,iTXt,sRGB,tEXt,zCCP,zTXt,date.

AFAIK的唯一区别是mogrify不会删除此元数据:

我觉得这很有用。与diff -y <(exiftool wMogrify.jpg) <(exiftool wExiftool.jpg)相比


如果您更喜欢Exiftool,您可能会发现有用的创建exiftool -all= *.jpg && rm *original的别名。

另一种选择(仅适用于JPEG)是jhead

第三种解决思路

要删除然后更改单个字段,我们可以使用此命令:

root@kurawa:~# exiftool -Copyright= IMG_3357.jpg
root@kurawa:~# exiftool -Copyright=LinuxSlaves IMG_3357.jpg

参考:http://www.linuxslaves.com/2015/05/view-and-manipulate-exif-metadata-image.html

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/1967.html,未经允许,请勿转载。