This package has been deprecated

Author message:

Please use dist-exiftool

perl-exiftool

10.25.0 • Public • Published

perl-exiftool

A distribution of exiftool. Current version is 10.25.

npm version

Usage

The module exports a path to the exiftool executable (either exe on Windows or perl on all other platforms).

const exec = require('child_process').execFile;
const exiftool = require('perl-exiftool');
 
execFile(exiftool, ['-j', 'image.jpg'], (error, stdout, stderr) => {
    if (error) {
        console.error(`exec error: ${error}`);
        return;
    }
    console.log(`stdout: ${stdout}`);
    console.log(`stderr: ${stderr}`);
});

Links

exiftool

sourceforge

cpan

License

Artistic License 2.0

Readme

Keywords

Package Sidebar

Install

npm i perl-exiftool

Weekly Downloads

0

Version

10.25.0

License

Artistic-2.0

Last publish

Collaborators

  • zvr