/*Allow native mobile share of QR */
function shareQROnMobile() {if (navigator.share) {
navigator.share({
title: document.title,
text: document.title + ", " + window.location.href,
url: jQuery("#qrcode-current img")[0].src,
})
.then(() => console.log('Successful share'))
.catch((error) => console.log('Error sharing', error));
}}
/*END native mobile share of QR */
此 javascript 代码发送 base64 数据字符串。相反,我希望将此 base64 转换为图像,以便发送到 Android 共享菜单上的任何应用程序。
如何将 base64 字符串转换为图像并将其发送到共享菜单?