生成pdf ,图片不显示问题
程序员文章站
2022-05-25 21:39:45
...
// 由于图片跨域导致不显示
// 设置属性 allowTaint: true,useCORS: true 解决跨域问题
// backgroundColor: "transparent" 如果页面图片底色为透明,可设置,否则 图片底色默认白色
html2Canvas(document.getElementById(`id`),{
allowTaint: true,
useCORS: true
}).then(function (canvas) {})