diff --git a/src/browser/index.js b/src/browser/index.js index 685d536..c9fd31b 100644 --- a/src/browser/index.js +++ b/src/browser/index.js @@ -73,7 +73,7 @@ const loadImage = (image) => { }); } } - if (check.instance(image, File)) { + if (check.instance(image, File) || check.instance(image, Blob)) { return new Promise((res) => { readFromBlobOrFile(image, res); });