Skip to content

Instantly share code, notes, and snippets.

View ellersgaard's full-sized avatar

Anders Ellersgaard ellersgaard

View GitHub Profile
@ellersgaard
ellersgaard / ImageTools.js
Created June 25, 2020 08:57 — forked from SagiMedina/ImageTools.js
Resize and crop images in the Browser with orientation fix using exif
import EXIF from 'exif-js';
const hasBlobConstructor = typeof (Blob) !== 'undefined' && (function checkBlobConstructor() {
try {
return Boolean(new Blob());
} catch (error) {
return false;
}
}());