Created
April 15, 2018 21:13
-
-
Save psyked/0b4bd10ac1b10f9c1adbefdab3336349 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const ExifImage = require('exif').ExifImage; | |
new ExifImage({ image: './input-file.jpg' }, function (error, exifData) { | |
if (error) throw error; | |
const { gps } = exifData; | |
console.log(gps); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment