如何从Linux命令行中获取图像(图片)的信息?
我在做一个Web应用程序,目前正在从一个旧的应用程序中迁移一些东西,但我讨厌我必须打开一个图像编辑器来获取一些关于我正在迁移的图像的信息。
有什么命令行工具可以用在Linux中完成这样的任务吗?
我在做一个Web应用程序,目前正在从一个旧的应用程序中迁移一些东西,但我讨厌我必须打开一个图像编辑器来获取一些关于我正在迁移的图像的信息。
有什么命令行工具可以用在Linux中完成这样的任务吗?
对于一些图像格式,你可以使用file
命令:
$ file MyPNG.png
MyPNG.png: PNG image, 681 x 345, 8-bit/color RGB, non-interlaced
并不是所有的图像格式都会报告大小(最明显的是JPEG不报告):
$ file MyJpeg.jpg
MyJpeg.jpg: JPEG image data, JFIF standard 1.01
对于那些你必须使用更复杂的命令,例如:
$ convert MyJpeg.jpg -print "Size: %wx%h\n" /dev/null
Size: 380x380
convert
命令是ImageMagick软件包的一部分。
exiv2是从图片文件中获取信息的 “工具":
~$exiv2 myimage.jpg
输出:
File name : myimage.jpg
File size : 1196944 Bytes
MIME type : image/jpeg
Image size : 2592 x 1944
Camera make : LG Electronics
Camera model : LG-P970
Image timestamp : 2013:05:19 17:27:06
Image number :
Exposure time : 1/9 s
Aperture :
Exposure bias : 0 EV
Flash : Yes, compulsory
Flash bias :
Focal length : 3.7 mm
Subject distance:
ISO speed : 745
Exposure mode :
Metering mode : Average
Macro mode :
Image quality :
Exif Resolution :
White balance : Auto
Thumbnail : image/jpeg, 13776 Bytes
Copyright :
Exif comment :
mediainfo会提供更详细的信息。通常在Linux上的标准版本中,在OSX上也可以通过homebrew来提供。
试试在当前文件夹中运行:
mediainfo *
或
mediainfo .
这两个命令都会显示当前文件夹和子文件夹中的所有媒体文件的信息。
显示从当前文件夹开始的所有JPG图片信息(包括子文件夹):
find . -iname "*.jpg" -exec mediainfo {} \;
它对音频和视频文件也非常有用,因为它可以显示所有音频/视频流的比特率、编码算法、容器类型、FOURCC代码,即XVID
、X264
等。
另外,看看ExifTool by Phil Harvey; 一个例子。
$ exiftool test.png
ExifTool Version Number : 8.15
File Name : test.png
Directory : .
File Size : 12 MB
File Modification Date/Time : 2014:02:13 13:04:52+01:00
File Permissions : rw-r--r--
File Type : PNG
MIME Type : image/png
Image Width : 2490
Image Height : 3424
Bit Depth : 8
Color Type : RGB
Compression : Deflate/Inflate
Filter : Adaptive
Interlace : Noninterlaced
Significant Bits : 8 8 8
Image Size : 2490x3424
Btw, 我想从命令行中获取DPI/分辨率的信息;有趣的是,有时这些工具都没有在图像中报告这些信息(就像上面的代码段);更多的信息,请看我想用Imagemagick改变DPI而不改变图像数据的实际字节大小–超级用户 —然而,identify -verbose
似乎对上一段代码段中的相同图像也能正常工作。
$ identify -verbose test.png
Image: test.png
Format: PNG (Portable Network Graphics)
Class: DirectClass
Geometry: 2490x3424+0+0
Resolution: 72x72
Print size: 34.5833x47.5556
Units: Undefined
Type: TrueColor
Endianess: Undefined
Colorspace: RGB
Depth: 8-bit
Channel depth:
red: 8-bit
green: 8-bit
blue: 8-bit
Channel statistics:
Red:
min: 8 (0.0313725)
max: 255 (1)
mean: 237.541 (0.931533)
standard deviation: 37.2797 (0.146195)
kurtosis: 21.2876
skewness: -4.56853
Green:
min: 15 (0.0588235)
max: 255 (1)
mean: 240.007 (0.941204)
standard deviation: 37.8264 (0.148339)
kurtosis: 20.7241
skewness: -4.51584
Blue:
min: 9 (0.0352941)
max: 255 (1)
mean: 240.349 (0.942547)
standard deviation: 38.7118 (0.151811)
kurtosis: 22.255
skewness: -4.72275
Image statistics:
Overall:
min: 8 (0.0313725)
max: 255 (1)
mean: 179.474 (0.703821)
standard deviation: 108.711 (0.426316)
kurtosis: -0.958865
skewness: -0.995795
Rendering intent: Undefined
Interlace: None
Background color: white
Border color: rgb(223,223,223)
Matte color: grey74
Transparent color: black
Compose: Over
Page geometry: 2490x3424+0+0
Dispose: Undefined
Iterations: 0
Compression: Zip
Orientation: Undefined
Properties:
date:create: 2014-02-13T13:11:08+01:00
date:modify: 2014-02-13T13:04:52+01:00
signature: bada990d3ba29b311501146d9013d67cf36f667c6d39b1f28a72ce913924397d
Artifacts:
verbose: true
Tainted: False
Filesize: 12.52MB
Number pixels: 8.526M
Pixels per second: 7.894M
User time: 1.080u
Elapsed time: 0:02.080
Version: ImageMagick 6.6.2-6 2012-08-17 Q16 http://www.imagemagick.org
. ….不过,使用identify -verbose
读取分辨率单位为PixelsPerInch的单位可能有点麻烦 - 请看 ImageMagick - 查看主题 - Cannot set units to pixelsperinch?.
identify -verbose image.png
是ImageMagick包中的标识,它还可以从jpeg图片中提取exif信息。
您可以使用 :
php -r "print_r(getimagesize('file:///archives/Picture/12 farvardin/20120331_013.jpg'));"
也可以将file://
替换为http://
。