exif-normalizer
v1.0.1
Published
rotate and flip images to exif orientation
Downloads
107
Readme
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)