feature: 支持以 img 标签形式展示
henrycjchen opened this issue · 1 comments
henrycjchen commented
场景:
微信页面长按识别二维码
存在问题
当前组件只支持生成 canvas 和 svg,然而微信只支持 img 标签长按识别
希望解决方案
希望该组件支持 img 标签展示
scopewu commented
Hi @henrycjchen 一个临时的方案是使用 canvas
的 .toDataURL("image/png")
方法。类似于:
const canvas = document.querySelector('canvas);
const png = canvas.toDataURL("image/png");
const img = document.createElement('img');
img.src = png;
document.body.appendChild(img);
同时需要隐藏 canvas
。该方案未曾实验过的,需要验证。
未来有时间可能考虑支持功能,谢谢提出 issue。