0.1.0 • Published 11 years ago

libexif v0.1.0

Weekly downloads
4
License
-
Repository
-
Last release
11 years ago

libexif

libexif bindings for nodejs.

Installation

$ npm install libexif

Example

var exif = require('libexiff');
var fs = require('fs');

var buf = fs.readFileSync('some.png');
console.log(exif.parse(buf));

console.log(exif.parse('somg.png'));

API

exif.parse(buf)

Parse EXIF tags from image buf.

exif.parse(path)

Parse EXIF tags from image at path.

License

MIT