identify

identifyは画像ファイルの情報やサーバ情報を取得・表示するコマンドです。

画像のフォーマットや容量、幅・高さはもちろん、他にも様々な情報を取得する事ができます。

例えば以下のように実行します。

% identify ./sample/img1.jpg
./sample/img1.jpg JPEG 400x300 400x300+0+0 8-bit sRGB 86.2KB 0.000u 0:00.031

画像のフォーマットがJPEGであることや画像サイズが横400px、高さ300px、ファイルの容量が86.2kbである事が分かります。

さらに詳しく調べる場合は -verboseオプションを付けます。

% identify -verbose ./sample/img1.jpg
Image: ./sample/img1.jpg
 Format: JPEG (Joint Photographic Experts Group JFIF format)
 Class: DirectClass
 Geometry: 400x300+0+0
 Units: Undefined
 Type: TrueColor
 Endianess: Undefined
 Colorspace: sRGB
 Depth: 8-bit
 Channel depth:
 red: 8-bit
 green: 8-bit
 blue: 8-bit
 Channel statistics:
 Red:
 min: 0 (0)
 max: 255 (1)
 mean: 94.8535 (0.371974)
 standard deviation: 73.6221 (0.288714)
 kurtosis: -0.960836
 skewness: 0.44815
 Green:
 min: 0 (0)
 max: 255 (1)
 mean: 96.8335 (0.379739)
 standard deviation: 70.6638 (0.277113)
 kurtosis: -1.05161
 skewness: 0.428135
 Blue:
 min: 0 (0)
 max: 255 (1)
 mean: 53.3948 (0.209391)
 standard deviation: 79.5064 (0.31179)
 kurtosis: 1.01059
 skewness: 1.58863
 Image statistics:
 Overall:
 min: 0 (0)
 max: 255 (1)
 mean: 81.6939 (0.320368)
 standard deviation: 74.6879 (0.292894)
 kurtosis: -0.423441
 skewness: 0.812484
 Rendering intent: Perceptual
 Gamma: 0.454545
 Chromaticity:
 red primary: (0.64,0.33)
 green primary: (0.3,0.6)
 blue primary: (0.15,0.06)
 white point: (0.3127,0.329)
 Interlace: JPEG
 Background color: white
 Border color: srgb(223,223,223)
 Matte color: grey74
 Transparent color: black
 Compose: Over
 Page geometry: 400x300+0+0
 Dispose: Undefined
 Iterations: 0
 Compression: JPEG
 Quality: 94
 Orientation: Undefined
 Properties:
 date:create: 2014-09-27T16:11:16+09:00
 date:modify: 2014-09-27T14:48:59+09:00
 jpeg:colorspace: 2
 jpeg:sampling-factor: 1x1,1x1,1x1
 signature: c3f04f118c6d84a208f1fa69545bc6cfbdda257d92c71a9e352322cb1c1a6db6
 xmpMM:DerivedFrom:
 Profiles:
 Profile-8bim: 56 bytes
 Profile-APP12: 15 bytes
 Profile-exif: 22 bytes
 Profile-iptc: 15 bytes
 City[1,90]: 0x00000000: 254700 -%
 unknown[2,0]:
 Profile-xmp: 756 bytes
 Artifacts:
 filename: ./sample/img1.jpg
 verbose: true
 Tainted: False
 Filesize: 86.2KB
 Number pixels: 120K
 Pixels per second: 7.68MB
 User time: 0.016u
 Elapsed time: 0:01.015
 Version: ImageMagick 6.8.0-7 2014-04-18 Q16 http://www.imagemagick.org
ページの先頭へ戻る