2
votes

I'm working on creating a client app for Google Drive (PHP). Referring to Files API (https://developers.google.com/drive/v2/reference/files), although I see the main EXIF metadata, I'm missing some of the frequently used other EXIF parms and IPTC metadata.

EXIF Fields missing: focaldistance, meteringmode,sensortype,exposuremode,exposurebias,Lens &MaxApertureValue.

Also, none of the IPTC metadata are parsed: keywords, category, author, copyright, caption, headline, byline,city, state, country, sublocation

Question: Is there are alternate solution to derive above data for the images stored in Google Drive?

Thanks

1

1 Answers

0
votes

Edit: We have added some EXIF fields:

"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
 }

Note: using this test file

Thanks for the feature request, we will look to getting those added.