Since now JPEG decoders read EXIF for orientation (and hopefully later for resolution), it could be nice to allow developers to read that metadata and any other annotations through JavaScript. That information can contain many interesting nuggets like GPS coordinates and camera info, in addition to the display-relevant resolution/orientation tags.
A possible API
Add HTMLImageElement.metadata
, which would include a map according to EXIF tags, with human readable names as constants.
Something like: `function getImageTimezone(image) { return image.metadata[HTMLImageMetaData.TimeZoneOffset /* 0x882a */] }