Google Drive SDK - 图片元数据

时间:2012-10-28 23:45:09

标签: google-drive-api

我正在为Google云端硬盘(PHP)创建客户端应用。参考Files API(https://developers.google.com/drive/v2/reference/files),虽然我看到了主要的EXIF元数据,但我遗漏了一些常用的其他EXIF参数和IPTC元数据。

缺少EXIF字段:焦距,计量模式,敏感类型,曝光模式,曝光偏光,镜头和MaxApertureValue。

此外,没有解析任何IPTC元数据:关键字,类别,作者,版权,标题,标题,署名,城市,州,国家,子位置

问题:是否有其他解决方案可以为Google云端硬盘中存储的图像获取上述数据?

由于

1 个答案:

答案 0 :(得分:0)

编辑:我们添加了一些EXIF字段:

"imageMediaMetadata": {
  "width": 500,
  "height": 375,
  "rotation": 0,
  "location": {
   "latitude": 41.8898575,
   "longitude": 12.486211666666666,
   "altitude": 56.819
  },
  "date": "2011:12:31 17:07:29",
  "cameraMake": "SONY",
  "cameraModel": "DSC-HX9V               ",
  "exposureTime": 0.004,
  "aperture": 5.9,
  "flashUsed": false,
  "focalLength": 68.48,
  "isoSpeed": 100,
  "meteringMode": "Pattern",
  "exposureMode": "Auto",
  "colorSpace": "sRGB",
  "whiteBalance": "Auto",
  "exposureBias": 0.0,
  "maxApertureValue": 3.4375
 }

注意:使用this test file

感谢功能请求,我们会考虑添加这些功能。