Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

libexif

visionmedia9MIT0.1.0

libexif bindings (not exec...)

exif, libexif, image, tags, parser

readme

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