get-exif-data
v1.0.0
Published
Extract EXIF data from image files.
Maintainers
Readme
📊 get-exif-data
Extract EXIF data from image files.
Installation
npm get-exif-data
## Usage
```js
const { getExifData } = require('./index.js');
getExifData('input.jpg')
.then(data => console.log(data))
.catch(err => console.error(err));
