📌  相关文章
📜  如果文件字段 src 是 url,则 html2canvas 无法获取图像 - 无论代码示例

📅  最后修改于: 2022-03-11 14:56:29.789000             🧑  作者: Mango

代码示例1
html2canvas(document.body,
{
   useCORS: true, //By passing this option in function Cross origin images will be rendered properly in the downloaded version of the PDF
   onrendered: function (canvas) {
     //your functions here
   }
});