[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖
ImageMagick - 一种图片处理接口,有各种编程语言接口和命令行方式
1

评分人数

TOP

本帖最后由 523066680 于 2017-4-23 11:18 编辑

回复 4# codegay


    想起来了,安装 ImageMagick 后安装目录有 identify.exe

可以像这样提取图片信息:
identify -verbose R0024820.JPG



convert -verbose R0024820.JPG info:

部分输出
  1.   Properties:
  2.     date:create: 2017-04-02T19:33:02+08:00
  3.     date:modify: 2017-04-02T19:33:02+08:00
  4.     exif:ApertureValue: 34/10
  5.     exif:BrightnessValue: 31/10
  6.     exif:ColorSpace: 1
  7.     exif:ComponentsConfiguration: 1, 2, 3, 0
  8.     exif:CompressedBitsPerPixel: 320/100
  9.     exif:Copyright:
  10.     exif:DateTime: 2017:04:02 19:33:03
  11.     exif:DateTimeDigitized: 2017:04:02 19:33:03
  12.     exif:DateTimeOriginal: 2017:04:02 19:33:03
  13.     exif:ExifImageLength: 3264
  14.     exif:ExifImageWidth: 4352
  15.     exif:ExifOffset: 442
  16.     exif:ExifVersion: 48, 50, 51, 48
  17.     exif:ExposureBiasValue: 0/10
  18.     exif:ExposureMode: 1
  19.     exif:ExposureProgram: 1
  20.     exif:ExposureTime: 10/800
  21.     exif:Flash: 16
  22.     exif:FlashPixVersion: 48, 49, 48, 48
  23.     exif:FNumber: 320/100
  24.     exif:FocalLength: 183/10
  25.     exif:FocalLengthIn35mmFilm: 28
  26.     exif:ImageDescription:
  27.     exif:InteroperabilityOffset: 33982
  28.     exif:ISOSpeedRatings: 100
  29.     exif:LightSource: 0
  30.     exif:Make: RICOH IMAGING COMPANY, LTD.
复制代码
1

评分人数

TOP

返回列表