here is the copy of my downloaded file
我试图使用html5canvas下载图像,但问题是它下载的文件没有文本。
下面是我正在实现的代码片段
<script>
function downloadImage(element = document.body, filename = 'file.png')
{html2canvas(element, {
useCORS: true,
}).then((canvas) => {
const a = document.createElement('a');
a.download = filename;
a.href = canvas.toDataURL('image/png');
a.click();
});
}
</script>
1条答案
按热度按时间j2cgzkjk1#
你提到你使用的是html5canvas,但是你已经应用了html2canvas。请检查一次。