1.3.0 • Published 7 years ago

image-exif-data v1.3.0

Weekly downloads
-
License
ISC
Repository
-
Last release
7 years ago

imageExifData

A small module that outputs all metadata of a given image-path.

Dependencies

This module relies on the program exiftool by Phil Harvey to work. Add the program to your Path as 'exiftool'.

Installation

npm install image-exif-data

Usage

var exif = require("image-exif-data");

exif("pathToImage", function (err, metadata) {
  if (err) {
    console.log(err);
  } else {
    console.log(metadata);
  }
});