Skip to content

logion-network/node-exiftool.exe

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

exiftool.exe

A distribution of exiftool.exe. Current version is 10.53.

npm version Build status

You might also be interested in dist-exiftool which will install an appropriate version of exiftool depending on the platform, and exiftool.pl for non-Windows platforms.

Usage

The module exports a path to the exiftool Windows executable.

const exec = require('child_process').execFile;
const exiftool = require('exiftool.exe');

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

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%