New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

extractif

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

extractif

Extract EXIF data using exif from libexif

latest
Source
npmnpm
Version
0.1.2
Version published
Maintainers
1
Created
Source

extractif

Extract EXIF data using exif from libexif.

build status dev dependency status

This module expects that exif from libexif is present on your system.

Example

var extractif = require('extractif');

extractif('test//img/hasselblad.jpg', function (err, tags) {
  console.log(tags);
});

Mehods

var extractif = require('extractif');

extractif(file, cb)

Extract EXIF data from a file. The callback gets two arguments (err, tags) where tags is a plain object of EXIF tags. If the file has no EXIF data tags will be null.

Installation

Install the NPM module:

npm install extractif

Install exif with your platform's native package manager:

apt-get install exif
yum install exif
emerge exif
brew install exif

License

MIT

Keywords

exif

FAQs

Package last updated on 20 Jul 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts