offers utility functions for interacting with jpeg exif metadata
currently supports retrieval of TIFF and EXIF data from jpeg images
in progress
n/a
in progress
to install the plugin using Cordova CLI
$ cordova plugin add com.ensufire.exifutil
or the PhoneGap CLI
$ phonegap plugin add com.ensufire.exifutl
returns a js object containing the keyed exif header data from a jpeg image
returns a js object containing the keyed Tiff header data from a jpeg image
returns a js object containing the keyed data of the Geolocation subifd of the exif header from a jpeg image
strips all exif data from a given jpeg image
strips the geolocation subifd from the exif header of a jpeg image
|-- LICENSE
|-- README.md
|-- plugin.xml
|-- src/
| |-- ios/
| | |-- ExifUtility.h
| | |-- ExifUtility.m
| | |-- README.md
| |-- android/
| | |-- README.md
| |-- wp8/
| | |-- README.md
| |-- bb10
| | |-- README.md
|-- www/
|-- |-- exifutility.js
|-- spec/
| |--
- src/ contains native implementations of the plugin
- src/ios contains the iOS native implementation and a README.md for iOS specific details
- www/ contains the js implementation
- spec/ contains unit tests
- spec/exifutility.js the js implementation of the plugin