Skip to content

Instantly share code, notes, and snippets.

@iamgauravbisht
iamgauravbisht / ImageTools.js
Created March 25, 2024 06:13 — 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;
}
}());