We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
async function c图片转Base64(imageUrl) { return new Promise((resolve, reject) => { GM_xmlhttpRequest({ method: "GET", url: imageUrl, responseType: "blob", // 以二进制 Blob 格式接收图片 onload: function (response) { var reader = new FileReader(); reader.onloadend = function () { resolve(reader.result); // 返回 Base64 }; reader.onerror = function () { reject(new Error("图片读取失败")); }; reader.readAsDataURL(response.response); // 将 Blob 转换为 Base64 }, onerror: function () { reject(new Error("请求图片失败")); }, }); }); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The text was updated successfully, but these errors were encountered: