1.0.1 • Published 7 years ago

exif-normalizer v1.0.1

Weekly downloads
27
License
ISC
Repository
github
Last release
7 years ago

exif normalizer

Rotate and flip an image to match exif orientation

Meant for use in browser. Sorry, it won't work in webworkers :(

import resolveExif from 'exif-normalizer';

// use HTML Image object or
// image data url or
// image url
resolveExif(image).then(function(imageUrl) {
  ...
});

You can also pass a max width to thumbnail the image too:

resolveExif(image, 600)