文件方法图片

29 阅读1分钟

const getBase64Dimensions = (base64) => { return new Promise((resolve, reject) => { const img = new Image(); img.src = base64; img.onload = () => { resolve({ width: img.naturalWidth, height: img.naturalHeight }); }; img.onerror = reject; }); };