hiphapis/titanium-mobile-alasset-module
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
ALAsset Module for Appcelerator Titanium
======================
DESCRIPTION
=======================
With this module you get access to the ALAsset framework.
This means, you can list all images (videos are not supported yet) from the users camera roll.
The default asset group is "ALAssetsGroupSavedPhotos" which has all camera roll photos.
To change the group set the parameter "group" to one of these values:
"savedPhotos" => All saved photos
"photoStream" => The users photo stream
"faces" => faces synced from iTunes
"all" => All photos
As the assets will get enumerated asynchronous, you have to define a "load" callback, which returns an object with the following properties:
image: TiBlob object containing the large image
thumbnail: TiBlob object containing the image thumbnail
index: current index
Everything is licensed under MIT
USAGE
========================
var module = require('de.marcelpociot.assetlibrary');
Ti.API.info("module is => " + module);
module.assets({
group: "all",
assetCallback: function(e){
var image = e.image;
var thumbnail = e.thumbnail;
var index = e.index;
var meta = e.meta;
var view = Ti.UI.createImageView({
image: thumbnail,
top: 0,
left: (index * 50),
width: 50,
height: 50,
exif: meta.exif,
location: meta.location,
});
window.add(view);
}
});
TODO
========================
There is currently no access to asset groups or videos.
ABOUT THE AUTHOR
========================
I'm a web enthusiast located in germany.
Follow me on twitter: @marcelpociot
Releases
No releases published
Languages
- Objective-C 67.2%
- Python 29.7%
- JavaScript 3.1%