1.0.5 • Published 5 years ago

exif-image v1.0.5

Weekly downloads
3
License
ISC
Repository
github
Last release
5 years ago

exif-image

Get EXIF ​​data from image

Installation

npm install exif-image --save
yarn add exif-image
bower install exif-image --save

Usage

Javascript

var exif_image = require('exif-image');
var boys = exif_image.getOrientation(file, callback);

function callback(data) {
 console.log(data);
}
Output should be 1 | 2 | 3 ... 8 -> This is equivalent to the EXIF code in the image

TypeScript

import { getOrientation } from 'exif-image';
getOrientation(file, callback);

function callback(data) {
 console.log(data);
}
Output should be 1 | 2 | 3 ... 8 -> This is equivalent to the EXIF code in the image
1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.0

5 years ago