A hacked version of Ti.Media so that Ti.Media.openPhotoGallery provides location and EXIF data in the success callback
This module was created to be used in place of Ti.Media.openPhotoGallery when location and EXIF data is needed from the Photo Gallery.
Make sure the path to your Titanium Mobile SDK in titanium.xcconfig is correct. The ~
denotes your home directory. You may have to remove the ~
if the SDK is not installed there.
TITANIUM_SDK = ~/Library/Application Support/Titanium/mobilesdk/osx/$(TITANIUM_SDK_VERSION)
Build the module:
./build.py
Copy my.media-iphone-X.X.zip (where X.X is the version) to the ROOT of your project (same directory as tiapp.xml)
Add the module to the tiapp.xml file:
<modules>
<module platform="iphone" version="0.1">my.media</module>
</modules>
To access this module from JavaScript, you would do the following:
var mymedia = require("my.media");
The mymedia variable is a reference to the Module object.
mymedia.openPhotoGallery({
success:function(e) {
if (e.mediaType === Ti.Media.MEDIA_TYPE_PHOTO) {
Ti.API.debug("Photo was uploaded");
}
Ti.API.debug('openPhotoGallery SUCCESS: ' + JSON.stringify(e));
if (e.metadata) {
var dialog = Ti.UI.createAlertDialog({
message: e.metadata,
ok: 'OK',
title: 'Metadata'
}).show();
}
},
cancel:function() {
Ti.API.debug("openPhotoGallery CANCEL");
},
error:function(error) {
Ti.API.error("openPhotoGallery ERROR: " + JSON.stringify(error));
},
animated:true,
allowEditing:true,
videoMaximumDuration:15000, // 15 seconds
videoQuality: Ti.Media.QUALITY_MEDIUM,
mediaTypes:[Ti.Media.MEDIA_TYPE_PHOTO, Ti.Media.MEDIA_TYPE_VIDEO]
});
David Knell (Twitter: dknell)
Apache Public License 2.0