https://github.com/hansemannn/titanium-exif
Parse EXIF-data from local images in Axway Titanium.
https://github.com/hansemannn/titanium-exif
exif-data exif-interface exif-metadata javascript titanium
Last synced: 28 days ago
JSON representation
Parse EXIF-data from local images in Axway Titanium.
- Host: GitHub
- URL: https://github.com/hansemannn/titanium-exif
- Owner: hansemannn
- License: other
- Created: 2017-08-26T16:46:58.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-26T19:04:50.000Z (almost 9 years ago)
- Last Synced: 2025-10-13T19:34:46.197Z (8 months ago)
- Topics: exif-data, exif-interface, exif-metadata, javascript, titanium
- Language: Objective-C
- Size: 98.6 KB
- Stars: 2
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Titanium EXIF-Tools
## Example
```js
var EXIF = require('ti.exiftools');
var win = Ti.UI.createWindow({
backgroundColor: '#fff'
});
var btn = Ti.UI.createButton({
title: 'Get EXIF-data'
});
btn.addEventListener('click', function() {
EXIF.scanEXIFDataFromImage({
image: Ti.Filesystem.getFile('test.jpg').read(),
tags: [271],
callback: function(e) {
Ti.API.warn(e.exif);
}
});
});
win.add(btn);
win.open();
```