Skip to content

Instantly share code, notes, and snippets.

@hiiamyes
Created August 26, 2014 17:11
Show Gist options
  • Save hiiamyes/f23213ab7b38e2bee1b4 to your computer and use it in GitHub Desktop.
Save hiiamyes/f23213ab7b38e2bee1b4 to your computer and use it in GitHub Desktop.
exiftool + nodejs
var cp = require('child_process');
// show keywords of photo
cp.exec('exiftool -keywords photo.jpg', function(err, stdout, stderr) {
console.log(stdout);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment