Skip to content

Instantly share code, notes, and snippets.

@dilakv
dilakv / ImageTools.ts
Last active June 13, 2021 03:56 — forked from SagiMedina/ImageTools.js
Resize and crop images in the Browser with orientation fix using exif
import EXIF from 'exif-js';
declare global {
interface Window {
WebKitBlobBuilder:any;
MozBlobBuilder:any;
}
}
const hasBlobConstructor = typeof (Blob) !== 'undefined' && (function checkBlobConstructor() {
try {
return Boolean(new Blob());