dist-exiftool 12.40.0
Install from the command line:
Learn more about npm packages
$ npm install @mcmics/dist-exiftool@12.40.0
Install via package.json:
"@mcmics/dist-exiftool": "12.40.0"
About this version
Fork of https://github.com/Sobesednik/dist-exiftool
A distribution of exiftool. Depending on the platform, it will install either exiftool.pl or exiftool.exe module. Current version is 12.40.
The module exports a path to the exiftool executable.
const execFile = require('child_process').execFile;
const exiftool = require('@mcmics/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}`);
});
Artistic License 2.0
Details
- dist-exiftool
- MCMicS
- over 2 years ago
- Artistic-2.0
- 7 dependencies
Assets
- dist-exiftool-12.40.0-npm.tgz
Download activity
- Total downloads 0
- Last 30 days 0
- Last week 0
- Today 0