文件方法图片 兔子12135 2023-03-22 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; }); };