import { blobToDataURL } from "../../bit" /** * 把 URL 数据下载后的数据转换为 DataURI */ export function urlToDataURI(url: string): Promise { return fetch(url) .then((response) => response.blob()) .then((blob) => blobToDataURL(blob)) }