Qrcode Failed to execute 'toDataURL' on 'HTMLCanvasElement': Tainted canvases may not be exported.

问题:canvas绘制的图片地址跨域报错

解决方法:

在绘制二维码前设置图片属性
image.src = src;
image.crossOrigin = "anonymous";

或者

image.setAttribute("crossOrigin",'anonymous');

 

posted on 2024-03-13 16:37  去你的未来  阅读(43)  评论(0编辑  收藏  举报