/*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 文字列を画像に変換して共有メニューに送信するにはどうすればよいですか?