最近公司在做一个考试的网站,而需求是准考证展示后可以打印,也可以转为图片并下载,打印调用浏览器的打印功能即可,转为图片我第一时间想到了html2canvas,不过还是在网上多翻了翻,看看有没有其他便捷的方法,最后记录了两种简单实用的方法。
一、html2canvas
1.1 安装插件
npm install --save html2canvas
yarn add html2canvas
1.2 导入模块(ES6)
import html2canvas from 'html2canvas';
1.3 转换为图片并下载
const dom = document.getElementById('targetDom');
if(dom !== null) {
html2canvas(dom, {
scale: window.devicePixelRatio }).then((canvas) => {
const dataURL = canvas.toDataURL('image/png');
if