dist-exiftool

Platform-dependent distribution of exiftool.

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
dist-exiftool
15010.53.07 years ago8 years agoMinified + gzip package size for dist-exiftool in KB

Readme

dist-exiftool
A distribution of exiftool. Depending on the platform, it will install either exiftool.pl or exiftool.exe module. Current version is 10.53.
npm version Build Status Build status

Usage

The module exports a path to the exiftool executable.
const execFile = require('child_process').execFile;
const exiftool = require('dist-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