Skip to content

Instantly share code, notes, and snippets.

View pranav65's full-sized avatar

Pranav Kumar pranav65

  • Muzaffarpur, Bihar, India
View GitHub Profile
@SagiMedina
SagiMedina / ImageTools.js
Last active March 25, 2024 06:13
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;
}
}());