UNPKG

util-helpers

Version:

一个基于业务场景的工具方法库

13 lines (10 loc) 364 B
import getFileBlob from './getFileBlob.js'; import loadImage from './loadImage.js'; function loadImageWithBlob(img, ajaxOptions) { return getFileBlob(img, ajaxOptions).then(function (blob) { return loadImage(blob).then(function (image) { return { blob: blob, image: image }; }); }); } export { loadImageWithBlob as default };